#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 {
bool OperatorProperties::HasContextInput(const Operator* op) { … }
bool OperatorProperties::NeedsExactContext(const Operator* op) { … }
bool OperatorProperties::HasFrameStateInput(const Operator* op) { … }
int OperatorProperties::GetTotalInputCount(const Operator* op) { … }
bool OperatorProperties::IsBasicBlockBegin(const Operator* op) { … }
}
}
}