| 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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) { | 602 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) { |
| 603 Debug::GenerateConstructCallDebugBreak(masm); | 603 Debug::GenerateConstructCallDebugBreak(masm); |
| 604 } | 604 } |
| 605 | 605 |
| 606 | 606 |
| 607 static void Generate_Return_DebugBreak(MacroAssembler* masm) { | 607 static void Generate_Return_DebugBreak(MacroAssembler* masm) { |
| 608 Debug::GenerateReturnDebugBreak(masm); | 608 Debug::GenerateReturnDebugBreak(masm); |
| 609 } | 609 } |
| 610 | 610 |
| 611 | 611 |
| 612 static void Generate_Return_DebugBreakEntry(MacroAssembler* masm) { | |
| 613 Debug::GenerateReturnDebugBreakEntry(masm); | |
| 614 } | |
| 615 | |
| 616 | |
| 617 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { | 612 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { |
| 618 Debug::GenerateStubNoRegistersDebugBreak(masm); | 613 Debug::GenerateStubNoRegistersDebugBreak(masm); |
| 619 } | 614 } |
| 620 #endif | 615 #endif |
| 621 | 616 |
| 622 Object* Builtins::builtins_[builtin_count] = { NULL, }; | 617 Object* Builtins::builtins_[builtin_count] = { NULL, }; |
| 623 const char* Builtins::names_[builtin_count] = { NULL, }; | 618 const char* Builtins::names_[builtin_count] = { NULL, }; |
| 624 | 619 |
| 625 #define DEF_ENUM_C(name) FUNCTION_ADDR(Builtin_##name), | 620 #define DEF_ENUM_C(name) FUNCTION_ADDR(Builtin_##name), |
| 626 Address Builtins::c_functions_[cfunction_count] = { | 621 Address Builtins::c_functions_[cfunction_count] = { |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 if (entry->contains(pc)) { | 751 if (entry->contains(pc)) { |
| 757 return names_[i]; | 752 return names_[i]; |
| 758 } | 753 } |
| 759 } | 754 } |
| 760 } | 755 } |
| 761 return NULL; | 756 return NULL; |
| 762 } | 757 } |
| 763 | 758 |
| 764 | 759 |
| 765 } } // namespace v8::internal | 760 } } // namespace v8::internal |
| OLD | NEW |