| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1285 static void Generate_LoadIC_Megamorphic(MacroAssembler* masm) { | 1285 static void Generate_LoadIC_Megamorphic(MacroAssembler* masm) { |
| 1286 LoadIC::GenerateMegamorphic(masm); | 1286 LoadIC::GenerateMegamorphic(masm); |
| 1287 } | 1287 } |
| 1288 | 1288 |
| 1289 | 1289 |
| 1290 static void Generate_LoadIC_Normal(MacroAssembler* masm) { | 1290 static void Generate_LoadIC_Normal(MacroAssembler* masm) { |
| 1291 LoadIC::GenerateNormal(masm); | 1291 LoadIC::GenerateNormal(masm); |
| 1292 } | 1292 } |
| 1293 | 1293 |
| 1294 | 1294 |
| 1295 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) { |
| 1296 LoadStubCompiler::GenerateLoadViaGetter(masm, Handle<JSFunction>()); |
| 1297 } |
| 1298 |
| 1299 |
| 1295 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) { | 1300 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) { |
| 1296 KeyedLoadIC::GenerateInitialize(masm); | 1301 KeyedLoadIC::GenerateInitialize(masm); |
| 1297 } | 1302 } |
| 1298 | 1303 |
| 1299 | 1304 |
| 1300 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) { | 1305 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) { |
| 1301 KeyedLoadIC::GenerateRuntimeGetProperty(masm); | 1306 KeyedLoadIC::GenerateRuntimeGetProperty(masm); |
| 1302 } | 1307 } |
| 1303 | 1308 |
| 1304 | 1309 |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1709 return Handle<Code>(code_address); \ | 1714 return Handle<Code>(code_address); \ |
| 1710 } | 1715 } |
| 1711 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1716 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
| 1712 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1717 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1713 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1718 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1714 #undef DEFINE_BUILTIN_ACCESSOR_C | 1719 #undef DEFINE_BUILTIN_ACCESSOR_C |
| 1715 #undef DEFINE_BUILTIN_ACCESSOR_A | 1720 #undef DEFINE_BUILTIN_ACCESSOR_A |
| 1716 | 1721 |
| 1717 | 1722 |
| 1718 } } // namespace v8::internal | 1723 } } // namespace v8::internal |
| OLD | NEW |