chromium/v8/src/compiler/machine-graph.cc

// Copyright 2018 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/machine-graph.h"

#include "src/codegen/external-reference.h"

namespace v8 {
namespace internal {
namespace compiler {

Node* MachineGraph::UniqueInt32Constant(int32_t value) {}

Node* MachineGraph::UniqueInt64Constant(int64_t value) {}

Node* MachineGraph::Int32Constant(int32_t value) {}

Node* MachineGraph::Int64Constant(int64_t value) {}

Node* MachineGraph::IntPtrConstant(intptr_t value) {}

Node* MachineGraph::UintPtrConstant(uintptr_t value) {}

Node* MachineGraph::UniqueIntPtrConstant(intptr_t value) {}

Node* MachineGraph::TaggedIndexConstant(intptr_t value) {}

Node* MachineGraph::RelocatableInt32Constant(int32_t value,
                                             RelocInfo::Mode rmode) {}

Node* MachineGraph::RelocatableInt64Constant(int64_t value,
                                             RelocInfo::Mode rmode) {}

Node* MachineGraph::RelocatableIntPtrConstant(intptr_t value,
                                              RelocInfo::Mode rmode) {}

Node* MachineGraph::RelocatableWasmBuiltinCallTarget(Builtin builtin) {}

Node* MachineGraph::Float32Constant(float value) {}

Node* MachineGraph::Float64Constant(double value) {}

Node* MachineGraph::PointerConstant(intptr_t value) {}

Node* MachineGraph::ExternalConstant(ExternalReference reference) {}

Node* MachineGraph::ExternalConstant(Runtime::FunctionId function_id) {}

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