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

Side by Side Diff: src/builtins.cc

Issue 26873002: Remove BaseLoad/StoreStub compilers, and the stub-cache interface duplication. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after
1312 LoadIC::GenerateMegamorphic(masm); 1312 LoadIC::GenerateMegamorphic(masm);
1313 } 1313 }
1314 1314
1315 1315
1316 static void Generate_LoadIC_Normal(MacroAssembler* masm) { 1316 static void Generate_LoadIC_Normal(MacroAssembler* masm) {
1317 LoadIC::GenerateNormal(masm); 1317 LoadIC::GenerateNormal(masm);
1318 } 1318 }
1319 1319
1320 1320
1321 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) { 1321 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) {
1322 LoadStubCompiler::GenerateLoadViaGetter(masm, Handle<JSFunction>()); 1322 LoadStubCompiler::GenerateLoadViaGetter(
1323 masm, LoadStubCompiler::registers()[0], Handle<JSFunction>());
1323 } 1324 }
1324 1325
1325 1326
1326 static void Generate_LoadIC_Slow(MacroAssembler* masm) { 1327 static void Generate_LoadIC_Slow(MacroAssembler* masm) {
1327 LoadIC::GenerateRuntimeGetProperty(masm); 1328 LoadIC::GenerateRuntimeGetProperty(masm);
1328 } 1329 }
1329 1330
1330 1331
1331 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) { 1332 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) {
1332 KeyedLoadIC::GenerateInitialize(masm); 1333 KeyedLoadIC::GenerateInitialize(masm);
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
1810 } 1811 }
1811 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1812 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1812 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1813 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1813 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1814 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1814 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1815 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1815 #undef DEFINE_BUILTIN_ACCESSOR_C 1816 #undef DEFINE_BUILTIN_ACCESSOR_C
1816 #undef DEFINE_BUILTIN_ACCESSOR_A 1817 #undef DEFINE_BUILTIN_ACCESSOR_A
1817 1818
1818 1819
1819 } } // namespace v8::internal 1820 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/ia32/stub-cache-ia32.cc » ('j') | src/ic.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698