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

Side by Side Diff: src/builtins.cc

Issue 1118007: LiveEdit: implement frame dropping (Closed)
Patch Set: adding rule to mjsunit.status Created 10 years, 8 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
« 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 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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