| 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 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1370 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { | 1370 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { |
| 1371 Debug::GenerateSlotDebugBreak(masm); | 1371 Debug::GenerateSlotDebugBreak(masm); |
| 1372 } | 1372 } |
| 1373 | 1373 |
| 1374 | 1374 |
| 1375 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { | 1375 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { |
| 1376 Debug::GeneratePlainReturnLiveEdit(masm); | 1376 Debug::GeneratePlainReturnLiveEdit(masm); |
| 1377 } | 1377 } |
| 1378 | 1378 |
| 1379 | 1379 |
| 1380 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { | 1380 static void Generate_RestarterPatch_LiveEdit(MacroAssembler* masm) { |
| 1381 Debug::GenerateFrameDropperLiveEdit(masm); | 1381 Debug::GenerateRestarterPatchLiveEdit(masm); |
| 1382 } | 1382 } |
| 1383 #endif | 1383 #endif |
| 1384 | 1384 |
| 1385 Object* Builtins::builtins_[builtin_count] = { NULL, }; | 1385 Object* Builtins::builtins_[builtin_count] = { NULL, }; |
| 1386 const char* Builtins::names_[builtin_count] = { NULL, }; | 1386 const char* Builtins::names_[builtin_count] = { NULL, }; |
| 1387 | 1387 |
| 1388 #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name), | 1388 #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name), |
| 1389 Address Builtins::c_functions_[cfunction_count] = { | 1389 Address Builtins::c_functions_[cfunction_count] = { |
| 1390 BUILTIN_LIST_C(DEF_ENUM_C) | 1390 BUILTIN_LIST_C(DEF_ENUM_C) |
| 1391 }; | 1391 }; |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1520 if (entry->contains(pc)) { | 1520 if (entry->contains(pc)) { |
| 1521 return names_[i]; | 1521 return names_[i]; |
| 1522 } | 1522 } |
| 1523 } | 1523 } |
| 1524 } | 1524 } |
| 1525 return NULL; | 1525 return NULL; |
| 1526 } | 1526 } |
| 1527 | 1527 |
| 1528 | 1528 |
| 1529 } } // namespace v8::internal | 1529 } } // namespace v8::internal |
| OLD | NEW |