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 19 matching lines...) Expand all Loading... |
30 public: | 30 public: |
31 JSTypedLowering(Editor* editor, JSGraph* jsgraph, Zone* zone); | 31 JSTypedLowering(Editor* editor, JSGraph* jsgraph, Zone* zone); |
32 ~JSTypedLowering() final {} | 32 ~JSTypedLowering() final {} |
33 | 33 |
34 Reduction Reduce(Node* node) final; | 34 Reduction Reduce(Node* node) final; |
35 | 35 |
36 private: | 36 private: |
37 friend class JSBinopReduction; | 37 friend class JSBinopReduction; |
38 | 38 |
39 Reduction ReduceJSAdd(Node* node); | 39 Reduction ReduceJSAdd(Node* node); |
| 40 Reduction ReduceJSModulus(Node* node); |
40 Reduction ReduceJSBitwiseOr(Node* node); | 41 Reduction ReduceJSBitwiseOr(Node* node); |
41 Reduction ReduceJSMultiply(Node* node); | 42 Reduction ReduceJSMultiply(Node* node); |
42 Reduction ReduceJSComparison(Node* node); | 43 Reduction ReduceJSComparison(Node* node); |
43 Reduction ReduceJSLoadNamed(Node* node); | 44 Reduction ReduceJSLoadNamed(Node* node); |
44 Reduction ReduceJSLoadProperty(Node* node); | 45 Reduction ReduceJSLoadProperty(Node* node); |
45 Reduction ReduceJSStoreProperty(Node* node); | 46 Reduction ReduceJSStoreProperty(Node* node); |
46 Reduction ReduceJSLoadContext(Node* node); | 47 Reduction ReduceJSLoadContext(Node* node); |
47 Reduction ReduceJSStoreContext(Node* node); | 48 Reduction ReduceJSStoreContext(Node* node); |
48 Reduction ReduceJSLoadDynamicGlobal(Node* node); | 49 Reduction ReduceJSLoadDynamicGlobal(Node* node); |
49 Reduction ReduceJSEqual(Node* node, bool invert); | 50 Reduction ReduceJSEqual(Node* node, bool invert); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 Type* one_range_; | 89 Type* one_range_; |
89 Type* zero_thirtyone_range_; | 90 Type* zero_thirtyone_range_; |
90 Type* shifted_int32_ranges_[4]; | 91 Type* shifted_int32_ranges_[4]; |
91 }; | 92 }; |
92 | 93 |
93 } // namespace compiler | 94 } // namespace compiler |
94 } // namespace internal | 95 } // namespace internal |
95 } // namespace v8 | 96 } // namespace v8 |
96 | 97 |
97 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ | 98 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ |
OLD | NEW |