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

Side by Side Diff: src/builtins.cc

Issue 9297019: Fix and adapt debugger for new call target caches. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Yang Guo. Created 8 years, 11 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/code-stubs.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1490 matching lines...) Expand 10 before | Expand all | Expand 10 after
1501 static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) { 1501 static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) {
1502 Debug::GenerateKeyedLoadICDebugBreak(masm); 1502 Debug::GenerateKeyedLoadICDebugBreak(masm);
1503 } 1503 }
1504 1504
1505 1505
1506 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) { 1506 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) {
1507 Debug::GenerateKeyedStoreICDebugBreak(masm); 1507 Debug::GenerateKeyedStoreICDebugBreak(masm);
1508 } 1508 }
1509 1509
1510 1510
1511 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) {
1512 Debug::GenerateConstructCallDebugBreak(masm);
1513 }
1514
1515
1516 static void Generate_Return_DebugBreak(MacroAssembler* masm) { 1511 static void Generate_Return_DebugBreak(MacroAssembler* masm) {
1517 Debug::GenerateReturnDebugBreak(masm); 1512 Debug::GenerateReturnDebugBreak(masm);
1518 } 1513 }
1519 1514
1520 1515
1521 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { 1516 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) {
1522 Debug::GenerateCallFunctionStubDebugBreak(masm); 1517 Debug::GenerateCallFunctionStubDebugBreak(masm);
1523 } 1518 }
1524 1519
1525 1520
1521 static void Generate_CallFunctionStub_Recording_DebugBreak(
1522 MacroAssembler* masm) {
1523 Debug::GenerateCallFunctionStubRecordDebugBreak(masm);
1524 }
1525
1526
1527 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) {
1528 Debug::GenerateCallConstructStubDebugBreak(masm);
1529 }
1530
1531
1532 static void Generate_CallConstructStub_Recording_DebugBreak(
1533 MacroAssembler* masm) {
1534 Debug::GenerateCallConstructStubRecordDebugBreak(masm);
1535 }
1536
1537
1526 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { 1538 static void Generate_Slot_DebugBreak(MacroAssembler* masm) {
1527 Debug::GenerateSlotDebugBreak(masm); 1539 Debug::GenerateSlotDebugBreak(masm);
1528 } 1540 }
1529 1541
1530 1542
1531 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { 1543 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) {
1532 Debug::GeneratePlainReturnLiveEdit(masm); 1544 Debug::GeneratePlainReturnLiveEdit(masm);
1533 } 1545 }
1534 1546
1535 1547
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 return Handle<Code>(code_address); \ 1756 return Handle<Code>(code_address); \
1745 } 1757 }
1746 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1758 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1747 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1759 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1748 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1760 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1749 #undef DEFINE_BUILTIN_ACCESSOR_C 1761 #undef DEFINE_BUILTIN_ACCESSOR_C
1750 #undef DEFINE_BUILTIN_ACCESSOR_A 1762 #undef DEFINE_BUILTIN_ACCESSOR_A
1751 1763
1752 1764
1753 } } // namespace v8::internal 1765 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698