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_SIMPLIFIED_LOWERING_H_ | 5 #ifndef V8_COMPILER_SIMPLIFIED_LOWERING_H_ |
6 #define V8_COMPILER_SIMPLIFIED_LOWERING_H_ | 6 #define V8_COMPILER_SIMPLIFIED_LOWERING_H_ |
7 | 7 |
8 #include "src/compiler/js-graph.h" | 8 #include "src/compiler/js-graph.h" |
9 #include "src/compiler/machine-operator.h" | 9 #include "src/compiler/machine-operator.h" |
10 #include "src/compiler/node.h" | 10 #include "src/compiler/node.h" |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 Zone* const zone_; | 48 Zone* const zone_; |
49 TypeCache const& type_cache_; | 49 TypeCache const& type_cache_; |
50 | 50 |
51 // TODO(danno): SimplifiedLowering shouldn't know anything about the source | 51 // TODO(danno): SimplifiedLowering shouldn't know anything about the source |
52 // positions table, but must for now since there currently is no other way to | 52 // positions table, but must for now since there currently is no other way to |
53 // pass down source position information to nodes created during | 53 // pass down source position information to nodes created during |
54 // lowering. Once this phase becomes a vanilla reducer, it should get source | 54 // lowering. Once this phase becomes a vanilla reducer, it should get source |
55 // position information via the SourcePositionWrapper like all other reducers. | 55 // position information via the SourcePositionWrapper like all other reducers. |
56 SourcePositionTable* source_positions_; | 56 SourcePositionTable* source_positions_; |
57 | 57 |
| 58 Node* Float64Floor(Node* const node); |
58 Node* Int32Div(Node* const node); | 59 Node* Int32Div(Node* const node); |
59 Node* Int32Mod(Node* const node); | 60 Node* Int32Mod(Node* const node); |
60 Node* Uint32Div(Node* const node); | 61 Node* Uint32Div(Node* const node); |
61 Node* Uint32Mod(Node* const node); | 62 Node* Uint32Mod(Node* const node); |
62 | 63 |
63 friend class RepresentationSelector; | 64 friend class RepresentationSelector; |
64 | 65 |
65 Isolate* isolate() { return jsgraph_->isolate(); } | 66 Isolate* isolate() { return jsgraph_->isolate(); } |
66 Zone* zone() { return jsgraph_->zone(); } | 67 Zone* zone() { return jsgraph_->zone(); } |
67 JSGraph* jsgraph() { return jsgraph_; } | 68 JSGraph* jsgraph() { return jsgraph_; } |
68 Graph* graph() { return jsgraph()->graph(); } | 69 Graph* graph() { return jsgraph()->graph(); } |
69 CommonOperatorBuilder* common() { return jsgraph()->common(); } | 70 CommonOperatorBuilder* common() { return jsgraph()->common(); } |
70 MachineOperatorBuilder* machine() { return jsgraph()->machine(); } | 71 MachineOperatorBuilder* machine() { return jsgraph()->machine(); } |
71 }; | 72 }; |
72 | 73 |
73 } // namespace compiler | 74 } // namespace compiler |
74 } // namespace internal | 75 } // namespace internal |
75 } // namespace v8 | 76 } // namespace v8 |
76 | 77 |
77 #endif // V8_COMPILER_SIMPLIFIED_LOWERING_H_ | 78 #endif // V8_COMPILER_SIMPLIFIED_LOWERING_H_ |
OLD | NEW |