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 | 10 |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 static void GeneratePreMonomorphic(MacroAssembler* masm) { | 405 static void GeneratePreMonomorphic(MacroAssembler* masm) { |
406 GenerateMiss(masm); | 406 GenerateMiss(masm); |
407 } | 407 } |
408 static void GenerateMiss(MacroAssembler* masm); | 408 static void GenerateMiss(MacroAssembler* masm); |
409 static void GenerateNormal(MacroAssembler* masm); | 409 static void GenerateNormal(MacroAssembler* masm); |
410 static void GenerateRuntimeGetProperty(MacroAssembler* masm); | 410 static void GenerateRuntimeGetProperty(MacroAssembler* masm); |
411 | 411 |
412 static Handle<Code> initialize_stub(Isolate* isolate, | 412 static Handle<Code> initialize_stub(Isolate* isolate, |
413 ExtraICState extra_state); | 413 ExtraICState extra_state); |
414 static Handle<Code> initialize_stub_in_optimized_code( | 414 static Handle<Code> initialize_stub_in_optimized_code( |
415 Isolate* isolate, ExtraICState extra_state); | 415 Isolate* isolate, ExtraICState extra_state, State initialization_state); |
416 | 416 |
417 MUST_USE_RESULT MaybeHandle<Object> Load(Handle<Object> object, | 417 MUST_USE_RESULT MaybeHandle<Object> Load(Handle<Object> object, |
418 Handle<Name> name); | 418 Handle<Name> name); |
419 | 419 |
420 static void Clear(Isolate* isolate, Code* host, LoadICNexus* nexus); | 420 static void Clear(Isolate* isolate, Code* host, LoadICNexus* nexus); |
421 | 421 |
422 protected: | 422 protected: |
423 inline void set_target(Code* code); | 423 inline void set_target(Code* code); |
424 | 424 |
425 Handle<Code> slow_stub() const { | 425 Handle<Code> slow_stub() const { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 static void GeneratePreMonomorphic(MacroAssembler* masm) { | 548 static void GeneratePreMonomorphic(MacroAssembler* masm) { |
549 GenerateMiss(masm); | 549 GenerateMiss(masm); |
550 } | 550 } |
551 static void GenerateMiss(MacroAssembler* masm); | 551 static void GenerateMiss(MacroAssembler* masm); |
552 static void GenerateMegamorphic(MacroAssembler* masm); | 552 static void GenerateMegamorphic(MacroAssembler* masm); |
553 static void GenerateNormal(MacroAssembler* masm); | 553 static void GenerateNormal(MacroAssembler* masm); |
554 static void GenerateRuntimeSetProperty(MacroAssembler* masm, | 554 static void GenerateRuntimeSetProperty(MacroAssembler* masm, |
555 LanguageMode language_mode); | 555 LanguageMode language_mode); |
556 | 556 |
557 static Handle<Code> initialize_stub(Isolate* isolate, | 557 static Handle<Code> initialize_stub(Isolate* isolate, |
558 LanguageMode language_mode); | 558 LanguageMode language_mode, |
| 559 State initialization_state); |
559 | 560 |
560 MUST_USE_RESULT MaybeHandle<Object> Store( | 561 MUST_USE_RESULT MaybeHandle<Object> Store( |
561 Handle<Object> object, Handle<Name> name, Handle<Object> value, | 562 Handle<Object> object, Handle<Name> name, Handle<Object> value, |
562 JSReceiver::StoreFromKeyed store_mode = | 563 JSReceiver::StoreFromKeyed store_mode = |
563 JSReceiver::CERTAINLY_NOT_STORE_FROM_KEYED); | 564 JSReceiver::CERTAINLY_NOT_STORE_FROM_KEYED); |
564 | 565 |
565 bool LookupForWrite(LookupIterator* it, Handle<Object> value, | 566 bool LookupForWrite(LookupIterator* it, Handle<Object> value, |
566 JSReceiver::StoreFromKeyed store_mode); | 567 JSReceiver::StoreFromKeyed store_mode); |
567 | 568 |
568 protected: | 569 protected: |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 | 773 |
773 // Support functions for interceptor handlers. | 774 // Support functions for interceptor handlers. |
774 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptorOnly); | 775 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptorOnly); |
775 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptor); | 776 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptor); |
776 DECLARE_RUNTIME_FUNCTION(LoadElementWithInterceptor); | 777 DECLARE_RUNTIME_FUNCTION(LoadElementWithInterceptor); |
777 DECLARE_RUNTIME_FUNCTION(StorePropertyWithInterceptor); | 778 DECLARE_RUNTIME_FUNCTION(StorePropertyWithInterceptor); |
778 } | 779 } |
779 } // namespace v8::internal | 780 } // namespace v8::internal |
780 | 781 |
781 #endif // V8_IC_H_ | 782 #endif // V8_IC_H_ |
OLD | NEW |