// Copyright 2013 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_COMPILER_LINEAR_SCHEDULER_H_ #define V8_COMPILER_LINEAR_SCHEDULER_H_ #include "src/base/flags.h" #include "src/common/globals.h" #include "src/compiler/node.h" #include "src/compiler/opcodes.h" #include "src/compiler/zone-stats.h" #include "src/zone/zone-containers.h" namespace v8 { namespace internal { namespace compiler { // A simple, linear-time scheduler to check whether two nodes are in a same // basic block without actually building basic block. class V8_EXPORT_PRIVATE LinearScheduler { … }; } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_COMPILER_LINEAR_SCHEDULER_H_