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

Side by Side Diff: src/builtins.cc

Issue 172523002: Create a function call IC (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE. 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 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1418 KeyedStoreIC::GeneratePreMonomorphic(masm); 1418 KeyedStoreIC::GeneratePreMonomorphic(masm);
1419 } 1419 }
1420 1420
1421 1421
1422 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { 1422 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) {
1423 KeyedStoreIC::GenerateSloppyArguments(masm); 1423 KeyedStoreIC::GenerateSloppyArguments(masm);
1424 } 1424 }
1425 1425
1426 1426
1427 #ifdef ENABLE_DEBUGGER_SUPPORT 1427 #ifdef ENABLE_DEBUGGER_SUPPORT
1428 static void Generate_CallICStub_DebugBreak(MacroAssembler* masm) {
1429 Debug::GenerateCallICStubDebugBreak(masm);
1430 }
1431
1432
1428 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { 1433 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) {
1429 Debug::GenerateLoadICDebugBreak(masm); 1434 Debug::GenerateLoadICDebugBreak(masm);
1430 } 1435 }
1431 1436
1432 1437
1433 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { 1438 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) {
1434 Debug::GenerateStoreICDebugBreak(masm); 1439 Debug::GenerateStoreICDebugBreak(masm);
1435 } 1440 }
1436 1441
1437 1442
(...skipping 15 matching lines...) Expand all
1453 static void Generate_Return_DebugBreak(MacroAssembler* masm) { 1458 static void Generate_Return_DebugBreak(MacroAssembler* masm) {
1454 Debug::GenerateReturnDebugBreak(masm); 1459 Debug::GenerateReturnDebugBreak(masm);
1455 } 1460 }
1456 1461
1457 1462
1458 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { 1463 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) {
1459 Debug::GenerateCallFunctionStubDebugBreak(masm); 1464 Debug::GenerateCallFunctionStubDebugBreak(masm);
1460 } 1465 }
1461 1466
1462 1467
1463 static void Generate_CallFunctionStub_Recording_DebugBreak(
1464 MacroAssembler* masm) {
1465 Debug::GenerateCallFunctionStubRecordDebugBreak(masm);
1466 }
1467
1468
1469 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) { 1468 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) {
1470 Debug::GenerateCallConstructStubDebugBreak(masm); 1469 Debug::GenerateCallConstructStubDebugBreak(masm);
1471 } 1470 }
1472 1471
1473 1472
1474 static void Generate_CallConstructStub_Recording_DebugBreak( 1473 static void Generate_CallConstructStub_Recording_DebugBreak(
1475 MacroAssembler* masm) { 1474 MacroAssembler* masm) {
1476 Debug::GenerateCallConstructStubRecordDebugBreak(masm); 1475 Debug::GenerateCallConstructStubRecordDebugBreak(masm);
1477 } 1476 }
1478 1477
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1728 } 1727 }
1729 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1728 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1730 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1729 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1731 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1730 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1732 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1731 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1733 #undef DEFINE_BUILTIN_ACCESSOR_C 1732 #undef DEFINE_BUILTIN_ACCESSOR_C
1734 #undef DEFINE_BUILTIN_ACCESSOR_A 1733 #undef DEFINE_BUILTIN_ACCESSOR_A
1735 1734
1736 1735
1737 } } // namespace v8::internal 1736 } } // 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