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

Side by Side Diff: src/builtins.cc

Issue 224903005: Reland "create a function call IC" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comments. 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
« 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 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after
1434 KeyedStoreIC::GeneratePreMonomorphic(masm); 1434 KeyedStoreIC::GeneratePreMonomorphic(masm);
1435 } 1435 }
1436 1436
1437 1437
1438 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { 1438 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) {
1439 KeyedStoreIC::GenerateSloppyArguments(masm); 1439 KeyedStoreIC::GenerateSloppyArguments(masm);
1440 } 1440 }
1441 1441
1442 1442
1443 #ifdef ENABLE_DEBUGGER_SUPPORT 1443 #ifdef ENABLE_DEBUGGER_SUPPORT
1444 static void Generate_CallICStub_DebugBreak(MacroAssembler* masm) {
1445 Debug::GenerateCallICStubDebugBreak(masm);
1446 }
1447
1448
1444 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { 1449 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) {
1445 Debug::GenerateLoadICDebugBreak(masm); 1450 Debug::GenerateLoadICDebugBreak(masm);
1446 } 1451 }
1447 1452
1448 1453
1449 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { 1454 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) {
1450 Debug::GenerateStoreICDebugBreak(masm); 1455 Debug::GenerateStoreICDebugBreak(masm);
1451 } 1456 }
1452 1457
1453 1458
(...skipping 15 matching lines...) Expand all
1469 static void Generate_Return_DebugBreak(MacroAssembler* masm) { 1474 static void Generate_Return_DebugBreak(MacroAssembler* masm) {
1470 Debug::GenerateReturnDebugBreak(masm); 1475 Debug::GenerateReturnDebugBreak(masm);
1471 } 1476 }
1472 1477
1473 1478
1474 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { 1479 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) {
1475 Debug::GenerateCallFunctionStubDebugBreak(masm); 1480 Debug::GenerateCallFunctionStubDebugBreak(masm);
1476 } 1481 }
1477 1482
1478 1483
1479 static void Generate_CallFunctionStub_Recording_DebugBreak(
1480 MacroAssembler* masm) {
1481 Debug::GenerateCallFunctionStubRecordDebugBreak(masm);
1482 }
1483
1484
1485 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) { 1484 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) {
1486 Debug::GenerateCallConstructStubDebugBreak(masm); 1485 Debug::GenerateCallConstructStubDebugBreak(masm);
1487 } 1486 }
1488 1487
1489 1488
1490 static void Generate_CallConstructStub_Recording_DebugBreak( 1489 static void Generate_CallConstructStub_Recording_DebugBreak(
1491 MacroAssembler* masm) { 1490 MacroAssembler* masm) {
1492 Debug::GenerateCallConstructStubRecordDebugBreak(masm); 1491 Debug::GenerateCallConstructStubRecordDebugBreak(masm);
1493 } 1492 }
1494 1493
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 } 1743 }
1745 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1744 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1746 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1745 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1747 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1746 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1748 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1747 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1749 #undef DEFINE_BUILTIN_ACCESSOR_C 1748 #undef DEFINE_BUILTIN_ACCESSOR_C
1750 #undef DEFINE_BUILTIN_ACCESSOR_A 1749 #undef DEFINE_BUILTIN_ACCESSOR_A
1751 1750
1752 1751
1753 } } // namespace v8::internal 1752 } } // 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