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

Side by Side Diff: src/mips/stub-cache-mips.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_MIPS 7 #if V8_TARGET_ARCH_MIPS
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 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 // Leave the internal frame. 1130 // Leave the internal frame.
1131 } 1131 }
1132 GenerateLoadPostInterceptor(holder_reg, interceptor_holder, name, lookup); 1132 GenerateLoadPostInterceptor(holder_reg, interceptor_holder, name, lookup);
1133 } else { // !compile_followup_inline 1133 } else { // !compile_followup_inline
1134 // Call the runtime system to load the interceptor. 1134 // Call the runtime system to load the interceptor.
1135 // Check that the maps haven't changed. 1135 // Check that the maps haven't changed.
1136 PushInterceptorArguments(masm(), receiver(), holder_reg, 1136 PushInterceptorArguments(masm(), receiver(), holder_reg,
1137 this->name(), interceptor_holder); 1137 this->name(), interceptor_holder);
1138 1138
1139 ExternalReference ref = ExternalReference( 1139 ExternalReference ref = ExternalReference(
1140 IC_Utility(IC::kLoadPropertyWithInterceptorForLoad), isolate()); 1140 IC_Utility(IC::kLoadPropertyWithInterceptor), isolate());
1141 __ TailCallExternalReference(ref, StubCache::kInterceptorArgsLength, 1); 1141 __ TailCallExternalReference(ref, StubCache::kInterceptorArgsLength, 1);
1142 } 1142 }
1143 } 1143 }
1144 1144
1145 1145
1146 Handle<Code> StoreStubCompiler::CompileStoreCallback( 1146 Handle<Code> StoreStubCompiler::CompileStoreCallback(
1147 Handle<JSObject> object, 1147 Handle<JSObject> object,
1148 Handle<JSObject> holder, 1148 Handle<JSObject> holder,
1149 Handle<Name> name, 1149 Handle<Name> name,
1150 Handle<ExecutableAccessorInfo> callback) { 1150 Handle<ExecutableAccessorInfo> callback) {
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1500 // ----------------------------------- 1500 // -----------------------------------
1501 TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss); 1501 TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss);
1502 } 1502 }
1503 1503
1504 1504
1505 #undef __ 1505 #undef __
1506 1506
1507 } } // namespace v8::internal 1507 } } // namespace v8::internal
1508 1508
1509 #endif // V8_TARGET_ARCH_MIPS 1509 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698