2017-10-19 23:37:38 +02:00
|
|
|
//===-- RISCVMCInstLower.cpp - Convert RISCV MachineInstr to an MCInst ------=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains code to lower RISCV MachineInstrs to their corresponding
|
|
|
|
// MCInst records.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "RISCV.h"
|
2017-11-08 14:24:21 +01:00
|
|
|
#include "MCTargetDesc/RISCVMCExpr.h"
|
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2017-10-19 23:37:38 +02:00
|
|
|
#include "llvm/CodeGen/MachineBasicBlock.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2017-11-08 14:24:21 +01:00
|
|
|
static MCOperand lowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym,
|
|
|
|
const AsmPrinter &AP) {
|
|
|
|
MCContext &Ctx = AP.OutContext;
|
|
|
|
RISCVMCExpr::VariantKind Kind;
|
|
|
|
|
|
|
|
switch (MO.getTargetFlags()) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown target flag on GV operand");
|
|
|
|
case RISCVII::MO_None:
|
|
|
|
Kind = RISCVMCExpr::VK_RISCV_None;
|
|
|
|
break;
|
|
|
|
case RISCVII::MO_LO:
|
|
|
|
Kind = RISCVMCExpr::VK_RISCV_LO;
|
|
|
|
break;
|
|
|
|
case RISCVII::MO_HI:
|
|
|
|
Kind = RISCVMCExpr::VK_RISCV_HI;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MCExpr *ME =
|
|
|
|
MCSymbolRefExpr::create(Sym, MCSymbolRefExpr::VK_None, Ctx);
|
|
|
|
|
|
|
|
if (!MO.isJTI() && MO.getOffset())
|
|
|
|
ME = MCBinaryExpr::createAdd(
|
|
|
|
ME, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
|
|
|
|
|
|
|
|
ME = RISCVMCExpr::create(ME, Kind, Ctx);
|
|
|
|
return MCOperand::createExpr(ME);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool llvm::LowerRISCVMachineOperandToMCOperand(const MachineOperand &MO,
|
|
|
|
MCOperand &MCOp,
|
|
|
|
const AsmPrinter &AP) {
|
|
|
|
switch (MO.getType()) {
|
|
|
|
default:
|
|
|
|
report_fatal_error("LowerRISCVMachineInstrToMCInst: unknown operand type");
|
|
|
|
case MachineOperand::MO_Register:
|
|
|
|
// Ignore all implicit register operands.
|
|
|
|
if (MO.isImplicit())
|
|
|
|
return false;
|
|
|
|
MCOp = MCOperand::createReg(MO.getReg());
|
|
|
|
break;
|
2017-11-08 14:41:21 +01:00
|
|
|
case MachineOperand::MO_RegisterMask:
|
|
|
|
// Regmasks are like implicit defs.
|
|
|
|
return false;
|
2017-11-08 14:24:21 +01:00
|
|
|
case MachineOperand::MO_Immediate:
|
|
|
|
MCOp = MCOperand::createImm(MO.getImm());
|
|
|
|
break;
|
2017-11-08 14:31:40 +01:00
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
|
|
|
MCOp = MCOperand::createExpr(
|
|
|
|
MCSymbolRefExpr::create(MO.getMBB()->getSymbol(), AP.OutContext));
|
|
|
|
break;
|
2017-11-08 14:24:21 +01:00
|
|
|
case MachineOperand::MO_GlobalAddress:
|
|
|
|
MCOp = lowerSymbolOperand(MO, AP.getSymbol(MO.getGlobal()), AP);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void llvm::LowerRISCVMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
|
|
|
|
const AsmPrinter &AP) {
|
2017-10-19 23:37:38 +02:00
|
|
|
OutMI.setOpcode(MI->getOpcode());
|
|
|
|
|
|
|
|
for (const MachineOperand &MO : MI->operands()) {
|
|
|
|
MCOperand MCOp;
|
2017-11-08 14:24:21 +01:00
|
|
|
if (LowerRISCVMachineOperandToMCOperand(MO, MCOp, AP))
|
|
|
|
OutMI.addOperand(MCOp);
|
2017-10-19 23:37:38 +02:00
|
|
|
}
|
|
|
|
}
|