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

Side by Side Diff: src/x64/stub-cache-x64.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_X64 7 #if V8_TARGET_ARCH_X64
8 8
9 #include "src/arguments.h" 9 #include "src/arguments.h"
10 #include "src/ic-inl.h" 10 #include "src/ic-inl.h"
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 GenerateLoadPostInterceptor(holder_reg, interceptor_holder, name, lookup); 1047 GenerateLoadPostInterceptor(holder_reg, interceptor_holder, name, lookup);
1048 } else { // !compile_followup_inline 1048 } else { // !compile_followup_inline
1049 // Call the runtime system to load the interceptor. 1049 // Call the runtime system to load the interceptor.
1050 // Check that the maps haven't changed. 1050 // Check that the maps haven't changed.
1051 __ PopReturnAddressTo(scratch2()); 1051 __ PopReturnAddressTo(scratch2());
1052 PushInterceptorArguments(masm(), receiver(), holder_reg, 1052 PushInterceptorArguments(masm(), receiver(), holder_reg,
1053 this->name(), interceptor_holder); 1053 this->name(), interceptor_holder);
1054 __ PushReturnAddressFrom(scratch2()); 1054 __ PushReturnAddressFrom(scratch2());
1055 1055
1056 ExternalReference ref = ExternalReference( 1056 ExternalReference ref = ExternalReference(
1057 IC_Utility(IC::kLoadPropertyWithInterceptorForLoad), isolate()); 1057 IC_Utility(IC::kLoadPropertyWithInterceptor), isolate());
1058 __ TailCallExternalReference(ref, StubCache::kInterceptorArgsLength, 1); 1058 __ TailCallExternalReference(ref, StubCache::kInterceptorArgsLength, 1);
1059 } 1059 }
1060 } 1060 }
1061 1061
1062 1062
1063 Handle<Code> StoreStubCompiler::CompileStoreCallback( 1063 Handle<Code> StoreStubCompiler::CompileStoreCallback(
1064 Handle<JSObject> object, 1064 Handle<JSObject> object,
1065 Handle<JSObject> holder, 1065 Handle<JSObject> holder,
1066 Handle<Name> name, 1066 Handle<Name> name,
1067 Handle<ExecutableAccessorInfo> callback) { 1067 Handle<ExecutableAccessorInfo> callback) {
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 // ----------------------------------- 1427 // -----------------------------------
1428 TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss); 1428 TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss);
1429 } 1429 }
1430 1430
1431 1431
1432 #undef __ 1432 #undef __
1433 1433
1434 } } // namespace v8::internal 1434 } } // namespace v8::internal
1435 1435
1436 #endif // V8_TARGET_ARCH_X64 1436 #endif // V8_TARGET_ARCH_X64
OLDNEW
« src/objects-inl.h ('K') | « src/stub-cache.cc ('k') | src/x87/stub-cache-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698