OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_COMPILER_JS_GENERIC_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_GENERIC_LOWERING_H_ |
6 #define V8_COMPILER_JS_GENERIC_LOWERING_H_ | 6 #define V8_COMPILER_JS_GENERIC_LOWERING_H_ |
7 | 7 |
8 #include "src/code-factory.h" | 8 #include "src/code-factory.h" |
9 #include "src/compiler/graph-reducer.h" | 9 #include "src/compiler/graph-reducer.h" |
10 #include "src/compiler/linkage.h" | 10 #include "src/compiler/linkage.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 Reduction Reduce(Node* node) final; | 30 Reduction Reduce(Node* node) final; |
31 | 31 |
32 protected: | 32 protected: |
33 #define DECLARE_LOWER(x) void Lower##x(Node* node); | 33 #define DECLARE_LOWER(x) void Lower##x(Node* node); |
34 // Dispatched depending on opcode. | 34 // Dispatched depending on opcode. |
35 JS_OP_LIST(DECLARE_LOWER) | 35 JS_OP_LIST(DECLARE_LOWER) |
36 #undef DECLARE_LOWER | 36 #undef DECLARE_LOWER |
37 | 37 |
38 // Helpers to replace existing nodes with a generic call. | 38 // Helpers to replace existing nodes with a generic call. |
39 void ReplaceWithStubCall(Node* node, Callable c, CallDescriptor::Flags flags); | 39 void ReplaceWithStubCall(Node* node, Callable c, CallDescriptor::Flags flags); |
| 40 void ReplaceWithStubCall(Node* node, Callable c, CallDescriptor::Flags flags, |
| 41 Operator::Properties properties); |
40 void ReplaceWithRuntimeCall(Node* node, Runtime::FunctionId f, int args = -1); | 42 void ReplaceWithRuntimeCall(Node* node, Runtime::FunctionId f, int args = -1); |
41 | 43 |
42 Zone* zone() const; | 44 Zone* zone() const; |
43 Isolate* isolate() const; | 45 Isolate* isolate() const; |
44 JSGraph* jsgraph() const { return jsgraph_; } | 46 JSGraph* jsgraph() const { return jsgraph_; } |
45 Graph* graph() const; | 47 Graph* graph() const; |
46 CommonOperatorBuilder* common() const; | 48 CommonOperatorBuilder* common() const; |
47 MachineOperatorBuilder* machine() const; | 49 MachineOperatorBuilder* machine() const; |
48 | 50 |
49 private: | 51 private: |
50 JSGraph* const jsgraph_; | 52 JSGraph* const jsgraph_; |
51 }; | 53 }; |
52 | 54 |
53 } // namespace compiler | 55 } // namespace compiler |
54 } // namespace internal | 56 } // namespace internal |
55 } // namespace v8 | 57 } // namespace v8 |
56 | 58 |
57 #endif // V8_COMPILER_JS_GENERIC_LOWERING_H_ | 59 #endif // V8_COMPILER_JS_GENERIC_LOWERING_H_ |
OLD | NEW |