| 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 #include "src/compiler/instruction-selector.h" | 5 #include "src/compiler/instruction-selector.h" |
| 6 | 6 |
| 7 #include "src/compiler/instruction-selector-impl.h" | 7 #include "src/compiler/instruction-selector-impl.h" |
| 8 #include "src/compiler/node-matchers.h" | 8 #include "src/compiler/node-matchers.h" |
| 9 #include "src/compiler/node-properties-inl.h" | 9 #include "src/compiler/node-properties-inl.h" |
| 10 #include "src/compiler/pipeline.h" | 10 #include "src/compiler/pipeline.h" |
| (...skipping 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1013 #if !V8_TURBOFAN_BACKEND | 1013 #if !V8_TURBOFAN_BACKEND |
| 1014 | 1014 |
| 1015 #define DECLARE_UNIMPLEMENTED_SELECTOR(x) \ | 1015 #define DECLARE_UNIMPLEMENTED_SELECTOR(x) \ |
| 1016 void InstructionSelector::Visit##x(Node* node) { UNIMPLEMENTED(); } | 1016 void InstructionSelector::Visit##x(Node* node) { UNIMPLEMENTED(); } |
| 1017 MACHINE_OP_LIST(DECLARE_UNIMPLEMENTED_SELECTOR) | 1017 MACHINE_OP_LIST(DECLARE_UNIMPLEMENTED_SELECTOR) |
| 1018 #undef DECLARE_UNIMPLEMENTED_SELECTOR | 1018 #undef DECLARE_UNIMPLEMENTED_SELECTOR |
| 1019 | 1019 |
| 1020 | 1020 |
| 1021 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); } | 1021 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); } |
| 1022 | 1022 |
| 1023 void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch, |
| 1024 BasicBlock* fbranch) { |
| 1025 UNIMPLEMENTED(); |
| 1026 } |
| 1027 |
| 1023 #endif // !V8_TURBOFAN_BACKEND | 1028 #endif // !V8_TURBOFAN_BACKEND |
| 1024 | 1029 |
| 1025 } // namespace compiler | 1030 } // namespace compiler |
| 1026 } // namespace internal | 1031 } // namespace internal |
| 1027 } // namespace v8 | 1032 } // namespace v8 |
| OLD | NEW |