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 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1418 KeyedStoreIC::GeneratePreMonomorphic(masm); | 1418 KeyedStoreIC::GeneratePreMonomorphic(masm); |
1419 } | 1419 } |
1420 | 1420 |
1421 | 1421 |
1422 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { | 1422 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { |
1423 KeyedStoreIC::GenerateSloppyArguments(masm); | 1423 KeyedStoreIC::GenerateSloppyArguments(masm); |
1424 } | 1424 } |
1425 | 1425 |
1426 | 1426 |
1427 #ifdef ENABLE_DEBUGGER_SUPPORT | 1427 #ifdef ENABLE_DEBUGGER_SUPPORT |
1428 static void Generate_CallICStub_DebugBreak(MacroAssembler* masm) { | |
1429 Debug::GenerateCallICStubDebugBreak(masm); | |
1430 } | |
1431 | |
1432 | |
1433 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { | 1428 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { |
1434 Debug::GenerateLoadICDebugBreak(masm); | 1429 Debug::GenerateLoadICDebugBreak(masm); |
1435 } | 1430 } |
1436 | 1431 |
1437 | 1432 |
1438 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { | 1433 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { |
1439 Debug::GenerateStoreICDebugBreak(masm); | 1434 Debug::GenerateStoreICDebugBreak(masm); |
1440 } | 1435 } |
1441 | 1436 |
1442 | 1437 |
(...skipping 15 matching lines...) Expand all Loading... |
1458 static void Generate_Return_DebugBreak(MacroAssembler* masm) { | 1453 static void Generate_Return_DebugBreak(MacroAssembler* masm) { |
1459 Debug::GenerateReturnDebugBreak(masm); | 1454 Debug::GenerateReturnDebugBreak(masm); |
1460 } | 1455 } |
1461 | 1456 |
1462 | 1457 |
1463 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { | 1458 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { |
1464 Debug::GenerateCallFunctionStubDebugBreak(masm); | 1459 Debug::GenerateCallFunctionStubDebugBreak(masm); |
1465 } | 1460 } |
1466 | 1461 |
1467 | 1462 |
| 1463 static void Generate_CallFunctionStub_Recording_DebugBreak( |
| 1464 MacroAssembler* masm) { |
| 1465 Debug::GenerateCallFunctionStubRecordDebugBreak(masm); |
| 1466 } |
| 1467 |
| 1468 |
1468 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) { | 1469 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) { |
1469 Debug::GenerateCallConstructStubDebugBreak(masm); | 1470 Debug::GenerateCallConstructStubDebugBreak(masm); |
1470 } | 1471 } |
1471 | 1472 |
1472 | 1473 |
1473 static void Generate_CallConstructStub_Recording_DebugBreak( | 1474 static void Generate_CallConstructStub_Recording_DebugBreak( |
1474 MacroAssembler* masm) { | 1475 MacroAssembler* masm) { |
1475 Debug::GenerateCallConstructStubRecordDebugBreak(masm); | 1476 Debug::GenerateCallConstructStubRecordDebugBreak(masm); |
1476 } | 1477 } |
1477 | 1478 |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1727 } | 1728 } |
1728 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1729 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1729 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1730 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1730 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1731 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
1731 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1732 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1732 #undef DEFINE_BUILTIN_ACCESSOR_C | 1733 #undef DEFINE_BUILTIN_ACCESSOR_C |
1733 #undef DEFINE_BUILTIN_ACCESSOR_A | 1734 #undef DEFINE_BUILTIN_ACCESSOR_A |
1734 | 1735 |
1735 | 1736 |
1736 } } // namespace v8::internal | 1737 } } // namespace v8::internal |
OLD | NEW |