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

Side by Side Diff: src/ic/ic.h

Issue 2033423002: [builtins] Turn LoadIC_Miss and LoadIC_Slow builtins to TurboFan code stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@load-ic-stub-tf
Patch Set: Created 4 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
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 #ifndef V8_IC_H_ 5 #ifndef V8_IC_H_
6 #define V8_IC_H_ 6 #define V8_IC_H_
7 7
8 #include "src/ic/ic-state.h" 8 #include "src/ic/ic-state.h"
9 #include "src/macro-assembler.h" 9 #include "src/macro-assembler.h"
10 #include "src/messages.h" 10 #include "src/messages.h"
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 293
294 static Handle<Code> initialize_stub_in_optimized_code( 294 static Handle<Code> initialize_stub_in_optimized_code(
295 Isolate* isolate, ExtraICState extra_state); 295 Isolate* isolate, ExtraICState extra_state);
296 296
297 MUST_USE_RESULT MaybeHandle<Object> Load(Handle<Object> object, 297 MUST_USE_RESULT MaybeHandle<Object> Load(Handle<Object> object,
298 Handle<Name> name); 298 Handle<Name> name);
299 299
300 static void Clear(Isolate* isolate, Code* host, LoadICNexus* nexus); 300 static void Clear(Isolate* isolate, Code* host, LoadICNexus* nexus);
301 301
302 protected: 302 protected:
303 Handle<Code> slow_stub() const { 303 Handle<Code> slow_stub() const;
304 return isolate()->builtins()->LoadIC_Slow();
305 }
306 304
307 // Update the inline cache and the global stub cache based on the 305 // Update the inline cache and the global stub cache based on the
308 // lookup result. 306 // lookup result.
309 void UpdateCaches(LookupIterator* lookup); 307 void UpdateCaches(LookupIterator* lookup);
310 308
311 Handle<Code> GetMapIndependentHandler(LookupIterator* lookup) override; 309 Handle<Code> GetMapIndependentHandler(LookupIterator* lookup) override;
312 310
313 Handle<Code> CompileHandler(LookupIterator* lookup, Handle<Object> unused, 311 Handle<Code> CompileHandler(LookupIterator* lookup, Handle<Object> unused,
314 CacheHolderFlag cache_holder) override; 312 CacheHolderFlag cache_holder) override;
315 313
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 496
499 // Helper for BinaryOpIC and CompareIC. 497 // Helper for BinaryOpIC and CompareIC.
500 enum InlinedSmiCheck { ENABLE_INLINED_SMI_CHECK, DISABLE_INLINED_SMI_CHECK }; 498 enum InlinedSmiCheck { ENABLE_INLINED_SMI_CHECK, DISABLE_INLINED_SMI_CHECK };
501 void PatchInlinedSmiCode(Isolate* isolate, Address address, 499 void PatchInlinedSmiCode(Isolate* isolate, Address address,
502 InlinedSmiCheck check); 500 InlinedSmiCheck check);
503 501
504 } // namespace internal 502 } // namespace internal
505 } // namespace v8 503 } // namespace v8
506 504
507 #endif // V8_IC_H_ 505 #endif // V8_IC_H_
OLDNEW
« src/code-stubs.h ('K') | « src/ic/ia32/handler-compiler-ia32.cc ('k') | src/ic/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698