2009-10-19 19:56:26 +00:00
|
|
|
//===-- ARMInstPrinter.cpp - Convert ARM MCInst to assembly syntax --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This class prints an ARM MCInst to a .s file.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "asm-printer"
|
|
|
|
#include "ARMInstPrinter.h"
|
2009-10-19 21:21:39 +00:00
|
|
|
#include "ARMAddressingModes.h"
|
2009-10-19 19:56:26 +00:00
|
|
|
#include "llvm/MC/MCInst.h"
|
2009-10-19 21:21:39 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
add jump tables, constant pools and some trivial global
lowering stuff. We can now compile hello world to:
_main:
stm ,
mov r7, sp
sub sp, sp, #4
mov r0, #0
str r0,
ldr r0,
bl _printf
ldr r0,
mov sp, r7
ldm ,
Almost looks like arm code :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84542 91177308-0d34-0410-b5e6-96231b3b80d8
2009-10-19 21:53:00 +00:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-10-19 19:56:26 +00:00
|
|
|
#include "ARMGenInstrNames.inc"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
// Include the auto-generated portion of the assembly writer.
|
|
|
|
#define MachineInstr MCInst
|
|
|
|
#define ARMAsmPrinter ARMInstPrinter // FIXME: REMOVE.
|
|
|
|
#define NO_ASM_WRITER_BOILERPLATE
|
|
|
|
#include "ARMGenAsmWriter.inc"
|
|
|
|
#undef MachineInstr
|
|
|
|
#undef ARMAsmPrinter
|
|
|
|
|
|
|
|
void ARMInstPrinter::printInst(const MCInst *MI) { printInstruction(MI); }
|
|
|
|
|
2009-10-19 20:59:55 +00:00
|
|
|
void ARMInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
|
|
|
|
const char *Modifier) {
|
add jump tables, constant pools and some trivial global
lowering stuff. We can now compile hello world to:
_main:
stm ,
mov r7, sp
sub sp, sp, #4
mov r0, #0
str r0,
ldr r0,
bl _printf
ldr r0,
mov sp, r7
ldm ,
Almost looks like arm code :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84542 91177308-0d34-0410-b5e6-96231b3b80d8
2009-10-19 21:53:00 +00:00
|
|
|
// FIXME: TURN ASSERT ON.
|
|
|
|
//assert((Modifier == 0 || Modifier[0] == 0) && "Cannot print modifiers");
|
2009-10-19 20:59:55 +00:00
|
|
|
|
|
|
|
const MCOperand &Op = MI->getOperand(OpNo);
|
|
|
|
if (Op.isReg()) {
|
|
|
|
O << getRegisterName(Op.getReg());
|
|
|
|
} else if (Op.isImm()) {
|
|
|
|
O << '#' << Op.getImm();
|
|
|
|
} else {
|
|
|
|
assert(Op.isExpr() && "unknown operand kind in printOperand");
|
add jump tables, constant pools and some trivial global
lowering stuff. We can now compile hello world to:
_main:
stm ,
mov r7, sp
sub sp, sp, #4
mov r0, #0
str r0,
ldr r0,
bl _printf
ldr r0,
mov sp, r7
ldm ,
Almost looks like arm code :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84542 91177308-0d34-0410-b5e6-96231b3b80d8
2009-10-19 21:53:00 +00:00
|
|
|
Op.getExpr()->print(O, &MAI);
|
2009-10-19 20:59:55 +00:00
|
|
|
}
|
|
|
|
}
|
2009-10-19 21:21:39 +00:00
|
|
|
|
|
|
|
static void printSOImm(raw_ostream &O, int64_t V, bool VerboseAsm,
|
|
|
|
const MCAsmInfo *MAI) {
|
|
|
|
// Break it up into two parts that make up a shifter immediate.
|
|
|
|
V = ARM_AM::getSOImmVal(V);
|
|
|
|
assert(V != -1 && "Not a valid so_imm value!");
|
|
|
|
|
|
|
|
unsigned Imm = ARM_AM::getSOImmValImm(V);
|
|
|
|
unsigned Rot = ARM_AM::getSOImmValRot(V);
|
|
|
|
|
|
|
|
// Print low-level immediate formation info, per
|
|
|
|
// A5.1.3: "Data-processing operands - Immediate".
|
|
|
|
if (Rot) {
|
|
|
|
O << "#" << Imm << ", " << Rot;
|
|
|
|
// Pretty printed version.
|
|
|
|
if (VerboseAsm)
|
|
|
|
O << ' ' << MAI->getCommentString()
|
|
|
|
<< ' ' << (int)ARM_AM::rotr32(Imm, Rot);
|
|
|
|
} else {
|
|
|
|
O << "#" << Imm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// printSOImmOperand - SOImm is 4-bit rotate amount in bits 8-11 with 8-bit
|
|
|
|
/// immediate in bits 0-7.
|
|
|
|
void ARMInstPrinter::printSOImmOperand(const MCInst *MI, unsigned OpNum) {
|
|
|
|
const MCOperand &MO = MI->getOperand(OpNum);
|
|
|
|
assert(MO.isImm() && "Not a valid so_imm value!");
|
|
|
|
printSOImm(O, MO.getImm(), VerboseAsm, &MAI);
|
|
|
|
}
|
add addrmode2 support, getting us up to:
_main:
stm ,
mov r7, sp
sub sp, sp, #4
mov r0, #0
str r0, [sp]
ldr r0, LCPI1_0
bl _printf
ldr r0, [sp]
mov sp, r7
ldm ,
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84543 91177308-0d34-0410-b5e6-96231b3b80d8
2009-10-19 21:57:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ARMInstPrinter::printAddrMode2Operand(const MCInst *MI, unsigned Op) {
|
|
|
|
const MCOperand &MO1 = MI->getOperand(Op);
|
|
|
|
const MCOperand &MO2 = MI->getOperand(Op+1);
|
|
|
|
const MCOperand &MO3 = MI->getOperand(Op+2);
|
|
|
|
|
|
|
|
if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
|
|
|
|
printOperand(MI, Op);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
O << "[" << getRegisterName(MO1.getReg());
|
|
|
|
|
|
|
|
if (!MO2.getReg()) {
|
|
|
|
if (ARM_AM::getAM2Offset(MO3.getImm())) // Don't print +0.
|
|
|
|
O << ", #"
|
|
|
|
<< (char)ARM_AM::getAM2Op(MO3.getImm())
|
|
|
|
<< ARM_AM::getAM2Offset(MO3.getImm());
|
|
|
|
O << "]";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
O << ", "
|
|
|
|
<< (char)ARM_AM::getAM2Op(MO3.getImm())
|
|
|
|
<< getRegisterName(MO2.getReg());
|
|
|
|
|
|
|
|
if (unsigned ShImm = ARM_AM::getAM2Offset(MO3.getImm()))
|
|
|
|
O << ", "
|
|
|
|
<< ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO3.getImm()))
|
|
|
|
<< " #" << ShImm;
|
|
|
|
O << "]";
|
|
|
|
}
|