opnsense-src/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp

162 lines
5.4 KiB
C++
Raw Normal View History

2009-10-14 13:57:32 -04:00
//===-- MSP430AsmPrinter.cpp - MSP430 LLVM assembly writer ----------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains a printer that converts from our internal representation
// of machine-dependent LLVM code to the MSP430 assembly language.
//
//===----------------------------------------------------------------------===//
#include "MSP430.h"
#include "InstPrinter/MSP430InstPrinter.h"
2009-10-14 13:57:32 -04:00
#include "MSP430InstrInfo.h"
2009-10-23 10:19:52 -04:00
#include "MSP430MCInstLower.h"
2009-10-14 13:57:32 -04:00
#include "MSP430TargetMachine.h"
#include "llvm/CodeGen/AsmPrinter.h"
#include "llvm/CodeGen/MachineConstantPool.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
2009-10-14 13:57:32 -04:00
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/CodeGen/MachineModuleInfo.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Mangler.h"
#include "llvm/IR/Module.h"
#include "llvm/MC/MCAsmInfo.h"
2009-10-23 10:19:52 -04:00
#include "llvm/MC/MCInst.h"
2009-10-14 13:57:32 -04:00
#include "llvm/MC/MCStreamer.h"
#include "llvm/MC/MCSymbol.h"
#include "llvm/Support/TargetRegistry.h"
2010-04-06 11:52:58 -04:00
#include "llvm/Support/raw_ostream.h"
2009-10-14 13:57:32 -04:00
using namespace llvm;
#define DEBUG_TYPE "asm-printer"
2009-10-14 13:57:32 -04:00
namespace {
2009-11-04 09:58:56 -05:00
class MSP430AsmPrinter : public AsmPrinter {
2009-10-14 13:57:32 -04:00
public:
MSP430AsmPrinter(TargetMachine &TM, std::unique_ptr<MCStreamer> Streamer)
: AsmPrinter(TM, std::move(Streamer)) {}
2009-10-14 13:57:32 -04:00
const char *getPassName() const override {
2009-10-14 13:57:32 -04:00
return "MSP430 Assembly Printer";
}
void printOperand(const MachineInstr *MI, int OpNum,
raw_ostream &O, const char* Modifier = nullptr);
2009-10-14 13:57:32 -04:00
void printSrcMemOperand(const MachineInstr *MI, int OpNum,
2010-04-06 11:52:58 -04:00
raw_ostream &O);
2009-10-14 13:57:32 -04:00
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
2010-04-06 11:52:58 -04:00
unsigned AsmVariant, const char *ExtraCode,
raw_ostream &O) override;
2009-10-14 13:57:32 -04:00
bool PrintAsmMemoryOperand(const MachineInstr *MI,
unsigned OpNo, unsigned AsmVariant,
const char *ExtraCode, raw_ostream &O) override;
void EmitInstruction(const MachineInstr *MI) override;
2009-10-14 13:57:32 -04:00
};
} // end of anonymous namespace
void MSP430AsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
2010-04-06 11:52:58 -04:00
raw_ostream &O, const char *Modifier) {
2009-10-14 13:57:32 -04:00
const MachineOperand &MO = MI->getOperand(OpNum);
switch (MO.getType()) {
default: llvm_unreachable("Not implemented yet!");
2009-10-14 13:57:32 -04:00
case MachineOperand::MO_Register:
2009-11-18 09:58:34 -05:00
O << MSP430InstPrinter::getRegisterName(MO.getReg());
2009-10-14 13:57:32 -04:00
return;
case MachineOperand::MO_Immediate:
if (!Modifier || strcmp(Modifier, "nohash"))
O << '#';
O << MO.getImm();
return;
case MachineOperand::MO_MachineBasicBlock:
MO.getMBB()->getSymbol()->print(O, MAI);
2009-10-14 13:57:32 -04:00
return;
case MachineOperand::MO_GlobalAddress: {
bool isMemOp = Modifier && !strcmp(Modifier, "mem");
uint64_t Offset = MO.getOffset();
2010-03-10 12:45:15 -05:00
// If the global address expression is a part of displacement field with a
// register base, we should not emit any prefix symbol here, e.g.
// mov.w &foo, r1
// vs
// mov.w glb(r1), r2
// Otherwise (!) msp430-as will silently miscompile the output :(
if (!Modifier || strcmp(Modifier, "nohash"))
O << (isMemOp ? '&' : '#');
2009-10-14 13:57:32 -04:00
if (Offset)
O << '(' << Offset << '+';
getSymbol(MO.getGlobal())->print(O, MAI);
2010-03-10 12:45:15 -05:00
2009-10-14 13:57:32 -04:00
if (Offset)
O << ')';
return;
}
}
}
void MSP430AsmPrinter::printSrcMemOperand(const MachineInstr *MI, int OpNum,
2010-04-06 11:52:58 -04:00
raw_ostream &O) {
2009-10-14 13:57:32 -04:00
const MachineOperand &Base = MI->getOperand(OpNum);
const MachineOperand &Disp = MI->getOperand(OpNum+1);
2009-11-18 09:58:34 -05:00
// Print displacement first
2010-03-10 12:45:15 -05:00
// Imm here is in fact global address - print extra modifier.
if (Disp.isImm() && !Base.getReg())
O << '&';
2010-04-06 11:52:58 -04:00
printOperand(MI, OpNum+1, O, "nohash");
2009-11-18 09:58:34 -05:00
// Print register base field
if (Base.getReg()) {
O << '(';
2010-04-06 11:52:58 -04:00
printOperand(MI, OpNum, O);
2009-11-18 09:58:34 -05:00
O << ')';
}
2009-10-14 13:57:32 -04:00
}
/// PrintAsmOperand - Print out an operand for an inline asm expression.
///
bool MSP430AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
unsigned AsmVariant,
2010-04-06 11:52:58 -04:00
const char *ExtraCode, raw_ostream &O) {
2009-10-14 13:57:32 -04:00
// Does this asm operand have a single letter operand modifier?
if (ExtraCode && ExtraCode[0])
return true; // Unknown modifier.
2010-04-06 11:52:58 -04:00
printOperand(MI, OpNo, O);
2009-10-14 13:57:32 -04:00
return false;
}
bool MSP430AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
unsigned OpNo, unsigned AsmVariant,
2010-04-06 11:52:58 -04:00
const char *ExtraCode,
raw_ostream &O) {
2009-10-14 13:57:32 -04:00
if (ExtraCode && ExtraCode[0]) {
return true; // Unknown modifier.
}
2010-04-06 11:52:58 -04:00
printSrcMemOperand(MI, OpNo, O);
2009-10-14 13:57:32 -04:00
return false;
}
2009-10-23 10:19:52 -04:00
//===----------------------------------------------------------------------===//
2010-02-16 04:30:23 -05:00
void MSP430AsmPrinter::EmitInstruction(const MachineInstr *MI) {
MSP430MCInstLower MCInstLowering(OutContext, *this);
2009-10-23 10:19:52 -04:00
MCInst TmpInst;
MCInstLowering.Lower(MI, TmpInst);
EmitToStreamer(*OutStreamer, TmpInst);
2009-10-23 10:19:52 -04:00
}
2009-10-14 13:57:32 -04:00
// Force static initialization.
extern "C" void LLVMInitializeMSP430AsmPrinter() {
RegisterAsmPrinter<MSP430AsmPrinter> X(TheMSP430Target);
}