OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 // --- | 170 // --- |
171 | 171 |
172 MUST_USE_RESULT static MaybeObject* ComputeCallField(int argc, | 172 MUST_USE_RESULT static MaybeObject* ComputeCallField(int argc, |
173 InLoopFlag in_loop, | 173 InLoopFlag in_loop, |
174 Code::Kind, | 174 Code::Kind, |
175 String* name, | 175 String* name, |
176 Object* object, | 176 Object* object, |
177 JSObject* holder, | 177 JSObject* holder, |
178 int index); | 178 int index); |
179 | 179 |
180 MUST_USE_RESULT static MaybeObject* ComputeCallConstant(int argc, | 180 MUST_USE_RESULT static MaybeObject* ComputeCallConstant( |
181 InLoopFlag in_loop, | 181 int argc, |
182 Code::Kind, | 182 InLoopFlag in_loop, |
183 String* name, | 183 Code::Kind, |
184 Object* object, | 184 Code::ExtraICState extra_ic_state, |
185 JSObject* holder, | 185 String* name, |
186 JSFunction* function); | 186 Object* object, |
| 187 JSObject* holder, |
| 188 JSFunction* function); |
187 | 189 |
188 MUST_USE_RESULT static MaybeObject* ComputeCallNormal(int argc, | 190 MUST_USE_RESULT static MaybeObject* ComputeCallNormal(int argc, |
189 InLoopFlag in_loop, | 191 InLoopFlag in_loop, |
190 Code::Kind, | 192 Code::Kind, |
191 String* name, | 193 String* name, |
192 JSObject* receiver); | 194 JSObject* receiver); |
193 | 195 |
194 MUST_USE_RESULT static MaybeObject* ComputeCallInterceptor(int argc, | 196 MUST_USE_RESULT static MaybeObject* ComputeCallInterceptor(int argc, |
195 Code::Kind, | 197 Code::Kind, |
196 String* name, | 198 String* name, |
(...skipping 26 matching lines...) Expand all Loading... |
223 Code::Kind kind); | 225 Code::Kind kind); |
224 | 226 |
225 MUST_USE_RESULT static MaybeObject* ComputeCallNormal(int argc, | 227 MUST_USE_RESULT static MaybeObject* ComputeCallNormal(int argc, |
226 InLoopFlag in_loop, | 228 InLoopFlag in_loop, |
227 Code::Kind kind); | 229 Code::Kind kind); |
228 | 230 |
229 MUST_USE_RESULT static MaybeObject* ComputeCallMegamorphic(int argc, | 231 MUST_USE_RESULT static MaybeObject* ComputeCallMegamorphic(int argc, |
230 InLoopFlag in_loop, | 232 InLoopFlag in_loop, |
231 Code::Kind kind); | 233 Code::Kind kind); |
232 | 234 |
233 MUST_USE_RESULT static MaybeObject* ComputeCallMiss(int argc, | 235 MUST_USE_RESULT static MaybeObject* ComputeCallMiss( |
234 Code::Kind kind); | 236 int argc, |
| 237 Code::Kind kind, |
| 238 Code::ExtraICState extra_ic_state); |
235 | 239 |
236 // Finds the Code object stored in the Heap::non_monomorphic_cache(). | 240 // Finds the Code object stored in the Heap::non_monomorphic_cache(). |
237 MUST_USE_RESULT static Code* FindCallInitialize(int argc, | 241 MUST_USE_RESULT static Code* FindCallInitialize(int argc, |
238 InLoopFlag in_loop, | 242 InLoopFlag in_loop, |
239 Code::Kind kind); | 243 Code::Kind kind); |
240 | 244 |
241 #ifdef ENABLE_DEBUGGER_SUPPORT | 245 #ifdef ENABLE_DEBUGGER_SUPPORT |
242 MUST_USE_RESULT static MaybeObject* ComputeCallDebugBreak(int argc, | 246 MUST_USE_RESULT static MaybeObject* ComputeCallDebugBreak(int argc, |
243 Code::Kind kind); | 247 Code::Kind kind); |
244 | 248 |
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 V(StringFromCharCode) \ | 657 V(StringFromCharCode) \ |
654 V(MathFloor) \ | 658 V(MathFloor) \ |
655 V(MathAbs) | 659 V(MathAbs) |
656 | 660 |
657 | 661 |
658 class CallStubCompiler: public StubCompiler { | 662 class CallStubCompiler: public StubCompiler { |
659 public: | 663 public: |
660 CallStubCompiler(int argc, | 664 CallStubCompiler(int argc, |
661 InLoopFlag in_loop, | 665 InLoopFlag in_loop, |
662 Code::Kind kind, | 666 Code::Kind kind, |
| 667 Code::ExtraICState extra_ic_state, |
663 InlineCacheHolderFlag cache_holder); | 668 InlineCacheHolderFlag cache_holder); |
664 | 669 |
665 MUST_USE_RESULT MaybeObject* CompileCallField(JSObject* object, | 670 MUST_USE_RESULT MaybeObject* CompileCallField(JSObject* object, |
666 JSObject* holder, | 671 JSObject* holder, |
667 int index, | 672 int index, |
668 String* name); | 673 String* name); |
669 MUST_USE_RESULT MaybeObject* CompileCallConstant(Object* object, | 674 MUST_USE_RESULT MaybeObject* CompileCallConstant(Object* object, |
670 JSObject* holder, | 675 JSObject* holder, |
671 JSFunction* function, | 676 JSFunction* function, |
672 String* name, | 677 String* name, |
(...skipping 25 matching lines...) Expand all Loading... |
698 JSObject* holder, \ | 703 JSObject* holder, \ |
699 JSGlobalPropertyCell* cell, \ | 704 JSGlobalPropertyCell* cell, \ |
700 JSFunction* function, \ | 705 JSFunction* function, \ |
701 String* fname); | 706 String* fname); |
702 CUSTOM_CALL_IC_GENERATORS(DECLARE_CALL_GENERATOR) | 707 CUSTOM_CALL_IC_GENERATORS(DECLARE_CALL_GENERATOR) |
703 #undef DECLARE_CALL_GENERATOR | 708 #undef DECLARE_CALL_GENERATOR |
704 | 709 |
705 const ParameterCount arguments_; | 710 const ParameterCount arguments_; |
706 const InLoopFlag in_loop_; | 711 const InLoopFlag in_loop_; |
707 const Code::Kind kind_; | 712 const Code::Kind kind_; |
| 713 const Code::ExtraICState extra_ic_state_; |
708 const InlineCacheHolderFlag cache_holder_; | 714 const InlineCacheHolderFlag cache_holder_; |
709 | 715 |
710 const ParameterCount& arguments() { return arguments_; } | 716 const ParameterCount& arguments() { return arguments_; } |
711 | 717 |
712 MUST_USE_RESULT MaybeObject* GetCode(PropertyType type, String* name); | 718 MUST_USE_RESULT MaybeObject* GetCode(PropertyType type, String* name); |
713 | 719 |
714 // Convenience function. Calls GetCode above passing | 720 // Convenience function. Calls GetCode above passing |
715 // CONSTANT_FUNCTION type and the name of the given function. | 721 // CONSTANT_FUNCTION type and the name of the given function. |
716 MUST_USE_RESULT MaybeObject* GetCode(JSFunction* function); | 722 MUST_USE_RESULT MaybeObject* GetCode(JSFunction* function); |
717 | 723 |
718 void GenerateNameCheck(String* name, Label* miss); | 724 void GenerateNameCheck(String* name, Label* miss); |
719 | 725 |
720 void GenerateGlobalReceiverCheck(JSObject* object, | 726 void GenerateGlobalReceiverCheck(JSObject* object, |
721 JSObject* holder, | 727 JSObject* holder, |
722 String* name, | 728 String* name, |
723 Label* miss); | 729 Label* miss); |
724 | 730 |
725 // Generates code to load the function from the cell checking that | 731 // Generates code to load the function from the cell checking that |
726 // it still contains the same function. | 732 // it still contains the same function. |
727 void GenerateLoadFunctionFromCell(JSGlobalPropertyCell* cell, | 733 void GenerateLoadFunctionFromCell(JSGlobalPropertyCell* cell, |
728 JSFunction* function, | 734 JSFunction* function, |
729 Label* miss); | 735 Label* miss); |
730 | 736 |
731 // Generates a jump to CallIC miss stub. Returns Failure if the jump cannot | 737 // Generates a jump to CallIC miss stub. Returns Failure if the jump cannot |
732 // be generated. | 738 // be generated. |
733 MUST_USE_RESULT MaybeObject* GenerateMissBranch(); | 739 MUST_USE_RESULT MaybeObject* GenerateMissBranch(); |
| 740 MUST_USE_RESULT MaybeObject* GenerateExtraStateChangeBranch( |
| 741 Code::ExtraICState new_extra_ic_state); |
| 742 |
| 743 MUST_USE_RESULT MaybeObject* GenerateBranchHelper( |
| 744 Code::ExtraICState extra_ic_state); |
734 }; | 745 }; |
735 | 746 |
736 | 747 |
737 class ConstructStubCompiler: public StubCompiler { | 748 class ConstructStubCompiler: public StubCompiler { |
738 public: | 749 public: |
739 explicit ConstructStubCompiler() {} | 750 explicit ConstructStubCompiler() {} |
740 | 751 |
741 MUST_USE_RESULT MaybeObject* CompileConstructStub(JSFunction* function); | 752 MUST_USE_RESULT MaybeObject* CompileConstructStub(JSFunction* function); |
742 | 753 |
743 private: | 754 private: |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 | 800 |
790 JSFunction* constant_function_; | 801 JSFunction* constant_function_; |
791 bool is_simple_api_call_; | 802 bool is_simple_api_call_; |
792 FunctionTemplateInfo* expected_receiver_type_; | 803 FunctionTemplateInfo* expected_receiver_type_; |
793 CallHandlerInfo* api_call_info_; | 804 CallHandlerInfo* api_call_info_; |
794 }; | 805 }; |
795 | 806 |
796 } } // namespace v8::internal | 807 } } // namespace v8::internal |
797 | 808 |
798 #endif // V8_STUB_CACHE_H_ | 809 #endif // V8_STUB_CACHE_H_ |
OLD | NEW |