| 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" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 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(HasProperty, has_property, 2) \ | 29 V(HasProperty, has_property, 2) \ |
| 30 V(IsArray, is_array, 1) \ | 30 V(IsArray, is_array, 1) \ |
| 31 V(IsJSProxy, is_js_proxy, 1) \ | 31 V(IsJSProxy, is_js_proxy, 1) \ |
| 32 V(IsJSReceiver, is_js_receiver, 1) \ | 32 V(IsJSReceiver, is_js_receiver, 1) \ |
| 33 V(IsRegExp, is_regexp, 1) \ | 33 V(IsRegExp, is_regexp, 1) \ |
| 34 V(IsSmi, is_smi, 1) \ | 34 V(IsSmi, is_smi, 1) \ |
| 35 V(IsTypedArray, is_typed_array, 1) \ | 35 V(IsTypedArray, is_typed_array, 1) \ |
| 36 V(NewObject, new_object, 2) \ | |
| 37 V(NumberToString, number_to_string, 1) \ | 36 V(NumberToString, number_to_string, 1) \ |
| 38 V(RegExpExec, reg_exp_exec, 4) \ | 37 V(RegExpExec, reg_exp_exec, 4) \ |
| 39 V(SubString, sub_string, 3) \ | 38 V(SubString, sub_string, 3) \ |
| 40 V(ToString, to_string, 1) \ | 39 V(ToString, to_string, 1) \ |
| 41 V(ToLength, to_length, 1) \ | 40 V(ToLength, to_length, 1) \ |
| 42 V(ToInteger, to_integer, 1) \ | 41 V(ToInteger, to_integer, 1) \ |
| 43 V(ToNumber, to_number, 1) \ | 42 V(ToNumber, to_number, 1) \ |
| 44 V(ToObject, to_object, 1) \ | 43 V(ToObject, to_object, 1) \ |
| 45 V(ValueOf, value_of, 1) | 44 V(ValueOf, value_of, 1) |
| 46 | 45 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 InterpreterAssembler* assembler_; | 92 InterpreterAssembler* assembler_; |
| 94 | 93 |
| 95 DISALLOW_COPY_AND_ASSIGN(IntrinsicsHelper); | 94 DISALLOW_COPY_AND_ASSIGN(IntrinsicsHelper); |
| 96 }; | 95 }; |
| 97 | 96 |
| 98 } // namespace interpreter | 97 } // namespace interpreter |
| 99 } // namespace internal | 98 } // namespace internal |
| 100 } // namespace v8 | 99 } // namespace v8 |
| 101 | 100 |
| 102 #endif | 101 #endif |
| OLD | NEW |