2007-06-06 15:42:06 +08:00
|
|
|
//===-- MipsAsmPrinter.cpp - Mips LLVM assembly writer --------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains a printer that converts from our internal representation
|
|
|
|
// of machine-dependent LLVM code to GAS-format MIPS assembly language.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "mips-asm-printer"
|
|
|
|
#include "Mips.h"
|
2008-07-14 22:42:54 +08:00
|
|
|
#include "MipsSubtarget.h"
|
2007-06-06 15:42:06 +08:00
|
|
|
#include "MipsInstrInfo.h"
|
|
|
|
#include "MipsTargetMachine.h"
|
2007-07-12 07:24:41 +08:00
|
|
|
#include "MipsMachineFunction.h"
|
2010-07-20 16:37:04 +08:00
|
|
|
#include "llvm/BasicBlock.h"
|
|
|
|
#include "llvm/Instructions.h"
|
2007-06-06 15:42:06 +08:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
2007-07-12 07:24:41 +08:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2007-06-06 15:42:06 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2009-08-19 13:49:37 +08:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2009-08-23 04:48:53 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-09-14 01:14:04 +08:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2010-03-13 05:19:23 +08:00
|
|
|
#include "llvm/Target/Mangler.h"
|
2007-06-06 15:42:06 +08:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2011-03-05 01:51:39 +08:00
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
2007-06-06 15:42:06 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2007-11-13 03:49:57 +08:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2009-07-16 04:24:03 +08:00
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
2010-04-04 14:12:20 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2007-06-06 15:42:06 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2010-04-04 16:18:47 +08:00
|
|
|
#include "llvm/ADT/Twine.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2007-06-06 15:42:06 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
2009-10-25 14:33:48 +08:00
|
|
|
class MipsAsmPrinter : public AsmPrinter {
|
2008-07-14 22:42:54 +08:00
|
|
|
const MipsSubtarget *Subtarget;
|
2009-02-24 16:30:20 +08:00
|
|
|
public:
|
2010-04-04 16:18:47 +08:00
|
|
|
explicit MipsAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
|
|
|
|
: AsmPrinter(TM, Streamer) {
|
2008-07-14 22:42:54 +08:00
|
|
|
Subtarget = &TM.getSubtarget<MipsSubtarget>();
|
|
|
|
}
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Mips Assembly Printer";
|
|
|
|
}
|
|
|
|
|
2011-03-05 01:51:39 +08:00
|
|
|
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
2010-04-04 13:29:35 +08:00
|
|
|
unsigned AsmVariant, const char *ExtraCode,
|
|
|
|
raw_ostream &O);
|
2010-04-04 12:47:45 +08:00
|
|
|
void printOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
|
|
|
|
void printUnsignedImm(const MachineInstr *MI, int opNum, raw_ostream &O);
|
2011-03-05 01:51:39 +08:00
|
|
|
void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
|
2007-06-06 15:42:06 +08:00
|
|
|
const char *Modifier = 0);
|
2011-03-05 01:51:39 +08:00
|
|
|
void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
llvm-svn: 53146
2008-07-06 03:05:21 +08:00
|
|
|
const char *Modifier = 0);
|
2010-04-04 12:47:45 +08:00
|
|
|
void printSavedRegsBitmask(raw_ostream &O);
|
|
|
|
void printHex32(unsigned int Value, raw_ostream &O);
|
2007-08-28 13:06:17 +08:00
|
|
|
|
2010-04-04 15:05:53 +08:00
|
|
|
const char *getCurrentABIString() const;
|
|
|
|
void emitFrameDirective();
|
2008-07-19 21:16:11 +08:00
|
|
|
|
2010-04-04 12:47:45 +08:00
|
|
|
void printInstruction(const MachineInstr *MI, raw_ostream &O); // autogen'd.
|
2010-02-03 09:09:55 +08:00
|
|
|
void EmitInstruction(const MachineInstr *MI) {
|
2010-04-04 14:12:20 +08:00
|
|
|
SmallString<128> Str;
|
|
|
|
raw_svector_ostream OS(Str);
|
|
|
|
printInstruction(MI, OS);
|
|
|
|
OutStreamer.EmitRawText(OS.str());
|
2010-02-03 09:09:55 +08:00
|
|
|
}
|
2010-01-28 14:22:43 +08:00
|
|
|
virtual void EmitFunctionBodyStart();
|
|
|
|
virtual void EmitFunctionBodyEnd();
|
2010-07-20 16:37:04 +08:00
|
|
|
virtual bool isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const;
|
2009-09-14 04:19:22 +08:00
|
|
|
static const char *getRegisterName(unsigned RegNo);
|
2009-09-14 04:08:00 +08:00
|
|
|
|
2010-01-28 07:23:58 +08:00
|
|
|
virtual void EmitFunctionEntryLabel();
|
2009-10-01 06:06:26 +08:00
|
|
|
void EmitStartOfAsmFile(Module &M);
|
2007-06-06 15:42:06 +08:00
|
|
|
};
|
|
|
|
} // end of anonymous namespace
|
|
|
|
|
|
|
|
#include "MipsGenAsmWriter.inc"
|
|
|
|
|
2007-08-28 13:06:17 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Mips Asm Directives
|
|
|
|
//
|
|
|
|
// -- Frame directive "frame Stackpointer, Stacksize, RARegister"
|
|
|
|
// Describe the stack frame.
|
|
|
|
//
|
2011-03-05 01:51:39 +08:00
|
|
|
// -- Mask directives "(f)mask bitmask, offset"
|
2007-08-28 13:06:17 +08:00
|
|
|
// Tells the assembler which registers are saved and where.
|
2011-03-05 01:51:39 +08:00
|
|
|
// bitmask - contain a little endian bitset indicating which registers are
|
|
|
|
// saved on function prologue (e.g. with a 0x80000000 mask, the
|
2007-08-28 13:06:17 +08:00
|
|
|
// assembler knows the register 31 (RA) is saved at prologue.
|
2011-03-05 01:51:39 +08:00
|
|
|
// offset - the position before stack pointer subtraction indicating where
|
2007-08-28 13:06:17 +08:00
|
|
|
// the first saved register on prologue is located. (e.g. with a
|
|
|
|
//
|
|
|
|
// Consider the following function prologue:
|
|
|
|
//
|
2008-02-27 14:33:05 +08:00
|
|
|
// .frame $fp,48,$ra
|
|
|
|
// .mask 0xc0000000,-8
|
|
|
|
// addiu $sp, $sp, -48
|
|
|
|
// sw $ra, 40($sp)
|
|
|
|
// sw $fp, 36($sp)
|
2007-08-28 13:06:17 +08:00
|
|
|
//
|
2011-03-05 01:51:39 +08:00
|
|
|
// With a 0xc0000000 mask, the assembler knows the register 31 (RA) and
|
|
|
|
// 30 (FP) are saved at prologue. As the save order on prologue is from
|
|
|
|
// left to right, RA is saved first. A -8 offset means that after the
|
2007-08-28 13:06:17 +08:00
|
|
|
// stack pointer subtration, the first register in the mask (RA) will be
|
|
|
|
// saved at address 48-8=40.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2007-07-12 07:24:41 +08:00
|
|
|
|
2008-07-14 22:42:54 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Mask directives
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-03-05 01:51:39 +08:00
|
|
|
// Create a bitmask with all callee saved registers for CPU or Floating Point
|
2008-08-06 14:14:43 +08:00
|
|
|
// registers. For CPU registers consider RA, GP and FP for saving if necessary.
|
2010-04-04 12:47:45 +08:00
|
|
|
void MipsAsmPrinter::printSavedRegsBitmask(raw_ostream &O) {
|
2011-01-10 20:39:04 +08:00
|
|
|
const TargetFrameLowering *TFI = TM.getFrameLowering();
|
2010-11-19 05:19:35 +08:00
|
|
|
const TargetRegisterInfo *RI = TM.getRegisterInfo();
|
2010-01-28 14:22:43 +08:00
|
|
|
const MipsFunctionInfo *MipsFI = MF->getInfo<MipsFunctionInfo>();
|
2010-11-19 05:19:35 +08:00
|
|
|
|
2008-08-06 14:14:43 +08:00
|
|
|
// CPU and FPU Saved Registers Bitmasks
|
|
|
|
unsigned int CPUBitmask = 0;
|
|
|
|
unsigned int FPUBitmask = 0;
|
2007-08-28 13:06:17 +08:00
|
|
|
|
2008-08-06 14:14:43 +08:00
|
|
|
// Set the CPU and FPU Bitmasks
|
2010-01-28 14:22:43 +08:00
|
|
|
const MachineFrameInfo *MFI = MF->getFrameInfo();
|
2007-08-28 13:06:17 +08:00
|
|
|
const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
|
2008-08-06 14:14:43 +08:00
|
|
|
for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
|
2010-06-03 04:02:30 +08:00
|
|
|
unsigned Reg = CSI[i].getReg();
|
|
|
|
unsigned RegNum = MipsRegisterInfo::getRegisterNumbering(Reg);
|
|
|
|
if (Mips::CPURegsRegisterClass->contains(Reg))
|
2008-08-06 14:14:43 +08:00
|
|
|
CPUBitmask |= (1 << RegNum);
|
|
|
|
else
|
|
|
|
FPUBitmask |= (1 << RegNum);
|
|
|
|
}
|
2007-08-28 13:06:17 +08:00
|
|
|
|
2008-08-06 14:14:43 +08:00
|
|
|
// Return Address and Frame registers must also be set in CPUBitmask.
|
2011-01-10 20:39:04 +08:00
|
|
|
// FIXME: Do we really need hasFP() call here? When no FP is present SP is
|
|
|
|
// just returned -- will it be ok?
|
2010-11-19 05:19:35 +08:00
|
|
|
if (TFI->hasFP(*MF))
|
2008-08-06 14:14:43 +08:00
|
|
|
CPUBitmask |= (1 << MipsRegisterInfo::
|
2010-11-19 05:19:35 +08:00
|
|
|
getRegisterNumbering(RI->getFrameRegister(*MF)));
|
|
|
|
|
|
|
|
if (MFI->adjustsStack())
|
2008-08-06 14:14:43 +08:00
|
|
|
CPUBitmask |= (1 << MipsRegisterInfo::
|
2010-11-19 05:19:35 +08:00
|
|
|
getRegisterNumbering(RI->getRARegister()));
|
2007-08-28 13:06:17 +08:00
|
|
|
|
2008-08-06 14:14:43 +08:00
|
|
|
// Print CPUBitmask
|
2010-04-04 12:47:45 +08:00
|
|
|
O << "\t.mask \t"; printHex32(CPUBitmask, O);
|
|
|
|
O << ',' << MipsFI->getCPUTopSavedRegOff() << '\n';
|
2008-08-06 14:14:43 +08:00
|
|
|
|
|
|
|
// Print FPUBitmask
|
2010-04-04 12:47:45 +08:00
|
|
|
O << "\t.fmask\t"; printHex32(FPUBitmask, O); O << ","
|
2008-08-06 14:14:43 +08:00
|
|
|
<< MipsFI->getFPUTopSavedRegOff() << '\n';
|
2007-08-28 13:06:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Print a 32 bit hex number with all numbers.
|
2010-04-04 12:47:45 +08:00
|
|
|
void MipsAsmPrinter::printHex32(unsigned Value, raw_ostream &O) {
|
2008-08-21 08:14:44 +08:00
|
|
|
O << "0x";
|
2011-03-05 01:51:39 +08:00
|
|
|
for (int i = 7; i >= 0; i--)
|
2010-04-04 12:47:45 +08:00
|
|
|
O << utohexstr((Value & (0xF << (i*4))) >> (i*4));
|
2007-07-12 07:24:41 +08:00
|
|
|
}
|
|
|
|
|
2008-07-14 22:42:54 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Frame and Set directives
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Frame Directive
|
2010-04-04 15:05:53 +08:00
|
|
|
void MipsAsmPrinter::emitFrameDirective() {
|
2008-07-14 22:42:54 +08:00
|
|
|
const TargetRegisterInfo &RI = *TM.getRegisterInfo();
|
|
|
|
|
2010-01-28 14:22:43 +08:00
|
|
|
unsigned stackReg = RI.getFrameRegister(*MF);
|
2008-07-14 22:42:54 +08:00
|
|
|
unsigned returnReg = RI.getRARegister();
|
2010-01-28 14:22:43 +08:00
|
|
|
unsigned stackSize = MF->getFrameInfo()->getStackSize();
|
2008-07-14 22:42:54 +08:00
|
|
|
|
2010-04-04 15:05:53 +08:00
|
|
|
OutStreamer.EmitRawText("\t.frame\t$" +
|
|
|
|
Twine(LowercaseString(getRegisterName(stackReg))) +
|
|
|
|
"," + Twine(stackSize) + ",$" +
|
|
|
|
Twine(LowercaseString(getRegisterName(returnReg))));
|
2008-07-14 22:42:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Emit Set directives.
|
2011-03-05 01:51:39 +08:00
|
|
|
const char *MipsAsmPrinter::getCurrentABIString() const {
|
2010-04-04 15:05:53 +08:00
|
|
|
switch (Subtarget->getTargetABI()) {
|
2011-03-05 01:51:39 +08:00
|
|
|
case MipsSubtarget::O32: return "abi32";
|
2010-04-04 15:05:53 +08:00
|
|
|
case MipsSubtarget::O64: return "abiO64";
|
|
|
|
case MipsSubtarget::N32: return "abiN32";
|
|
|
|
case MipsSubtarget::N64: return "abi64";
|
|
|
|
case MipsSubtarget::EABI: return "eabi32"; // TODO: handle eabi64
|
|
|
|
default: break;
|
2008-07-14 22:42:54 +08:00
|
|
|
}
|
|
|
|
|
2009-07-15 00:55:14 +08:00
|
|
|
llvm_unreachable("Unknown Mips ABI");
|
2008-07-14 22:42:54 +08:00
|
|
|
return NULL;
|
2011-03-05 01:51:39 +08:00
|
|
|
}
|
2008-07-14 22:42:54 +08:00
|
|
|
|
2010-01-28 07:23:58 +08:00
|
|
|
void MipsAsmPrinter::EmitFunctionEntryLabel() {
|
2010-04-04 15:05:53 +08:00
|
|
|
OutStreamer.EmitRawText("\t.ent\t" + Twine(CurrentFnSym->getName()));
|
2010-01-28 07:23:58 +08:00
|
|
|
OutStreamer.EmitLabel(CurrentFnSym);
|
|
|
|
}
|
|
|
|
|
2010-01-28 14:22:43 +08:00
|
|
|
/// EmitFunctionBodyStart - Targets can override this to emit stuff before
|
|
|
|
/// the first basic block in the function.
|
|
|
|
void MipsAsmPrinter::EmitFunctionBodyStart() {
|
2010-04-04 15:05:53 +08:00
|
|
|
emitFrameDirective();
|
2011-03-05 01:51:39 +08:00
|
|
|
|
2010-04-04 15:05:53 +08:00
|
|
|
SmallString<128> Str;
|
|
|
|
raw_svector_ostream OS(Str);
|
|
|
|
printSavedRegsBitmask(OS);
|
|
|
|
OutStreamer.EmitRawText(OS.str());
|
2010-01-28 14:22:43 +08:00
|
|
|
}
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2010-01-28 14:22:43 +08:00
|
|
|
/// EmitFunctionBodyEnd - Targets can override this to emit stuff after
|
|
|
|
/// the last basic block in the function.
|
|
|
|
void MipsAsmPrinter::EmitFunctionBodyEnd() {
|
2010-01-28 09:48:52 +08:00
|
|
|
// There are instruction for this macros, but they must
|
|
|
|
// always be at the function end, and we can't emit and
|
2011-03-05 01:51:39 +08:00
|
|
|
// break with BB logic.
|
2010-04-04 15:05:53 +08:00
|
|
|
OutStreamer.EmitRawText(StringRef("\t.set\tmacro"));
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.set\treorder"));
|
|
|
|
OutStreamer.EmitRawText("\t.end\t" + Twine(CurrentFnSym->getName()));
|
2007-06-06 15:42:06 +08:00
|
|
|
}
|
|
|
|
|
2010-01-28 14:22:43 +08:00
|
|
|
|
2010-07-20 16:37:04 +08:00
|
|
|
/// isBlockOnlyReachableByFallthough - Return true if the basic block has
|
|
|
|
/// exactly one predecessor and the control transfer mechanism between
|
|
|
|
/// the predecessor and this block is a fall-through.
|
2011-03-05 01:51:39 +08:00
|
|
|
bool MipsAsmPrinter::isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB)
|
2010-07-20 16:37:04 +08:00
|
|
|
const {
|
|
|
|
// The predecessor has to be immediately before this block.
|
|
|
|
const MachineBasicBlock *Pred = *MBB->pred_begin();
|
|
|
|
|
|
|
|
// If the predecessor is a switch statement, assume a jump table
|
|
|
|
// implementation, so it is not a fall through.
|
|
|
|
if (const BasicBlock *bb = Pred->getBasicBlock())
|
|
|
|
if (isa<SwitchInst>(bb->getTerminator()))
|
|
|
|
return false;
|
2011-03-05 01:51:39 +08:00
|
|
|
|
2010-07-20 16:37:04 +08:00
|
|
|
return AsmPrinter::isBlockOnlyReachableByFallthrough(MBB);
|
|
|
|
}
|
|
|
|
|
2008-08-03 03:42:36 +08:00
|
|
|
// Print out an operand for an inline asm expression.
|
2011-03-05 01:51:39 +08:00
|
|
|
bool MipsAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
2010-04-04 13:29:35 +08:00
|
|
|
unsigned AsmVariant,const char *ExtraCode,
|
|
|
|
raw_ostream &O) {
|
2008-08-03 03:42:36 +08:00
|
|
|
// Does this asm operand have a single letter operand modifier?
|
2011-03-05 01:51:39 +08:00
|
|
|
if (ExtraCode && ExtraCode[0])
|
2008-08-03 03:42:36 +08:00
|
|
|
return true; // Unknown modifier.
|
|
|
|
|
2010-04-04 12:47:45 +08:00
|
|
|
printOperand(MI, OpNo, O);
|
2008-08-03 03:42:36 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-04-04 12:47:45 +08:00
|
|
|
void MipsAsmPrinter::printOperand(const MachineInstr *MI, int opNum,
|
|
|
|
raw_ostream &O) {
|
2007-06-06 15:42:06 +08:00
|
|
|
const MachineOperand &MO = MI->getOperand(opNum);
|
2007-11-05 11:02:32 +08:00
|
|
|
bool closeP = false;
|
2009-09-02 01:27:58 +08:00
|
|
|
|
|
|
|
if (MO.getTargetFlags())
|
2009-08-28 03:57:56 +08:00
|
|
|
closeP = true;
|
2009-09-02 01:27:58 +08:00
|
|
|
|
|
|
|
switch(MO.getTargetFlags()) {
|
|
|
|
case MipsII::MO_GPREL: O << "%gp_rel("; break;
|
|
|
|
case MipsII::MO_GOT_CALL: O << "%call16("; break;
|
2010-12-08 03:00:20 +08:00
|
|
|
case MipsII::MO_GOT: {
|
|
|
|
const MachineOperand &LastMO = MI->getOperand(opNum-1);
|
|
|
|
bool LastMOIsGP = LastMO.getType() == MachineOperand::MO_Register
|
|
|
|
&& LastMO.getReg() == Mips::GP;
|
|
|
|
if (MI->getOpcode() == Mips::LW || LastMOIsGP)
|
2009-09-02 01:27:58 +08:00
|
|
|
O << "%got(";
|
2009-08-28 03:40:40 +08:00
|
|
|
else
|
2009-08-28 03:57:56 +08:00
|
|
|
O << "%lo(";
|
2009-09-02 01:27:58 +08:00
|
|
|
break;
|
2010-12-08 03:00:20 +08:00
|
|
|
}
|
2009-09-02 01:27:58 +08:00
|
|
|
case MipsII::MO_ABS_HILO:
|
|
|
|
if (MI->getOpcode() == Mips::LUi)
|
|
|
|
O << "%hi(";
|
|
|
|
else
|
2011-03-05 01:51:39 +08:00
|
|
|
O << "%lo(";
|
2009-09-02 01:27:58 +08:00
|
|
|
break;
|
2007-06-06 15:42:06 +08:00
|
|
|
}
|
2009-09-02 01:27:58 +08:00
|
|
|
|
2009-09-14 04:31:40 +08:00
|
|
|
switch (MO.getType()) {
|
2007-06-06 15:42:06 +08:00
|
|
|
case MachineOperand::MO_Register:
|
2009-09-14 04:31:40 +08:00
|
|
|
O << '$' << LowercaseString(getRegisterName(MO.getReg()));
|
2007-06-06 15:42:06 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MachineOperand::MO_Immediate:
|
2008-08-13 15:13:40 +08:00
|
|
|
O << (short int)MO.getImm();
|
2007-06-06 15:42:06 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
2010-03-14 05:04:28 +08:00
|
|
|
O << *MO.getMBB()->getSymbol();
|
2007-06-06 15:42:06 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
case MachineOperand::MO_GlobalAddress:
|
2010-03-13 05:19:23 +08:00
|
|
|
O << *Mang->getSymbol(MO.getGlobal());
|
2007-06-06 15:42:06 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
2010-01-18 05:43:43 +08:00
|
|
|
O << *GetExternalSymbolSymbol(MO.getSymbolName());
|
2007-06-06 15:42:06 +08:00
|
|
|
break;
|
|
|
|
|
2007-11-13 03:49:57 +08:00
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
2009-08-23 05:43:10 +08:00
|
|
|
O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
|
2010-01-16 08:21:18 +08:00
|
|
|
<< '_' << MO.getIndex();
|
2007-11-13 03:49:57 +08:00
|
|
|
break;
|
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
2009-08-23 05:43:10 +08:00
|
|
|
O << MAI->getPrivateGlobalPrefix() << "CPI"
|
2007-12-31 07:10:15 +08:00
|
|
|
<< getFunctionNumber() << "_" << MO.getIndex();
|
2009-11-19 14:06:13 +08:00
|
|
|
if (MO.getOffset())
|
|
|
|
O << "+" << MO.getOffset();
|
2007-06-06 15:42:06 +08:00
|
|
|
break;
|
2011-03-05 01:51:39 +08:00
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
default:
|
2009-07-15 00:55:14 +08:00
|
|
|
llvm_unreachable("<unknown operand type>");
|
2007-06-06 15:42:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (closeP) O << ")";
|
|
|
|
}
|
|
|
|
|
2010-04-04 12:47:45 +08:00
|
|
|
void MipsAsmPrinter::printUnsignedImm(const MachineInstr *MI, int opNum,
|
|
|
|
raw_ostream &O) {
|
2008-08-13 15:13:40 +08:00
|
|
|
const MachineOperand &MO = MI->getOperand(opNum);
|
2010-04-28 06:24:37 +08:00
|
|
|
if (MO.isImm())
|
2008-08-13 15:13:40 +08:00
|
|
|
O << (unsigned short int)MO.getImm();
|
2011-03-05 01:51:39 +08:00
|
|
|
else
|
2010-04-04 12:47:45 +08:00
|
|
|
printOperand(MI, opNum, O);
|
2008-08-13 15:13:40 +08:00
|
|
|
}
|
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
void MipsAsmPrinter::
|
2010-04-04 12:47:45 +08:00
|
|
|
printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
|
|
|
|
const char *Modifier) {
|
2007-09-25 04:15:11 +08:00
|
|
|
// when using stack locations for not load/store instructions
|
|
|
|
// print the same way as all normal 3 operand instructions.
|
|
|
|
if (Modifier && !strcmp(Modifier, "stackloc")) {
|
2010-04-04 12:47:45 +08:00
|
|
|
printOperand(MI, opNum+1, O);
|
2007-09-25 04:15:11 +08:00
|
|
|
O << ", ";
|
2010-04-04 12:47:45 +08:00
|
|
|
printOperand(MI, opNum, O);
|
2007-09-25 04:15:11 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-05 01:51:39 +08:00
|
|
|
// Load/Store memory operands -- imm($reg)
|
|
|
|
// If PIC target the target is loaded as the
|
2007-11-05 11:02:32 +08:00
|
|
|
// pattern lw $25,%call16($28)
|
2010-04-04 12:47:45 +08:00
|
|
|
printOperand(MI, opNum, O);
|
2007-06-06 15:42:06 +08:00
|
|
|
O << "(";
|
2010-04-04 12:47:45 +08:00
|
|
|
printOperand(MI, opNum+1, O);
|
2007-06-06 15:42:06 +08:00
|
|
|
O << ")";
|
|
|
|
}
|
|
|
|
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
llvm-svn: 53146
2008-07-06 03:05:21 +08:00
|
|
|
void MipsAsmPrinter::
|
2010-04-04 12:47:45 +08:00
|
|
|
printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
|
|
|
|
const char *Modifier) {
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
llvm-svn: 53146
2008-07-06 03:05:21 +08:00
|
|
|
const MachineOperand& MO = MI->getOperand(opNum);
|
2011-03-05 01:51:39 +08:00
|
|
|
O << Mips::MipsFCCToString((Mips::CondCode)MO.getImm());
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
llvm-svn: 53146
2008-07-06 03:05:21 +08:00
|
|
|
}
|
|
|
|
|
2009-10-01 06:06:26 +08:00
|
|
|
void MipsAsmPrinter::EmitStartOfAsmFile(Module &M) {
|
2009-08-19 13:49:37 +08:00
|
|
|
// FIXME: Use SwitchSection.
|
2011-03-05 01:51:39 +08:00
|
|
|
|
2008-07-14 22:42:54 +08:00
|
|
|
// Tell the assembler which ABI we are using
|
2010-04-04 15:05:53 +08:00
|
|
|
OutStreamer.EmitRawText("\t.section .mdebug." + Twine(getCurrentABIString()));
|
2008-07-14 22:42:54 +08:00
|
|
|
|
|
|
|
// TODO: handle O64 ABI
|
2010-04-05 18:17:15 +08:00
|
|
|
if (Subtarget->isABI_EABI()) {
|
2010-04-04 15:05:53 +08:00
|
|
|
if (Subtarget->isGP32bit())
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.section .gcc_compiled_long32"));
|
|
|
|
else
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.section .gcc_compiled_long64"));
|
2010-04-05 18:17:15 +08:00
|
|
|
}
|
2008-07-14 22:42:54 +08:00
|
|
|
|
|
|
|
// return to previous section
|
2011-03-05 01:51:39 +08:00
|
|
|
OutStreamer.EmitRawText(StringRef("\t.previous"));
|
2007-06-06 15:42:06 +08:00
|
|
|
}
|
|
|
|
|
2009-06-24 07:59:40 +08:00
|
|
|
// Force static initialization.
|
2011-03-05 01:51:39 +08:00
|
|
|
extern "C" void LLVMInitializeMipsAsmPrinter() {
|
2009-07-25 14:49:55 +08:00
|
|
|
RegisterAsmPrinter<MipsAsmPrinter> X(TheMipsTarget);
|
|
|
|
RegisterAsmPrinter<MipsAsmPrinter> Y(TheMipselTarget);
|
2009-07-16 04:24:03 +08:00
|
|
|
}
|