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

Side by Side Diff: src/builtins.cc

Issue 1199493002: Revert relanded strong property access CL (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 LoadIC::GenerateNormal(masm); 1268 LoadIC::GenerateNormal(masm);
1269 } 1269 }
1270 1270
1271 1271
1272 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) { 1272 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) {
1273 NamedLoadHandlerCompiler::GenerateLoadViaGetterForDeopt(masm); 1273 NamedLoadHandlerCompiler::GenerateLoadViaGetterForDeopt(masm);
1274 } 1274 }
1275 1275
1276 1276
1277 static void Generate_LoadIC_Slow(MacroAssembler* masm) { 1277 static void Generate_LoadIC_Slow(MacroAssembler* masm) {
1278 NamedLoadHandlerCompiler::GenerateSlow(masm); 1278 LoadIC::GenerateRuntimeGetProperty(masm);
1279 }
1280
1281
1282 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) {
1283 KeyedLoadIC::GenerateInitialize(masm);
1279 } 1284 }
1280 1285
1281 1286
1282 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) { 1287 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) {
1283 ElementHandlerCompiler::GenerateLoadSlow(masm); 1288 KeyedLoadIC::GenerateRuntimeGetProperty(masm);
1284 } 1289 }
1285 1290
1286 1291
1287 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { 1292 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) {
1288 KeyedLoadIC::GenerateMiss(masm); 1293 KeyedLoadIC::GenerateMiss(masm);
1289 } 1294 }
1290 1295
1291 1296
1292 static void Generate_KeyedLoadIC_Megamorphic(MacroAssembler* masm) { 1297 static void Generate_KeyedLoadIC_Megamorphic(MacroAssembler* masm) {
1293 KeyedLoadIC::GenerateMegamorphic(masm, SLOPPY); 1298 KeyedLoadIC::GenerateMegamorphic(masm);
1294 } 1299 }
1295 1300
1296 1301
1297 static void Generate_KeyedLoadIC_Megamorphic_Strong(MacroAssembler* masm) {
1298 KeyedLoadIC::GenerateMegamorphic(masm, STRONG);
1299 }
1300
1301
1302 static void Generate_StoreIC_Miss(MacroAssembler* masm) { 1302 static void Generate_StoreIC_Miss(MacroAssembler* masm) {
1303 StoreIC::GenerateMiss(masm); 1303 StoreIC::GenerateMiss(masm);
1304 } 1304 }
1305 1305
1306 1306
1307 static void Generate_StoreIC_Normal(MacroAssembler* masm) { 1307 static void Generate_StoreIC_Normal(MacroAssembler* masm) {
1308 StoreIC::GenerateNormal(masm); 1308 StoreIC::GenerateNormal(masm);
1309 } 1309 }
1310 1310
1311 1311
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1651 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1651 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1652 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1652 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1653 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1653 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1654 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1654 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1655 #undef DEFINE_BUILTIN_ACCESSOR_C 1655 #undef DEFINE_BUILTIN_ACCESSOR_C
1656 #undef DEFINE_BUILTIN_ACCESSOR_A 1656 #undef DEFINE_BUILTIN_ACCESSOR_A
1657 1657
1658 1658
1659 } // namespace internal 1659 } // namespace internal
1660 } // namespace v8 1660 } // namespace v8
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