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/arm/stub-cache-arm.cc

Issue 314953006: Implement LookupIterator designed to replace LookupResult (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Adding to BUILD.gn Created 6 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 | Annotate | Revision Log
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 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_ARM
8 8
9 #include "src/ic-inl.h" 9 #include "src/ic-inl.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 } 1138 }
1139 1139
1140 GenerateLoadPostInterceptor(holder_reg, interceptor_holder, name, lookup); 1140 GenerateLoadPostInterceptor(holder_reg, interceptor_holder, name, lookup);
1141 } else { // !compile_followup_inline 1141 } else { // !compile_followup_inline
1142 // Call the runtime system to load the interceptor. 1142 // Call the runtime system to load the interceptor.
1143 // Check that the maps haven't changed. 1143 // Check that the maps haven't changed.
1144 PushInterceptorArguments(masm(), receiver(), holder_reg, 1144 PushInterceptorArguments(masm(), receiver(), holder_reg,
1145 this->name(), interceptor_holder); 1145 this->name(), interceptor_holder);
1146 1146
1147 ExternalReference ref = 1147 ExternalReference ref =
1148 ExternalReference(IC_Utility(IC::kLoadPropertyWithInterceptorForLoad), 1148 ExternalReference(IC_Utility(IC::kLoadPropertyWithInterceptor),
1149 isolate()); 1149 isolate());
1150 __ TailCallExternalReference(ref, StubCache::kInterceptorArgsLength, 1); 1150 __ TailCallExternalReference(ref, StubCache::kInterceptorArgsLength, 1);
1151 } 1151 }
1152 } 1152 }
1153 1153
1154 1154
1155 Handle<Code> StoreStubCompiler::CompileStoreCallback( 1155 Handle<Code> StoreStubCompiler::CompileStoreCallback(
1156 Handle<JSObject> object, 1156 Handle<JSObject> object,
1157 Handle<JSObject> holder, 1157 Handle<JSObject> holder,
1158 Handle<Name> name, 1158 Handle<Name> name,
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
1507 // ----------------------------------- 1507 // -----------------------------------
1508 TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss); 1508 TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss);
1509 } 1509 }
1510 1510
1511 1511
1512 #undef __ 1512 #undef __
1513 1513
1514 } } // namespace v8::internal 1514 } } // namespace v8::internal
1515 1515
1516 #endif // V8_TARGET_ARCH_ARM 1516 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/arm64/stub-cache-arm64.cc » ('j') | src/lookup.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698