mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Lower MachineInstr to MC Inst and print to .s files.
llvm-svn: 134661
This commit is contained in:
parent
8f2e878dbf
commit
90fcf55a54
@ -26,4 +26,5 @@ add_llvm_target(MipsCodeGen
|
|||||||
MipsSelectionDAGInfo.cpp
|
MipsSelectionDAGInfo.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_subdirectory(InstPrinter)
|
||||||
add_subdirectory(TargetInfo)
|
add_subdirectory(TargetInfo)
|
||||||
|
6
lib/Target/Mips/InstPrinter/CMakeLists.txt
Normal file
6
lib/Target/Mips/InstPrinter/CMakeLists.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/.. )
|
||||||
|
|
||||||
|
add_llvm_library(LLVMMipsAsmPrinter
|
||||||
|
MipsInstPrinter.cpp
|
||||||
|
)
|
||||||
|
add_dependencies(LLVMMipsAsmPrinter MipsCodeGenTable_gen)
|
16
lib/Target/Mips/InstPrinter/Makefile
Normal file
16
lib/Target/Mips/InstPrinter/Makefile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
##===- lib/Target/Mips/AsmPrinter/Makefile --------------*- Makefile -*-===##
|
||||||
|
#
|
||||||
|
# The LLVM Compiler Infrastructure
|
||||||
|
#
|
||||||
|
# This file is distributed under the University of Illinois Open Source
|
||||||
|
# License. See LICENSE.TXT for details.
|
||||||
|
#
|
||||||
|
##===----------------------------------------------------------------------===##
|
||||||
|
|
||||||
|
LEVEL = ../../../..
|
||||||
|
LIBRARYNAME = LLVMMipsAsmPrinter
|
||||||
|
|
||||||
|
# Hack: we need to include 'main' arm target directory to grab private headers
|
||||||
|
CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
|
||||||
|
|
||||||
|
include $(LEVEL)/Makefile.common
|
125
lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
Normal file
125
lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
//===-- MipsInstPrinter.cpp - Convert Mips 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 Mips MCInst to a .s file.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#define DEBUG_TYPE "asm-printer"
|
||||||
|
#include "MipsInstPrinter.h"
|
||||||
|
#include "llvm/MC/MCExpr.h"
|
||||||
|
#include "llvm/MC/MCInst.h"
|
||||||
|
#include "llvm/Support/raw_ostream.h"
|
||||||
|
#include "llvm/ADT/StringExtras.h"
|
||||||
|
using namespace llvm;
|
||||||
|
|
||||||
|
#define GET_INSTRUCTION_NAME
|
||||||
|
#include "MipsGenAsmWriter.inc"
|
||||||
|
|
||||||
|
const char* Mips::MipsFCCToString(Mips::CondCode CC) {
|
||||||
|
switch (CC) {
|
||||||
|
case FCOND_F:
|
||||||
|
case FCOND_T: return "f";
|
||||||
|
case FCOND_UN:
|
||||||
|
case FCOND_OR: return "un";
|
||||||
|
case FCOND_OEQ:
|
||||||
|
case FCOND_UNE: return "eq";
|
||||||
|
case FCOND_UEQ:
|
||||||
|
case FCOND_ONE: return "ueq";
|
||||||
|
case FCOND_OLT:
|
||||||
|
case FCOND_UGE: return "olt";
|
||||||
|
case FCOND_ULT:
|
||||||
|
case FCOND_OGE: return "ult";
|
||||||
|
case FCOND_OLE:
|
||||||
|
case FCOND_UGT: return "ole";
|
||||||
|
case FCOND_ULE:
|
||||||
|
case FCOND_OGT: return "ule";
|
||||||
|
case FCOND_SF:
|
||||||
|
case FCOND_ST: return "sf";
|
||||||
|
case FCOND_NGLE:
|
||||||
|
case FCOND_GLE: return "ngle";
|
||||||
|
case FCOND_SEQ:
|
||||||
|
case FCOND_SNE: return "seq";
|
||||||
|
case FCOND_NGL:
|
||||||
|
case FCOND_GL: return "ngl";
|
||||||
|
case FCOND_LT:
|
||||||
|
case FCOND_NLT: return "lt";
|
||||||
|
case FCOND_NGE:
|
||||||
|
case FCOND_GE: return "nge";
|
||||||
|
case FCOND_LE:
|
||||||
|
case FCOND_NLE: return "le";
|
||||||
|
case FCOND_NGT:
|
||||||
|
case FCOND_GT: return "ngt";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
StringRef MipsInstPrinter::getOpcodeName(unsigned Opcode) const {
|
||||||
|
return getInstructionName(Opcode);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MipsInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
|
||||||
|
OS << '$' << LowercaseString(getRegisterName(RegNo));
|
||||||
|
}
|
||||||
|
|
||||||
|
void MipsInstPrinter::printInst(const MCInst *MI, raw_ostream &O) {
|
||||||
|
printInstruction(MI, O);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MipsInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
|
||||||
|
raw_ostream &O) {
|
||||||
|
const MCOperand &Op = MI->getOperand(OpNo);
|
||||||
|
if (Op.isReg()) {
|
||||||
|
printRegName(O, Op.getReg());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Op.isImm()) {
|
||||||
|
O << Op.getImm();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert(Op.isExpr() && "unknown operand kind in printOperand");
|
||||||
|
O << *Op.getExpr();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MipsInstPrinter::printUnsignedImm(const MCInst *MI, int opNum,
|
||||||
|
raw_ostream &O) {
|
||||||
|
const MCOperand &MO = MI->getOperand(opNum);
|
||||||
|
if (MO.isImm())
|
||||||
|
O << (unsigned short int)MO.getImm();
|
||||||
|
else
|
||||||
|
printOperand(MI, opNum, O);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MipsInstPrinter::
|
||||||
|
printMemOperand(const MCInst *MI, int opNum, raw_ostream &O) {
|
||||||
|
// Load/Store memory operands -- imm($reg)
|
||||||
|
// If PIC target the target is loaded as the
|
||||||
|
// pattern lw $25,%call16($28)
|
||||||
|
printOperand(MI, opNum+1, O);
|
||||||
|
O << "(";
|
||||||
|
printOperand(MI, opNum, O);
|
||||||
|
O << ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
void MipsInstPrinter::
|
||||||
|
printMemOperandEA(const MCInst *MI, int opNum, raw_ostream &O) {
|
||||||
|
// when using stack locations for not load/store instructions
|
||||||
|
// print the same way as all normal 3 operand instructions.
|
||||||
|
printOperand(MI, opNum, O);
|
||||||
|
O << ", ";
|
||||||
|
printOperand(MI, opNum+1, O);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
void MipsInstPrinter::
|
||||||
|
printFCCOperand(const MCInst *MI, int opNum, raw_ostream &O) {
|
||||||
|
const MCOperand& MO = MI->getOperand(opNum);
|
||||||
|
O << MipsFCCToString((Mips::CondCode)MO.getImm());
|
||||||
|
}
|
100
lib/Target/Mips/InstPrinter/MipsInstPrinter.h
Normal file
100
lib/Target/Mips/InstPrinter/MipsInstPrinter.h
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
//===-- MipsInstPrinter.h - Convert Mips 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 a Mips MCInst to a .s file.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#ifndef MIPSINSTPRINTER_H
|
||||||
|
#define MIPSINSTPRINTER_H
|
||||||
|
#include "llvm/MC/MCInstPrinter.h"
|
||||||
|
|
||||||
|
namespace llvm {
|
||||||
|
// These enumeration declarations were orignally in MipsInstrInfo.h but
|
||||||
|
// had to be moved here to avoid circular dependencies between
|
||||||
|
// LLVMMipsCodeGen and LLVMMipsAsmPrinter.
|
||||||
|
namespace Mips {
|
||||||
|
// Mips Branch Codes
|
||||||
|
enum FPBranchCode {
|
||||||
|
BRANCH_F,
|
||||||
|
BRANCH_T,
|
||||||
|
BRANCH_FL,
|
||||||
|
BRANCH_TL,
|
||||||
|
BRANCH_INVALID
|
||||||
|
};
|
||||||
|
|
||||||
|
// Mips Condition Codes
|
||||||
|
enum CondCode {
|
||||||
|
// To be used with float branch True
|
||||||
|
FCOND_F,
|
||||||
|
FCOND_UN,
|
||||||
|
FCOND_OEQ,
|
||||||
|
FCOND_UEQ,
|
||||||
|
FCOND_OLT,
|
||||||
|
FCOND_ULT,
|
||||||
|
FCOND_OLE,
|
||||||
|
FCOND_ULE,
|
||||||
|
FCOND_SF,
|
||||||
|
FCOND_NGLE,
|
||||||
|
FCOND_SEQ,
|
||||||
|
FCOND_NGL,
|
||||||
|
FCOND_LT,
|
||||||
|
FCOND_NGE,
|
||||||
|
FCOND_LE,
|
||||||
|
FCOND_NGT,
|
||||||
|
|
||||||
|
// To be used with float branch False
|
||||||
|
// This conditions have the same mnemonic as the
|
||||||
|
// above ones, but are used with a branch False;
|
||||||
|
FCOND_T,
|
||||||
|
FCOND_OR,
|
||||||
|
FCOND_UNE,
|
||||||
|
FCOND_ONE,
|
||||||
|
FCOND_UGE,
|
||||||
|
FCOND_OGE,
|
||||||
|
FCOND_UGT,
|
||||||
|
FCOND_OGT,
|
||||||
|
FCOND_ST,
|
||||||
|
FCOND_GLE,
|
||||||
|
FCOND_SNE,
|
||||||
|
FCOND_GL,
|
||||||
|
FCOND_NLT,
|
||||||
|
FCOND_GE,
|
||||||
|
FCOND_NLE,
|
||||||
|
FCOND_GT
|
||||||
|
};
|
||||||
|
|
||||||
|
const char *MipsFCCToString(Mips::CondCode CC);
|
||||||
|
} // end namespace Mips
|
||||||
|
|
||||||
|
class TargetMachine;
|
||||||
|
|
||||||
|
class MipsInstPrinter : public MCInstPrinter {
|
||||||
|
public:
|
||||||
|
MipsInstPrinter(const MCAsmInfo &MAI) : MCInstPrinter(MAI) {}
|
||||||
|
|
||||||
|
// Autogenerated by tblgen.
|
||||||
|
void printInstruction(const MCInst *MI, raw_ostream &O);
|
||||||
|
static const char *getInstructionName(unsigned Opcode);
|
||||||
|
static const char *getRegisterName(unsigned RegNo);
|
||||||
|
|
||||||
|
virtual StringRef getOpcodeName(unsigned Opcode) const;
|
||||||
|
virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
|
||||||
|
virtual void printInst(const MCInst *MI, raw_ostream &O);
|
||||||
|
|
||||||
|
private:
|
||||||
|
void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
|
||||||
|
void printUnsignedImm(const MCInst *MI, int opNum, raw_ostream &O);
|
||||||
|
void printMemOperand(const MCInst *MI, int opNum, raw_ostream &O);
|
||||||
|
void printMemOperandEA(const MCInst *MI, int opNum, raw_ostream &O);
|
||||||
|
void printFCCOperand(const MCInst *MI, int opNum, raw_ostream &O);
|
||||||
|
};
|
||||||
|
} // end namespace llvm
|
||||||
|
|
||||||
|
#endif
|
@ -13,11 +13,11 @@ TARGET = Mips
|
|||||||
|
|
||||||
# Make sure that tblgen is run, first thing.
|
# Make sure that tblgen is run, first thing.
|
||||||
BUILT_SOURCES = MipsGenRegisterInfo.inc MipsGenInstrInfo.inc \
|
BUILT_SOURCES = MipsGenRegisterInfo.inc MipsGenInstrInfo.inc \
|
||||||
MipsGenAsmWriter.inc \
|
MipsGenAsmWriter.inc \
|
||||||
MipsGenDAGISel.inc MipsGenCallingConv.inc \
|
MipsGenDAGISel.inc MipsGenCallingConv.inc \
|
||||||
MipsGenSubtargetInfo.inc
|
MipsGenSubtargetInfo.inc
|
||||||
|
|
||||||
DIRS = TargetInfo
|
DIRS = InstPrinter TargetInfo
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
include $(LEVEL)/Makefile.common
|
||||||
|
|
||||||
|
@ -88,6 +88,14 @@ def : Proc<"allegrex", [FeatureMips2, FeatureSingleFloat, FeatureEABI,
|
|||||||
FeatureVFPU, FeatureSEInReg, FeatureCondMov, FeatureMulDivAdd,
|
FeatureVFPU, FeatureSEInReg, FeatureCondMov, FeatureMulDivAdd,
|
||||||
FeatureMinMax, FeatureSwap, FeatureBitCount]>;
|
FeatureMinMax, FeatureSwap, FeatureBitCount]>;
|
||||||
|
|
||||||
|
def MipsAsmWriter : AsmWriter {
|
||||||
|
string AsmWriterClassName = "InstPrinter";
|
||||||
|
bit isMCAsmWriter = 1;
|
||||||
|
}
|
||||||
|
|
||||||
def Mips : Target {
|
def Mips : Target {
|
||||||
let InstructionSet = MipsInstrInfo;
|
let InstructionSet = MipsInstrInfo;
|
||||||
|
|
||||||
|
let AssemblyWriters = [MipsAsmWriter];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
#include "Mips.h"
|
#include "Mips.h"
|
||||||
#include "MipsInstrInfo.h"
|
#include "MipsInstrInfo.h"
|
||||||
#include "MipsMachineFunction.h"
|
#include "MipsMachineFunction.h"
|
||||||
|
#include "MipsMCInstLower.h"
|
||||||
|
#include "InstPrinter/MipsInstPrinter.h"
|
||||||
#include "llvm/BasicBlock.h"
|
#include "llvm/BasicBlock.h"
|
||||||
#include "llvm/Instructions.h"
|
#include "llvm/Instructions.h"
|
||||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||||
@ -25,6 +27,7 @@
|
|||||||
#include "llvm/CodeGen/MachineInstr.h"
|
#include "llvm/CodeGen/MachineInstr.h"
|
||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/MC/MCAsmInfo.h"
|
#include "llvm/MC/MCAsmInfo.h"
|
||||||
|
#include "llvm/MC/MCInst.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/Target/Mangler.h"
|
#include "llvm/Target/Mangler.h"
|
||||||
#include "llvm/Target/TargetData.h"
|
#include "llvm/Target/TargetData.h"
|
||||||
@ -39,8 +42,6 @@
|
|||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
#include "MipsGenAsmWriter.inc"
|
|
||||||
|
|
||||||
void MipsAsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
void MipsAsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
||||||
SmallString<128> Str;
|
SmallString<128> Str;
|
||||||
raw_svector_ostream OS(Str);
|
raw_svector_ostream OS(Str);
|
||||||
@ -50,8 +51,10 @@ void MipsAsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
printInstruction(MI, OS);
|
MipsMCInstLower MCInstLowering(Mang, *MF, *this);
|
||||||
OutStreamer.EmitRawText(OS.str());
|
MCInst TmpInst0;
|
||||||
|
MCInstLowering.Lower(MI, TmpInst0);
|
||||||
|
OutStreamer.EmitInstruction(TmpInst0);
|
||||||
}
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@ -168,9 +171,9 @@ void MipsAsmPrinter::emitFrameDirective() {
|
|||||||
unsigned stackSize = MF->getFrameInfo()->getStackSize();
|
unsigned stackSize = MF->getFrameInfo()->getStackSize();
|
||||||
|
|
||||||
OutStreamer.EmitRawText("\t.frame\t$" +
|
OutStreamer.EmitRawText("\t.frame\t$" +
|
||||||
Twine(LowercaseString(getRegisterName(stackReg))) +
|
Twine(LowercaseString(MipsInstPrinter::getRegisterName(stackReg))) +
|
||||||
"," + Twine(stackSize) + ",$" +
|
"," + Twine(stackSize) + ",$" +
|
||||||
Twine(LowercaseString(getRegisterName(returnReg))));
|
Twine(LowercaseString(MipsInstPrinter::getRegisterName(returnReg))));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Emit Set directives.
|
/// Emit Set directives.
|
||||||
@ -279,7 +282,7 @@ bool MipsAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
|
|||||||
|
|
||||||
const MachineOperand &MO = MI->getOperand(OpNum);
|
const MachineOperand &MO = MI->getOperand(OpNum);
|
||||||
assert(MO.isReg() && "unexpected inline asm memory operand");
|
assert(MO.isReg() && "unexpected inline asm memory operand");
|
||||||
O << "0($" << MipsAsmPrinter::getRegisterName(MO.getReg()) << ")";
|
O << "0($" << MipsInstPrinter::getRegisterName(MO.getReg()) << ")";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -305,7 +308,8 @@ void MipsAsmPrinter::printOperand(const MachineInstr *MI, int opNum,
|
|||||||
|
|
||||||
switch (MO.getType()) {
|
switch (MO.getType()) {
|
||||||
case MachineOperand::MO_Register:
|
case MachineOperand::MO_Register:
|
||||||
O << '$' << LowercaseString(getRegisterName(MO.getReg()));
|
O << '$'
|
||||||
|
<< LowercaseString(MipsInstPrinter::getRegisterName(MO.getReg()));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MachineOperand::MO_Immediate:
|
case MachineOperand::MO_Immediate:
|
||||||
@ -420,7 +424,17 @@ void MipsAsmPrinter::PrintDebugValueComment(const MachineInstr *MI,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Force static initialization.
|
// Force static initialization.
|
||||||
|
static MCInstPrinter *createMipsMCInstPrinter(const Target &T,
|
||||||
|
unsigned SyntaxVariant,
|
||||||
|
const MCAsmInfo &MAI) {
|
||||||
|
return new MipsInstPrinter(MAI);
|
||||||
|
}
|
||||||
|
|
||||||
extern "C" void LLVMInitializeMipsAsmPrinter() {
|
extern "C" void LLVMInitializeMipsAsmPrinter() {
|
||||||
RegisterAsmPrinter<MipsAsmPrinter> X(TheMipsTarget);
|
RegisterAsmPrinter<MipsAsmPrinter> X(TheMipsTarget);
|
||||||
RegisterAsmPrinter<MipsAsmPrinter> Y(TheMipselTarget);
|
RegisterAsmPrinter<MipsAsmPrinter> Y(TheMipselTarget);
|
||||||
|
|
||||||
|
TargetRegistry::RegisterMCInstPrinter(TheMipsTarget, createMipsMCInstPrinter);
|
||||||
|
TargetRegistry::RegisterMCInstPrinter(TheMipselTarget,
|
||||||
|
createMipsMCInstPrinter);
|
||||||
}
|
}
|
||||||
|
@ -39,10 +39,6 @@ public:
|
|||||||
return "Mips Assembly Printer";
|
return "Mips Assembly Printer";
|
||||||
}
|
}
|
||||||
|
|
||||||
// These two methods are autogen'd by tablegen.
|
|
||||||
void printInstruction(const MachineInstr *MI, raw_ostream &O);
|
|
||||||
static const char *getRegisterName(unsigned RegNo);
|
|
||||||
|
|
||||||
void EmitInstruction(const MachineInstr *MI);
|
void EmitInstruction(const MachineInstr *MI);
|
||||||
void printSavedRegsBitmask(raw_ostream &O);
|
void printSavedRegsBitmask(raw_ostream &O);
|
||||||
void printHex32(unsigned int Value, raw_ostream &O);
|
void printHex32(unsigned int Value, raw_ostream &O);
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
#include "llvm/GlobalVariable.h"
|
#include "llvm/GlobalVariable.h"
|
||||||
#include "llvm/Intrinsics.h"
|
#include "llvm/Intrinsics.h"
|
||||||
#include "llvm/CallingConv.h"
|
#include "llvm/CallingConv.h"
|
||||||
|
#include "InstPrinter/MipsInstPrinter.h"
|
||||||
#include "llvm/CodeGen/CallingConvLower.h"
|
#include "llvm/CodeGen/CallingConvLower.h"
|
||||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunction.h"
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include "MipsInstrInfo.h"
|
#include "MipsInstrInfo.h"
|
||||||
#include "MipsTargetMachine.h"
|
#include "MipsTargetMachine.h"
|
||||||
#include "MipsMachineFunction.h"
|
#include "MipsMachineFunction.h"
|
||||||
|
#include "InstPrinter/MipsInstPrinter.h"
|
||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||||
@ -29,6 +30,11 @@ MipsInstrInfo::MipsInstrInfo(MipsTargetMachine &tm)
|
|||||||
: MipsGenInstrInfo(Mips::ADJCALLSTACKDOWN, Mips::ADJCALLSTACKUP),
|
: MipsGenInstrInfo(Mips::ADJCALLSTACKDOWN, Mips::ADJCALLSTACKUP),
|
||||||
TM(tm), RI(*TM.getSubtargetImpl(), *this) {}
|
TM(tm), RI(*TM.getSubtargetImpl(), *this) {}
|
||||||
|
|
||||||
|
|
||||||
|
const MipsRegisterInfo &MipsInstrInfo::getRegisterInfo() const {
|
||||||
|
return RI;
|
||||||
|
}
|
||||||
|
|
||||||
static bool isZeroImm(const MachineOperand &op) {
|
static bool isZeroImm(const MachineOperand &op) {
|
||||||
return op.isImm() && op.getImm() == 0;
|
return op.isImm() && op.getImm() == 0;
|
||||||
}
|
}
|
||||||
|
@ -25,100 +25,9 @@
|
|||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
namespace Mips {
|
namespace Mips {
|
||||||
|
|
||||||
// Mips Branch Codes
|
|
||||||
enum FPBranchCode {
|
|
||||||
BRANCH_F,
|
|
||||||
BRANCH_T,
|
|
||||||
BRANCH_FL,
|
|
||||||
BRANCH_TL,
|
|
||||||
BRANCH_INVALID
|
|
||||||
};
|
|
||||||
|
|
||||||
// Mips Condition Codes
|
|
||||||
enum CondCode {
|
|
||||||
// To be used with float branch True
|
|
||||||
FCOND_F,
|
|
||||||
FCOND_UN,
|
|
||||||
FCOND_OEQ,
|
|
||||||
FCOND_UEQ,
|
|
||||||
FCOND_OLT,
|
|
||||||
FCOND_ULT,
|
|
||||||
FCOND_OLE,
|
|
||||||
FCOND_ULE,
|
|
||||||
FCOND_SF,
|
|
||||||
FCOND_NGLE,
|
|
||||||
FCOND_SEQ,
|
|
||||||
FCOND_NGL,
|
|
||||||
FCOND_LT,
|
|
||||||
FCOND_NGE,
|
|
||||||
FCOND_LE,
|
|
||||||
FCOND_NGT,
|
|
||||||
|
|
||||||
// To be used with float branch False
|
|
||||||
// This conditions have the same mnemonic as the
|
|
||||||
// above ones, but are used with a branch False;
|
|
||||||
FCOND_T,
|
|
||||||
FCOND_OR,
|
|
||||||
FCOND_UNE,
|
|
||||||
FCOND_ONE,
|
|
||||||
FCOND_UGE,
|
|
||||||
FCOND_OGE,
|
|
||||||
FCOND_UGT,
|
|
||||||
FCOND_OGT,
|
|
||||||
FCOND_ST,
|
|
||||||
FCOND_GLE,
|
|
||||||
FCOND_SNE,
|
|
||||||
FCOND_GL,
|
|
||||||
FCOND_NLT,
|
|
||||||
FCOND_GE,
|
|
||||||
FCOND_NLE,
|
|
||||||
FCOND_GT
|
|
||||||
};
|
|
||||||
|
|
||||||
/// GetOppositeBranchOpc - Return the inverse of the specified
|
/// GetOppositeBranchOpc - Return the inverse of the specified
|
||||||
/// opcode, e.g. turning BEQ to BNE.
|
/// opcode, e.g. turning BEQ to BNE.
|
||||||
unsigned GetOppositeBranchOpc(unsigned Opc);
|
unsigned GetOppositeBranchOpc(unsigned Opc);
|
||||||
|
|
||||||
/// MipsCCToString - Map each FP condition code to its string
|
|
||||||
inline static const char *MipsFCCToString(Mips::CondCode CC)
|
|
||||||
{
|
|
||||||
switch (CC) {
|
|
||||||
default: llvm_unreachable("Unknown condition code");
|
|
||||||
case FCOND_F:
|
|
||||||
case FCOND_T: return "f";
|
|
||||||
case FCOND_UN:
|
|
||||||
case FCOND_OR: return "un";
|
|
||||||
case FCOND_OEQ:
|
|
||||||
case FCOND_UNE: return "eq";
|
|
||||||
case FCOND_UEQ:
|
|
||||||
case FCOND_ONE: return "ueq";
|
|
||||||
case FCOND_OLT:
|
|
||||||
case FCOND_UGE: return "olt";
|
|
||||||
case FCOND_ULT:
|
|
||||||
case FCOND_OGE: return "ult";
|
|
||||||
case FCOND_OLE:
|
|
||||||
case FCOND_UGT: return "ole";
|
|
||||||
case FCOND_ULE:
|
|
||||||
case FCOND_OGT: return "ule";
|
|
||||||
case FCOND_SF:
|
|
||||||
case FCOND_ST: return "sf";
|
|
||||||
case FCOND_NGLE:
|
|
||||||
case FCOND_GLE: return "ngle";
|
|
||||||
case FCOND_SEQ:
|
|
||||||
case FCOND_SNE: return "seq";
|
|
||||||
case FCOND_NGL:
|
|
||||||
case FCOND_GL: return "ngl";
|
|
||||||
case FCOND_LT:
|
|
||||||
case FCOND_NLT: return "lt";
|
|
||||||
case FCOND_NGE:
|
|
||||||
case FCOND_GE: return "nge";
|
|
||||||
case FCOND_LE:
|
|
||||||
case FCOND_NLE: return "le";
|
|
||||||
case FCOND_NGT:
|
|
||||||
case FCOND_GT: return "ngt";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// MipsII - This namespace holds all of the target specific flags that
|
/// MipsII - This namespace holds all of the target specific flags that
|
||||||
@ -177,7 +86,7 @@ public:
|
|||||||
/// such, whenever a client has an instance of instruction info, it should
|
/// such, whenever a client has an instance of instruction info, it should
|
||||||
/// always be able to get register info as well (through this method).
|
/// always be able to get register info as well (through this method).
|
||||||
///
|
///
|
||||||
virtual const MipsRegisterInfo &getRegisterInfo() const { return RI; }
|
virtual const MipsRegisterInfo &getRegisterInfo() const;
|
||||||
|
|
||||||
/// isLoadFromStackSlot - If the specified machine instruction is a direct
|
/// isLoadFromStackSlot - If the specified machine instruction is a direct
|
||||||
/// load from a stack slot, return the virtual or physical register number of
|
/// load from a stack slot, return the virtual or physical register number of
|
||||||
|
@ -28,4 +28,5 @@ MipsMCAsmInfo::MipsMCAsmInfo(const Target &T, StringRef TT) {
|
|||||||
SupportsDebugInformation = true;
|
SupportsDebugInformation = true;
|
||||||
ExceptionsType = ExceptionHandling::DwarfCFI;
|
ExceptionsType = ExceptionHandling::DwarfCFI;
|
||||||
HasLEB128 = true;
|
HasLEB128 = true;
|
||||||
|
DwarfRegNumForCFI = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user