llvm/llvm/lib/Target/AMDGPU/R600MCInstLower.cpp

//===- R600MCInstLower.cpp - Lower R600 MachineInstr to an MCInst ---------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
/// \file
/// Code to lower R600 MachineInstrs to their corresponding MCInst.
//
//===----------------------------------------------------------------------===//
//

#include "AMDGPUMCInstLower.h"
#include "MCTargetDesc/R600MCTargetDesc.h"
#include "R600AsmPrinter.h"
#include "R600Subtarget.h"
#include "llvm/CodeGen/MachineOperand.h"
#include "llvm/MC/MCContext.h"
#include "llvm/MC/MCExpr.h"

namespace {
class R600MCInstLower : public AMDGPUMCInstLower {};
} // namespace

R600MCInstLower::R600MCInstLower(MCContext &Ctx, const R600Subtarget &ST,
                                 const AsmPrinter &AP)
    :{}

void R600MCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const {}

void R600AsmPrinter::emitInstruction(const MachineInstr *MI) {}

const MCExpr *R600AsmPrinter::lowerConstant(const Constant *CV) {}