| 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_INSTRUCTION_SELECTOR_H_ | 5 #ifndef V8_COMPILER_INSTRUCTION_SELECTOR_H_ |
| 6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_ | 6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 | 9 |
| 10 #include "src/compiler/common-operator.h" | 10 #include "src/compiler/common-operator.h" |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 | 162 |
| 163 void VisitInt32AddWithOverflow(Node* node, FlagsContinuation* cont); | 163 void VisitInt32AddWithOverflow(Node* node, FlagsContinuation* cont); |
| 164 void VisitInt32SubWithOverflow(Node* node, FlagsContinuation* cont); | 164 void VisitInt32SubWithOverflow(Node* node, FlagsContinuation* cont); |
| 165 | 165 |
| 166 void VisitWord32Test(Node* node, FlagsContinuation* cont); | 166 void VisitWord32Test(Node* node, FlagsContinuation* cont); |
| 167 void VisitWord64Test(Node* node, FlagsContinuation* cont); | 167 void VisitWord64Test(Node* node, FlagsContinuation* cont); |
| 168 void VisitWord32Compare(Node* node, FlagsContinuation* cont); | 168 void VisitWord32Compare(Node* node, FlagsContinuation* cont); |
| 169 void VisitWord64Compare(Node* node, FlagsContinuation* cont); | 169 void VisitWord64Compare(Node* node, FlagsContinuation* cont); |
| 170 void VisitFloat64Compare(Node* node, FlagsContinuation* cont); | 170 void VisitFloat64Compare(Node* node, FlagsContinuation* cont); |
| 171 | 171 |
| 172 void VisitFinish(Node* node); |
| 172 void VisitParameter(Node* node); | 173 void VisitParameter(Node* node); |
| 173 void VisitPhi(Node* node); | 174 void VisitPhi(Node* node); |
| 174 void VisitProjection(Node* node); | 175 void VisitProjection(Node* node); |
| 175 void VisitConstant(Node* node); | 176 void VisitConstant(Node* node); |
| 176 void VisitCall(Node* call, BasicBlock* continuation, | 177 void VisitCall(Node* call, BasicBlock* continuation, |
| 177 BasicBlock* deoptimization); | 178 BasicBlock* deoptimization); |
| 178 void VisitGoto(BasicBlock* target); | 179 void VisitGoto(BasicBlock* target); |
| 179 void VisitBranch(Node* input, BasicBlock* tbranch, BasicBlock* fbranch); | 180 void VisitBranch(Node* input, BasicBlock* tbranch, BasicBlock* fbranch); |
| 180 void VisitReturn(Node* value); | 181 void VisitReturn(Node* value); |
| 181 void VisitThrow(Node* value); | 182 void VisitThrow(Node* value); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 203 Instructions instructions_; | 204 Instructions instructions_; |
| 204 BoolVector defined_; | 205 BoolVector defined_; |
| 205 BoolVector used_; | 206 BoolVector used_; |
| 206 }; | 207 }; |
| 207 | 208 |
| 208 } // namespace compiler | 209 } // namespace compiler |
| 209 } // namespace internal | 210 } // namespace internal |
| 210 } // namespace v8 | 211 } // namespace v8 |
| 211 | 212 |
| 212 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_ | 213 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_ |
| OLD | NEW |