| 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_CODE_STUBS_H_ | 5 #ifndef V8_CODE_STUBS_H_ |
| 6 #define V8_CODE_STUBS_H_ | 6 #define V8_CODE_STUBS_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
| 10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
| (...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 | 967 |
| 968 Code::Kind GetCodeKind() const override { return Code::CALL_IC; } | 968 Code::Kind GetCodeKind() const override { return Code::CALL_IC; } |
| 969 | 969 |
| 970 InlineCacheState GetICState() const override { return GENERIC; } | 970 InlineCacheState GetICState() const override { return GENERIC; } |
| 971 | 971 |
| 972 ExtraICState GetExtraICState() const final { | 972 ExtraICState GetExtraICState() const final { |
| 973 return static_cast<ExtraICState>(minor_key_); | 973 return static_cast<ExtraICState>(minor_key_); |
| 974 } | 974 } |
| 975 | 975 |
| 976 protected: | 976 protected: |
| 977 int arg_count() const { return state().argc(); } | 977 int arg_count() const { |
| 978 DCHECK(!argc_in_register()); |
| 979 return state().argc(); |
| 980 } |
| 978 ConvertReceiverMode convert_mode() const { return state().convert_mode(); } | 981 ConvertReceiverMode convert_mode() const { return state().convert_mode(); } |
| 979 TailCallMode tail_call_mode() const { return state().tail_call_mode(); } | 982 TailCallMode tail_call_mode() const { return state().tail_call_mode(); } |
| 983 bool argc_in_register() const { return state().argc_in_register(); } |
| 980 | 984 |
| 981 CallICState state() const { | 985 CallICState state() const { |
| 982 return CallICState(static_cast<ExtraICState>(minor_key_)); | 986 return CallICState(static_cast<ExtraICState>(minor_key_)); |
| 983 } | 987 } |
| 984 | 988 |
| 985 // Code generation helpers. | 989 // Code generation helpers. |
| 986 void GenerateMiss(MacroAssembler* masm); | 990 void GenerateMiss(MacroAssembler* masm); |
| 987 void HandleArrayCase(MacroAssembler* masm, Label* miss); | 991 void HandleArrayCase(MacroAssembler* masm, Label* miss); |
| 988 | 992 |
| 989 private: | 993 private: |
| (...skipping 1976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2966 #undef DEFINE_HYDROGEN_CODE_STUB | 2970 #undef DEFINE_HYDROGEN_CODE_STUB |
| 2967 #undef DEFINE_CODE_STUB | 2971 #undef DEFINE_CODE_STUB |
| 2968 #undef DEFINE_CODE_STUB_BASE | 2972 #undef DEFINE_CODE_STUB_BASE |
| 2969 | 2973 |
| 2970 extern Representation RepresentationFromType(Type* type); | 2974 extern Representation RepresentationFromType(Type* type); |
| 2971 | 2975 |
| 2972 } // namespace internal | 2976 } // namespace internal |
| 2973 } // namespace v8 | 2977 } // namespace v8 |
| 2974 | 2978 |
| 2975 #endif // V8_CODE_STUBS_H_ | 2979 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |