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_TYPED_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_ |
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ | 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ |
7 | 7 |
8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
9 #include "src/compiler/opcodes.h" | 9 #include "src/compiler/opcodes.h" |
10 #include "src/compiler/simplified-operator.h" | 10 #include "src/compiler/simplified-operator.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 Reduction ReduceJSLoadDynamicGlobal(Node* node); | 50 Reduction ReduceJSLoadDynamicGlobal(Node* node); |
51 Reduction ReduceJSLoadDynamicContext(Node* node); | 51 Reduction ReduceJSLoadDynamicContext(Node* node); |
52 Reduction ReduceJSEqual(Node* node, bool invert); | 52 Reduction ReduceJSEqual(Node* node, bool invert); |
53 Reduction ReduceJSStrictEqual(Node* node, bool invert); | 53 Reduction ReduceJSStrictEqual(Node* node, bool invert); |
54 Reduction ReduceJSUnaryNot(Node* node); | 54 Reduction ReduceJSUnaryNot(Node* node); |
55 Reduction ReduceJSToBoolean(Node* node); | 55 Reduction ReduceJSToBoolean(Node* node); |
56 Reduction ReduceJSToNumberInput(Node* input); | 56 Reduction ReduceJSToNumberInput(Node* input); |
57 Reduction ReduceJSToNumber(Node* node); | 57 Reduction ReduceJSToNumber(Node* node); |
58 Reduction ReduceJSToStringInput(Node* input); | 58 Reduction ReduceJSToStringInput(Node* input); |
59 Reduction ReduceJSToString(Node* node); | 59 Reduction ReduceJSToString(Node* node); |
| 60 Reduction ReduceJSCreateArguments(Node* node); |
60 Reduction ReduceJSCreateClosure(Node* node); | 61 Reduction ReduceJSCreateClosure(Node* node); |
61 Reduction ReduceJSCreateLiteralArray(Node* node); | 62 Reduction ReduceJSCreateLiteralArray(Node* node); |
62 Reduction ReduceJSCreateLiteralObject(Node* node); | 63 Reduction ReduceJSCreateLiteralObject(Node* node); |
63 Reduction ReduceJSCreateWithContext(Node* node); | 64 Reduction ReduceJSCreateWithContext(Node* node); |
64 Reduction ReduceJSCreateBlockContext(Node* node); | 65 Reduction ReduceJSCreateBlockContext(Node* node); |
65 Reduction ReduceJSCallFunction(Node* node); | 66 Reduction ReduceJSCallFunction(Node* node); |
66 Reduction ReduceJSForInDone(Node* node); | 67 Reduction ReduceJSForInDone(Node* node); |
67 Reduction ReduceJSForInNext(Node* node); | 68 Reduction ReduceJSForInNext(Node* node); |
68 Reduction ReduceJSForInPrepare(Node* node); | 69 Reduction ReduceJSForInPrepare(Node* node); |
69 Reduction ReduceJSForInStep(Node* node); | 70 Reduction ReduceJSForInStep(Node* node); |
(...skipping 19 matching lines...) Expand all Loading... |
89 JSGraph* jsgraph_; | 90 JSGraph* jsgraph_; |
90 SimplifiedOperatorBuilder simplified_; | 91 SimplifiedOperatorBuilder simplified_; |
91 Type* shifted_int32_ranges_[4]; | 92 Type* shifted_int32_ranges_[4]; |
92 }; | 93 }; |
93 | 94 |
94 } // namespace compiler | 95 } // namespace compiler |
95 } // namespace internal | 96 } // namespace internal |
96 } // namespace v8 | 97 } // namespace v8 |
97 | 98 |
98 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ | 99 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ |
OLD | NEW |