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

Side by Side Diff: src/builtins.cc

Issue 458813002: Prototype implementation of GET_OWN_PROPERTY intrinsic. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) { 1251 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) {
1252 NamedLoadHandlerCompiler::GenerateLoadViaGetterForDeopt(masm); 1252 NamedLoadHandlerCompiler::GenerateLoadViaGetterForDeopt(masm);
1253 } 1253 }
1254 1254
1255 1255
1256 static void Generate_LoadIC_Slow(MacroAssembler* masm) { 1256 static void Generate_LoadIC_Slow(MacroAssembler* masm) {
1257 LoadIC::GenerateRuntimeGetProperty(masm); 1257 LoadIC::GenerateRuntimeGetProperty(masm);
1258 } 1258 }
1259 1259
1260 1260
1261 static void Generate_LoadICOwn_Slow(MacroAssembler* masm) {
1262 LoadIC::GenerateRuntimeGetOwnProperty(masm);
1263 }
1264
1265
1261 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) { 1266 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) {
1262 KeyedLoadIC::GenerateInitialize(masm); 1267 KeyedLoadIC::GenerateInitialize(masm);
1263 } 1268 }
1264 1269
1265 1270
1266 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) { 1271 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) {
1267 KeyedLoadIC::GenerateRuntimeGetProperty(masm); 1272 KeyedLoadIC::GenerateRuntimeGetProperty(masm);
1268 } 1273 }
1269 1274
1270 1275
1276 static void Generate_KeyedLoadICOwn_Slow(MacroAssembler* masm) {
1277 KeyedLoadIC::GenerateRuntimeGetOwnProperty(masm);
1278 }
1279
1280
1271 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { 1281 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) {
1272 KeyedLoadIC::GenerateMiss(masm); 1282 KeyedLoadIC::GenerateMiss(masm);
1273 } 1283 }
1274 1284
1275 1285 /*
1276 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { 1286 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) {
1277 KeyedLoadIC::GenerateGeneric(masm); 1287 // KeyedLoadIC::GenerateGeneric(masm);
1278 } 1288 }
1289 */
1279 1290
1280 1291
1281 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) { 1292 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) {
1282 KeyedLoadIC::GenerateString(masm); 1293 KeyedLoadIC::GenerateString(masm);
1283 } 1294 }
1284 1295
1285 1296
1286 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { 1297 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) {
1287 KeyedLoadIC::GeneratePreMonomorphic(masm); 1298 KeyedLoadIC::GeneratePreMonomorphic(masm);
1288 } 1299 }
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
1654 } 1665 }
1655 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1666 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1656 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1667 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1657 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1668 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1658 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1669 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1659 #undef DEFINE_BUILTIN_ACCESSOR_C 1670 #undef DEFINE_BUILTIN_ACCESSOR_C
1660 #undef DEFINE_BUILTIN_ACCESSOR_A 1671 #undef DEFINE_BUILTIN_ACCESSOR_A
1661 1672
1662 1673
1663 } } // namespace v8::internal 1674 } } // 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