OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1385 | 1385 |
1386 | 1386 |
1387 static void Generate_Return_DebugBreak(MacroAssembler* masm) { | 1387 static void Generate_Return_DebugBreak(MacroAssembler* masm) { |
1388 Debug::GenerateReturnDebugBreak(masm); | 1388 Debug::GenerateReturnDebugBreak(masm); |
1389 } | 1389 } |
1390 | 1390 |
1391 | 1391 |
1392 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { | 1392 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { |
1393 Debug::GenerateStubNoRegistersDebugBreak(masm); | 1393 Debug::GenerateStubNoRegistersDebugBreak(masm); |
1394 } | 1394 } |
| 1395 |
| 1396 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { |
| 1397 Debug::GeneratePlainReturnLiveEdit(masm); |
| 1398 } |
| 1399 |
| 1400 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { |
| 1401 Debug::GenerateFrameDropperLiveEdit(masm); |
| 1402 } |
1395 #endif | 1403 #endif |
1396 | 1404 |
1397 Object* Builtins::builtins_[builtin_count] = { NULL, }; | 1405 Object* Builtins::builtins_[builtin_count] = { NULL, }; |
1398 const char* Builtins::names_[builtin_count] = { NULL, }; | 1406 const char* Builtins::names_[builtin_count] = { NULL, }; |
1399 | 1407 |
1400 #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name), | 1408 #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name), |
1401 Address Builtins::c_functions_[cfunction_count] = { | 1409 Address Builtins::c_functions_[cfunction_count] = { |
1402 BUILTIN_LIST_C(DEF_ENUM_C) | 1410 BUILTIN_LIST_C(DEF_ENUM_C) |
1403 }; | 1411 }; |
1404 #undef DEF_ENUM_C | 1412 #undef DEF_ENUM_C |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1532 if (entry->contains(pc)) { | 1540 if (entry->contains(pc)) { |
1533 return names_[i]; | 1541 return names_[i]; |
1534 } | 1542 } |
1535 } | 1543 } |
1536 } | 1544 } |
1537 return NULL; | 1545 return NULL; |
1538 } | 1546 } |
1539 | 1547 |
1540 | 1548 |
1541 } } // namespace v8::internal | 1549 } } // namespace v8::internal |
OLD | NEW |