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

Side by Side Diff: src/builtins.cc

Issue 247373002: CallICStub with a "never patch" approach until customization. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ports. Created 6 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 | Annotate | Revision Log
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 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 KeyedStoreIC::GeneratePreMonomorphic(masm); 1439 KeyedStoreIC::GeneratePreMonomorphic(masm);
1440 } 1440 }
1441 1441
1442 1442
1443 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { 1443 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) {
1444 KeyedStoreIC::GenerateSloppyArguments(masm); 1444 KeyedStoreIC::GenerateSloppyArguments(masm);
1445 } 1445 }
1446 1446
1447 1447
1448 #ifdef ENABLE_DEBUGGER_SUPPORT 1448 #ifdef ENABLE_DEBUGGER_SUPPORT
1449 static void Generate_CallICStub_DebugBreak(MacroAssembler* masm) {
1450 Debug::GenerateCallICStubDebugBreak(masm);
1451 }
1452
1453
1449 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { 1454 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) {
1450 Debug::GenerateLoadICDebugBreak(masm); 1455 Debug::GenerateLoadICDebugBreak(masm);
1451 } 1456 }
1452 1457
1453 1458
1454 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { 1459 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) {
1455 Debug::GenerateStoreICDebugBreak(masm); 1460 Debug::GenerateStoreICDebugBreak(masm);
1456 } 1461 }
1457 1462
1458 1463
(...skipping 15 matching lines...) Expand all
1474 static void Generate_Return_DebugBreak(MacroAssembler* masm) { 1479 static void Generate_Return_DebugBreak(MacroAssembler* masm) {
1475 Debug::GenerateReturnDebugBreak(masm); 1480 Debug::GenerateReturnDebugBreak(masm);
1476 } 1481 }
1477 1482
1478 1483
1479 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { 1484 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) {
1480 Debug::GenerateCallFunctionStubDebugBreak(masm); 1485 Debug::GenerateCallFunctionStubDebugBreak(masm);
1481 } 1486 }
1482 1487
1483 1488
1484 static void Generate_CallFunctionStub_Recording_DebugBreak(
1485 MacroAssembler* masm) {
1486 Debug::GenerateCallFunctionStubRecordDebugBreak(masm);
1487 }
1488
1489
1490 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) { 1489 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) {
1491 Debug::GenerateCallConstructStubDebugBreak(masm); 1490 Debug::GenerateCallConstructStubDebugBreak(masm);
1492 } 1491 }
1493 1492
1494 1493
1495 static void Generate_CallConstructStub_Recording_DebugBreak( 1494 static void Generate_CallConstructStub_Recording_DebugBreak(
1496 MacroAssembler* masm) { 1495 MacroAssembler* masm) {
1497 Debug::GenerateCallConstructStubRecordDebugBreak(masm); 1496 Debug::GenerateCallConstructStubRecordDebugBreak(masm);
1498 } 1497 }
1499 1498
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 } 1733 }
1735 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1734 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1736 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1735 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1737 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1736 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1738 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1737 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1739 #undef DEFINE_BUILTIN_ACCESSOR_C 1738 #undef DEFINE_BUILTIN_ACCESSOR_C
1740 #undef DEFINE_BUILTIN_ACCESSOR_A 1739 #undef DEFINE_BUILTIN_ACCESSOR_A
1741 1740
1742 1741
1743 } } // namespace v8::internal 1742 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs.h » ('j') | src/ia32/code-stubs-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698