| 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 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 static void Generate_KeyedStoreIC_PreMonomorphic_Strict(MacroAssembler* masm) { | 1441 static void Generate_KeyedStoreIC_PreMonomorphic_Strict(MacroAssembler* masm) { |
| 1442 KeyedStoreIC::GeneratePreMonomorphic(masm); | 1442 KeyedStoreIC::GeneratePreMonomorphic(masm); |
| 1443 } | 1443 } |
| 1444 | 1444 |
| 1445 | 1445 |
| 1446 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { | 1446 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { |
| 1447 KeyedStoreIC::GenerateSloppyArguments(masm); | 1447 KeyedStoreIC::GenerateSloppyArguments(masm); |
| 1448 } | 1448 } |
| 1449 | 1449 |
| 1450 | 1450 |
| 1451 #ifdef ENABLE_DEBUGGER_SUPPORT | |
| 1452 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { | 1451 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { |
| 1453 Debug::GenerateLoadICDebugBreak(masm); | 1452 Debug::GenerateLoadICDebugBreak(masm); |
| 1454 } | 1453 } |
| 1455 | 1454 |
| 1456 | 1455 |
| 1457 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { | 1456 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { |
| 1458 Debug::GenerateStoreICDebugBreak(masm); | 1457 Debug::GenerateStoreICDebugBreak(masm); |
| 1459 } | 1458 } |
| 1460 | 1459 |
| 1461 | 1460 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1507 | 1506 |
| 1508 | 1507 |
| 1509 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { | 1508 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { |
| 1510 Debug::GeneratePlainReturnLiveEdit(masm); | 1509 Debug::GeneratePlainReturnLiveEdit(masm); |
| 1511 } | 1510 } |
| 1512 | 1511 |
| 1513 | 1512 |
| 1514 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { | 1513 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { |
| 1515 Debug::GenerateFrameDropperLiveEdit(masm); | 1514 Debug::GenerateFrameDropperLiveEdit(masm); |
| 1516 } | 1515 } |
| 1517 #endif | |
| 1518 | 1516 |
| 1519 | 1517 |
| 1520 Builtins::Builtins() : initialized_(false) { | 1518 Builtins::Builtins() : initialized_(false) { |
| 1521 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); | 1519 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); |
| 1522 memset(names_, 0, sizeof(names_[0]) * builtin_count); | 1520 memset(names_, 0, sizeof(names_[0]) * builtin_count); |
| 1523 } | 1521 } |
| 1524 | 1522 |
| 1525 | 1523 |
| 1526 Builtins::~Builtins() { | 1524 Builtins::~Builtins() { |
| 1527 } | 1525 } |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1737 } | 1735 } |
| 1738 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1736 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
| 1739 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1737 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1740 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1738 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
| 1741 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1739 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1742 #undef DEFINE_BUILTIN_ACCESSOR_C | 1740 #undef DEFINE_BUILTIN_ACCESSOR_C |
| 1743 #undef DEFINE_BUILTIN_ACCESSOR_A | 1741 #undef DEFINE_BUILTIN_ACCESSOR_A |
| 1744 | 1742 |
| 1745 | 1743 |
| 1746 } } // namespace v8::internal | 1744 } } // namespace v8::internal |
| OLD | NEW |