OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |