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

Side by Side Diff: src/builtins.cc

Issue 2693002: More precise break points and stepping when debugging... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 6 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/checks.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 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after
1353 1353
1354 static void Generate_Return_DebugBreak(MacroAssembler* masm) { 1354 static void Generate_Return_DebugBreak(MacroAssembler* masm) {
1355 Debug::GenerateReturnDebugBreak(masm); 1355 Debug::GenerateReturnDebugBreak(masm);
1356 } 1356 }
1357 1357
1358 1358
1359 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { 1359 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) {
1360 Debug::GenerateStubNoRegistersDebugBreak(masm); 1360 Debug::GenerateStubNoRegistersDebugBreak(masm);
1361 } 1361 }
1362 1362
1363
1364 static void Generate_Slot_DebugBreak(MacroAssembler* masm) {
1365 Debug::GenerateSlotDebugBreak(masm);
1366 }
1367
1368
1363 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { 1369 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) {
1364 Debug::GeneratePlainReturnLiveEdit(masm); 1370 Debug::GeneratePlainReturnLiveEdit(masm);
1365 } 1371 }
1366 1372
1373
1367 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { 1374 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) {
1368 Debug::GenerateFrameDropperLiveEdit(masm); 1375 Debug::GenerateFrameDropperLiveEdit(masm);
1369 } 1376 }
1370 #endif 1377 #endif
1371 1378
1372 Object* Builtins::builtins_[builtin_count] = { NULL, }; 1379 Object* Builtins::builtins_[builtin_count] = { NULL, };
1373 const char* Builtins::names_[builtin_count] = { NULL, }; 1380 const char* Builtins::names_[builtin_count] = { NULL, };
1374 1381
1375 #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name), 1382 #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name),
1376 Address Builtins::c_functions_[cfunction_count] = { 1383 Address Builtins::c_functions_[cfunction_count] = {
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1507 if (entry->contains(pc)) { 1514 if (entry->contains(pc)) {
1508 return names_[i]; 1515 return names_[i];
1509 } 1516 }
1510 } 1517 }
1511 } 1518 }
1512 return NULL; 1519 return NULL;
1513 } 1520 }
1514 1521
1515 1522
1516 } } // namespace v8::internal 1523 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/checks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698