OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef V8_INTERPRETER_INTERPRETER_INTRINSICS_H_ |
| 6 #define V8_INTERPRETER_INTERPRETER_INTRINSICS_H_ |
| 7 |
| 8 #include "src/allocation.h" |
| 9 #include "src/base/smart-pointers.h" |
| 10 #include "src/builtins.h" |
| 11 #include "src/frames.h" |
| 12 #include "src/interpreter/bytecodes.h" |
| 13 #include "src/interpreter/interpreter-assembler.h" |
| 14 #include "src/runtime/runtime.h" |
| 15 |
| 16 namespace v8 { |
| 17 namespace internal { |
| 18 |
| 19 namespace compiler { |
| 20 class Node; |
| 21 } // namespace compiler |
| 22 |
| 23 #define INTRINSICS_LIST(V) \ |
| 24 V(IsJSReceiver, is_js_receiver) \ |
| 25 V(IsArray, is_array) |
| 26 |
| 27 namespace interpreter { |
| 28 |
| 29 class IntrinsicsHelper { |
| 30 public: |
| 31 explicit IntrinsicsHelper(InterpreterAssembler* assembler); |
| 32 |
| 33 compiler::Node* DispatchIntrinsic(compiler::Node* function_id, |
| 34 compiler::Node* context, |
| 35 compiler::Node* first_arg_reg, |
| 36 compiler::Node* arg_count); |
| 37 |
| 38 static bool IsSupported(Runtime::FunctionId function_id); |
| 39 |
| 40 private: |
| 41 InterpreterAssembler* assembler_; |
| 42 |
| 43 #define DECLARE_INTRINSIC_HELPER(name, lower_case) \ |
| 44 compiler::Node* name(compiler::Node* input); |
| 45 INTRINSICS_LIST(DECLARE_INTRINSIC_HELPER) |
| 46 #undef DECLARE_INTRINSIC_HELPER |
| 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(IntrinsicsHelper); |
| 49 }; |
| 50 |
| 51 } // namespace interpreter |
| 52 } // namespace internal |
| 53 } // namespace v8 |
| 54 |
| 55 #endif |
OLD | NEW |