Index: src/interpreter/interpreter-intrinsics.h |
diff --git a/src/interpreter/interpreter-intrinsics.h b/src/interpreter/interpreter-intrinsics.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ae556a54b783bd503a9552f77b5c12b9314a4886 |
--- /dev/null |
+++ b/src/interpreter/interpreter-intrinsics.h |
@@ -0,0 +1,55 @@ |
+// Copyright 2015 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef V8_INTERPRETER_INTERPRETER_INTRINSICS_H_ |
+#define V8_INTERPRETER_INTERPRETER_INTRINSICS_H_ |
+ |
+#include "src/allocation.h" |
+#include "src/base/smart-pointers.h" |
+#include "src/builtins.h" |
+#include "src/frames.h" |
+#include "src/interpreter/bytecodes.h" |
+#include "src/interpreter/interpreter-assembler.h" |
+#include "src/runtime/runtime.h" |
+ |
+namespace v8 { |
+namespace internal { |
+ |
+namespace compiler { |
+class Node; |
+} // namespace compiler |
+ |
+#define INTRINSICS_LIST(V) \ |
+ V(IsJSReceiver, is_js_receiver) \ |
+ V(IsArray, is_array) |
+ |
+namespace interpreter { |
+ |
+class IntrinsicsHelper { |
+ public: |
+ explicit IntrinsicsHelper(InterpreterAssembler* assembler); |
+ |
+ compiler::Node* DispatchIntrinsic(compiler::Node* function_id, |
+ compiler::Node* context, |
+ compiler::Node* first_arg_reg, |
+ compiler::Node* arg_count); |
+ |
+ static bool IsSupported(Runtime::FunctionId function_id); |
+ |
+ private: |
+ InterpreterAssembler* assembler_; |
+ |
+#define DECLARE_INTRINSIC_HELPER(name, lower_case) \ |
+ compiler::Node* name(compiler::Node* input); |
+ INTRINSICS_LIST(DECLARE_INTRINSIC_HELPER) |
+#undef DECLARE_INTRINSIC_HELPER |
+ |
+ DISALLOW_COPY_AND_ASSIGN(IntrinsicsHelper); |
+}; |
+ |
+} // namespace interpreter |
+} // namespace internal |
+} // namespace v8 |
+ |
+#endif |