1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "src/compiler/instruction-scheduler.h"
6 
7 namespace v8 {
8 namespace internal {
9 namespace compiler {
10 
SchedulerSupported()11 bool InstructionScheduler::SchedulerSupported() { return false; }
12 
13 
GetTargetInstructionFlags(const Instruction * instr) const14 int InstructionScheduler::GetTargetInstructionFlags(
15     const Instruction* instr) const {
16   UNIMPLEMENTED();
17 }
18 
19 
GetInstructionLatency(const Instruction * instr)20 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
21   UNIMPLEMENTED();
22 }
23 
24 }  // namespace compiler
25 }  // namespace internal
26 }  // namespace v8
27