chromium/v8/src/interpreter/bytecode-operands.cc

// Copyright 2016 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/interpreter/bytecode-operands.h"

#include <iomanip>

namespace v8 {
namespace internal {
namespace interpreter {

namespace {

const char* ImplicitRegisterUseToString(
    ImplicitRegisterUse implicit_register_use) {}

const char* OperandTypeToString(OperandType operand_type) {}

const char* OperandScaleToString(OperandScale operand_scale) {}

const char* OperandSizeToString(OperandSize operand_size) {}

}  // namespace

std::ostream& operator<<(std::ostream& os, const ImplicitRegisterUse& use) {}

std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size) {}

std::ostream& operator<<(std::ostream& os, const OperandScale& operand_scale) {}

std::ostream& operator<<(std::ostream& os, const OperandType& operand_type) {}

}  // namespace interpreter
}  // namespace internal
}  // namespace v8