| 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 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1035 | 1035 |
| 1036 | 1036 |
| 1037 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); } | 1037 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); } |
| 1038 | 1038 |
| 1039 | 1039 |
| 1040 void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch, | 1040 void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch, |
| 1041 BasicBlock* fbranch) { | 1041 BasicBlock* fbranch) { |
| 1042 UNIMPLEMENTED(); | 1042 UNIMPLEMENTED(); |
| 1043 } | 1043 } |
| 1044 | 1044 |
| 1045 |
| 1046 // static |
| 1047 MachineOperatorBuilder::Flags |
| 1048 InstructionSelector::SupportedMachineOperatorFlags() { |
| 1049 return MachineOperatorBuilder::Flag::kNoFlags; |
| 1050 } |
| 1051 |
| 1045 #endif // !V8_TURBOFAN_BACKEND | 1052 #endif // !V8_TURBOFAN_BACKEND |
| 1046 | 1053 |
| 1047 } // namespace compiler | 1054 } // namespace compiler |
| 1048 } // namespace internal | 1055 } // namespace internal |
| 1049 } // namespace v8 | 1056 } // namespace v8 |
| OLD | NEW |