chromium/v8/src/compiler/operator-properties.cc

// Copyright 2014 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.

#include "src/compiler/operator-properties.h"

#include "src/compiler/js-operator.h"
#include "src/compiler/linkage.h"
#include "src/compiler/opcodes.h"
#include "src/runtime/runtime.h"

namespace v8 {
namespace internal {
namespace compiler {

// static
bool OperatorProperties::HasContextInput(const Operator* op) {}

// static
bool OperatorProperties::NeedsExactContext(const Operator* op) {}

// static
bool OperatorProperties::HasFrameStateInput(const Operator* op) {}


// static
int OperatorProperties::GetTotalInputCount(const Operator* op) {}


// static
bool OperatorProperties::IsBasicBlockBegin(const Operator* op) {}

}  // namespace compiler
}  // namespace internal
}  // namespace v8