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

Side by Side Diff: src/builtins.cc

Issue 1129853002: Removing FLAG_vector_ics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comment response. Created 5 years, 7 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
« no previous file with comments | « src/builtins.h ('k') | src/code-factory.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/api.h" 7 #include "src/api.h"
8 #include "src/api-natives.h" 8 #include "src/api-natives.h"
9 #include "src/arguments.h" 9 #include "src/arguments.h"
10 #include "src/base/once.h" 10 #include "src/base/once.h"
(...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after
1302 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { 1302 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) {
1303 KeyedLoadIC::GenerateMiss(masm); 1303 KeyedLoadIC::GenerateMiss(masm);
1304 } 1304 }
1305 1305
1306 1306
1307 static void Generate_KeyedLoadIC_Megamorphic(MacroAssembler* masm) { 1307 static void Generate_KeyedLoadIC_Megamorphic(MacroAssembler* masm) {
1308 KeyedLoadIC::GenerateMegamorphic(masm); 1308 KeyedLoadIC::GenerateMegamorphic(masm);
1309 } 1309 }
1310 1310
1311 1311
1312 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) {
1313 KeyedLoadIC::GeneratePreMonomorphic(masm);
1314 }
1315
1316
1317 static void Generate_StoreIC_Miss(MacroAssembler* masm) { 1312 static void Generate_StoreIC_Miss(MacroAssembler* masm) {
1318 StoreIC::GenerateMiss(masm); 1313 StoreIC::GenerateMiss(masm);
1319 } 1314 }
1320 1315
1321 1316
1322 static void Generate_StoreIC_Normal(MacroAssembler* masm) { 1317 static void Generate_StoreIC_Normal(MacroAssembler* masm) {
1323 StoreIC::GenerateNormal(masm); 1318 StoreIC::GenerateNormal(masm);
1324 } 1319 }
1325 1320
1326 1321
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1670 } 1665 }
1671 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1666 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1672 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1667 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1673 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1668 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1674 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1669 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1675 #undef DEFINE_BUILTIN_ACCESSOR_C 1670 #undef DEFINE_BUILTIN_ACCESSOR_C
1676 #undef DEFINE_BUILTIN_ACCESSOR_A 1671 #undef DEFINE_BUILTIN_ACCESSOR_A
1677 1672
1678 1673
1679 } } // namespace v8::internal 1674 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/code-factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698