blob: af86a87ad78690241c2a6d4d0023f58547cd6456 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// 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
7namespace v8 {
8namespace internal {
9namespace compiler {
10
11bool InstructionScheduler::SchedulerSupported() { return false; }
12
13
14int InstructionScheduler::GetTargetInstructionFlags(
15 const Instruction* instr) const {
16 UNIMPLEMENTED();
17}
18
19
20int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
21 UNIMPLEMENTED();
22}
23
24} // namespace compiler
25} // namespace internal
26} // namespace v8