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

Side by Side Diff: src/arm64/stub-cache-arm64.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_ARM64 7 #if V8_TARGET_ARCH_ARM64
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 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 // Leave the internal frame. 1107 // Leave the internal frame.
1108 } 1108 }
1109 GenerateLoadPostInterceptor(holder_reg, interceptor_holder, name, lookup); 1109 GenerateLoadPostInterceptor(holder_reg, interceptor_holder, name, lookup);
1110 } else { // !compile_followup_inline 1110 } else { // !compile_followup_inline
1111 // Call the runtime system to load the interceptor. 1111 // Call the runtime system to load the interceptor.
1112 // Check that the maps haven't changed. 1112 // Check that the maps haven't changed.
1113 PushInterceptorArguments( 1113 PushInterceptorArguments(
1114 masm(), receiver(), holder_reg, this->name(), interceptor_holder); 1114 masm(), receiver(), holder_reg, this->name(), interceptor_holder);
1115 1115
1116 ExternalReference ref = 1116 ExternalReference ref =
1117 ExternalReference(IC_Utility(IC::kLoadPropertyWithInterceptorForLoad), 1117 ExternalReference(IC_Utility(IC::kLoadPropertyWithInterceptor),
1118 isolate()); 1118 isolate());
1119 __ TailCallExternalReference(ref, StubCache::kInterceptorArgsLength, 1); 1119 __ TailCallExternalReference(ref, StubCache::kInterceptorArgsLength, 1);
1120 } 1120 }
1121 } 1121 }
1122 1122
1123 1123
1124 Handle<Code> StoreStubCompiler::CompileStoreCallback( 1124 Handle<Code> StoreStubCompiler::CompileStoreCallback(
1125 Handle<JSObject> object, 1125 Handle<JSObject> object,
1126 Handle<JSObject> holder, 1126 Handle<JSObject> holder,
1127 Handle<Name> name, 1127 Handle<Name> name,
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1468 1468
1469 // Miss case, call the runtime. 1469 // Miss case, call the runtime.
1470 __ Bind(&miss); 1470 __ Bind(&miss);
1471 TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss); 1471 TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss);
1472 } 1472 }
1473 1473
1474 1474
1475 } } // namespace v8::internal 1475 } } // namespace v8::internal
1476 1476
1477 #endif // V8_TARGET_ARCH_ARM64 1477 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/handles.h » ('j') | src/lookup.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698