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

Side by Side Diff: src/builtins.cc

Issue 878263002: Add MEGAMORPHIC state support for KeyedLoadIC (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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-stubs-hydrogen.cc » ('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/arguments.h" 8 #include "src/arguments.h"
9 #include "src/base/once.h" 9 #include "src/base/once.h"
10 #include "src/bootstrapper.h" 10 #include "src/bootstrapper.h"
(...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1266 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) { 1266 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) {
1267 KeyedLoadIC::GenerateRuntimeGetProperty(masm); 1267 KeyedLoadIC::GenerateRuntimeGetProperty(masm);
1268 } 1268 }
1269 1269
1270 1270
1271 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { 1271 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) {
1272 KeyedLoadIC::GenerateMiss(masm); 1272 KeyedLoadIC::GenerateMiss(masm);
1273 } 1273 }
1274 1274
1275 1275
1276 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { 1276 static void Generate_KeyedLoadIC_Megamorphic(MacroAssembler* masm) {
1277 KeyedLoadIC::GenerateGeneric(masm); 1277 KeyedLoadIC::GenerateMegamorphic(masm);
1278 } 1278 }
1279 1279
1280 1280
1281 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { 1281 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) {
1282 KeyedLoadIC::GeneratePreMonomorphic(masm); 1282 KeyedLoadIC::GeneratePreMonomorphic(masm);
1283 } 1283 }
1284 1284
1285 1285
1286 static void Generate_StoreIC_Miss(MacroAssembler* masm) { 1286 static void Generate_StoreIC_Miss(MacroAssembler* masm) {
1287 StoreIC::GenerateMiss(masm); 1287 StoreIC::GenerateMiss(masm);
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1639 } 1639 }
1640 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1640 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1641 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1641 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1642 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1642 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1643 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1643 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1644 #undef DEFINE_BUILTIN_ACCESSOR_C 1644 #undef DEFINE_BUILTIN_ACCESSOR_C
1645 #undef DEFINE_BUILTIN_ACCESSOR_A 1645 #undef DEFINE_BUILTIN_ACCESSOR_A
1646 1646
1647 1647
1648 } } // namespace v8::internal 1648 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs-hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698