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

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: Comments addressed. Created 6 years, 9 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 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after
1431 KeyedStoreIC::GeneratePreMonomorphic(masm); 1431 KeyedStoreIC::GeneratePreMonomorphic(masm);
1432 } 1432 }
1433 1433
1434 1434
1435 static void Generate_KeyedStoreIC_NonStrictArguments(MacroAssembler* masm) { 1435 static void Generate_KeyedStoreIC_NonStrictArguments(MacroAssembler* masm) {
1436 KeyedStoreIC::GenerateNonStrictArguments(masm); 1436 KeyedStoreIC::GenerateNonStrictArguments(masm);
1437 } 1437 }
1438 1438
1439 1439
1440 #ifdef ENABLE_DEBUGGER_SUPPORT 1440 #ifdef ENABLE_DEBUGGER_SUPPORT
1441 static void Generate_CallICStub_DebugBreak(MacroAssembler* masm) {
1442 Debug::GenerateCallICStubDebugBreak(masm);
1443 }
1444
1445
1441 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { 1446 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) {
1442 Debug::GenerateLoadICDebugBreak(masm); 1447 Debug::GenerateLoadICDebugBreak(masm);
1443 } 1448 }
1444 1449
1445 1450
1446 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { 1451 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) {
1447 Debug::GenerateStoreICDebugBreak(masm); 1452 Debug::GenerateStoreICDebugBreak(masm);
1448 } 1453 }
1449 1454
1450 1455
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
1741 } 1746 }
1742 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1747 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1743 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1748 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1744 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1749 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1745 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1750 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1746 #undef DEFINE_BUILTIN_ACCESSOR_C 1751 #undef DEFINE_BUILTIN_ACCESSOR_C
1747 #undef DEFINE_BUILTIN_ACCESSOR_A 1752 #undef DEFINE_BUILTIN_ACCESSOR_A
1748 1753
1749 1754
1750 } } // namespace v8::internal 1755 } } // 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