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

Side by Side Diff: src/builtins.cc

Issue 575373004: Convert KeyedLoad indexed interceptor case to a Handler. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE and ports. Created 6 years, 3 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
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs.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/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 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1282 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) { 1282 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) {
1283 KeyedLoadIC::GenerateString(masm); 1283 KeyedLoadIC::GenerateString(masm);
1284 } 1284 }
1285 1285
1286 1286
1287 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { 1287 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) {
1288 KeyedLoadIC::GeneratePreMonomorphic(masm); 1288 KeyedLoadIC::GeneratePreMonomorphic(masm);
1289 } 1289 }
1290 1290
1291 1291
1292 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) {
1293 KeyedLoadIC::GenerateIndexedInterceptor(masm);
1294 }
1295
1296
1297 static void Generate_KeyedLoadIC_SloppyArguments(MacroAssembler* masm) { 1292 static void Generate_KeyedLoadIC_SloppyArguments(MacroAssembler* masm) {
1298 KeyedLoadIC::GenerateSloppyArguments(masm); 1293 KeyedLoadIC::GenerateSloppyArguments(masm);
1299 } 1294 }
1300 1295
1301 1296
1302 static void Generate_StoreIC_Miss(MacroAssembler* masm) { 1297 static void Generate_StoreIC_Miss(MacroAssembler* masm) {
1303 StoreIC::GenerateMiss(masm); 1298 StoreIC::GenerateMiss(masm);
1304 } 1299 }
1305 1300
1306 1301
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
1655 } 1650 }
1656 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1651 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1657 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1652 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1658 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1653 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1659 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1654 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1660 #undef DEFINE_BUILTIN_ACCESSOR_C 1655 #undef DEFINE_BUILTIN_ACCESSOR_C
1661 #undef DEFINE_BUILTIN_ACCESSOR_A 1656 #undef DEFINE_BUILTIN_ACCESSOR_A
1662 1657
1663 1658
1664 } } // namespace v8::internal 1659 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698