Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Side by Side Diff: src/builtins.cc

Issue 193057: Cleaned up some debugger stuff on ia32 and x64 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/builtins.h ('k') | src/debug.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698