| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_INTERPRETER_INTERPRETER_INTRINSICS_H_ | 5 #ifndef V8_INTERPRETER_INTERPRETER_INTRINSICS_H_ |
| 6 #define V8_INTERPRETER_INTERPRETER_INTRINSICS_H_ | 6 #define V8_INTERPRETER_INTERPRETER_INTRINSICS_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/builtins/builtins.h" | 9 #include "src/builtins/builtins.h" |
| 10 #include "src/frames.h" | 10 #include "src/frames.h" |
| 11 #include "src/interpreter/bytecodes.h" | 11 #include "src/interpreter/bytecodes.h" |
| 12 #include "src/interpreter/interpreter-assembler.h" | 12 #include "src/interpreter/interpreter-assembler.h" |
| 13 #include "src/runtime/runtime.h" | 13 #include "src/runtime/runtime.h" |
| 14 | 14 |
| 15 namespace v8 { | 15 namespace v8 { |
| 16 namespace internal { | 16 namespace internal { |
| 17 | 17 |
| 18 namespace compiler { | 18 namespace compiler { |
| 19 class Node; | 19 class Node; |
| 20 } // namespace compiler | 20 } // namespace compiler |
| 21 | 21 |
| 22 namespace interpreter { | 22 namespace interpreter { |
| 23 | 23 |
| 24 // List of supported intrisics, with upper case name, lower case name and | 24 // List of supported intrisics, with upper case name, lower case name and |
| 25 // expected number of arguments (-1 denoting argument count is variable). | 25 // expected number of arguments (-1 denoting argument count is variable). |
| 26 #define INTRINSICS_LIST(V) \ | 26 #define INTRINSICS_LIST(V) \ |
| 27 V(Call, call, -1) \ | 27 V(Call, call, -1) \ |
| 28 V(ClassOf, class_of, 1) \ | 28 V(ClassOf, class_of, 1) \ |
| 29 V(CreateIterResultObject, create_iter_result_object, 2) \ | 29 V(CreateIterResultObject, create_iter_result_object, 2) \ |
| 30 V(HasProperty, has_property, 2) \ | 30 V(CreateAsyncFromSyncIterator, create_async_from_sync_iterator, 1) \ |
| 31 V(IsArray, is_array, 1) \ | 31 V(HasProperty, has_property, 2) \ |
| 32 V(IsJSProxy, is_js_proxy, 1) \ | 32 V(IsArray, is_array, 1) \ |
| 33 V(IsJSReceiver, is_js_receiver, 1) \ | 33 V(IsJSProxy, is_js_proxy, 1) \ |
| 34 V(IsSmi, is_smi, 1) \ | 34 V(IsJSReceiver, is_js_receiver, 1) \ |
| 35 V(IsTypedArray, is_typed_array, 1) \ | 35 V(IsSmi, is_smi, 1) \ |
| 36 V(SubString, sub_string, 3) \ | 36 V(IsTypedArray, is_typed_array, 1) \ |
| 37 V(ToString, to_string, 1) \ | 37 V(SubString, sub_string, 3) \ |
| 38 V(ToLength, to_length, 1) \ | 38 V(ToString, to_string, 1) \ |
| 39 V(ToInteger, to_integer, 1) \ | 39 V(ToLength, to_length, 1) \ |
| 40 V(ToNumber, to_number, 1) \ | 40 V(ToInteger, to_integer, 1) \ |
| 41 V(ToNumber, to_number, 1) \ |
| 41 V(ToObject, to_object, 1) | 42 V(ToObject, to_object, 1) |
| 42 | 43 |
| 43 class IntrinsicsHelper { | 44 class IntrinsicsHelper { |
| 44 public: | 45 public: |
| 45 enum class IntrinsicId { | 46 enum class IntrinsicId { |
| 46 #define DECLARE_INTRINSIC_ID(name, lower_case, count) k##name, | 47 #define DECLARE_INTRINSIC_ID(name, lower_case, count) k##name, |
| 47 INTRINSICS_LIST(DECLARE_INTRINSIC_ID) | 48 INTRINSICS_LIST(DECLARE_INTRINSIC_ID) |
| 48 #undef DECLARE_INTRINSIC_ID | 49 #undef DECLARE_INTRINSIC_ID |
| 49 kIdCount | 50 kIdCount |
| 50 }; | 51 }; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 InterpreterAssembler* assembler_; | 90 InterpreterAssembler* assembler_; |
| 90 | 91 |
| 91 DISALLOW_COPY_AND_ASSIGN(IntrinsicsHelper); | 92 DISALLOW_COPY_AND_ASSIGN(IntrinsicsHelper); |
| 92 }; | 93 }; |
| 93 | 94 |
| 94 } // namespace interpreter | 95 } // namespace interpreter |
| 95 } // namespace internal | 96 } // namespace internal |
| 96 } // namespace v8 | 97 } // namespace v8 |
| 97 | 98 |
| 98 #endif | 99 #endif |
| OLD | NEW |