mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
4cf61e5269
Summary: The bug was that dextu's operand 3 would print 0-31 instead of 32-63 when printing assembly. This came up when replacing MipsInstPrinter::printUnsignedImm() with a version that could handle arbitrary bit widths. MipsAsmPrinter::printUnsignedImm*() don't seem to be used so they have been removed. Reviewers: vkalintiris Subscribers: dsanders, llvm-commits Differential Revision: http://reviews.llvm.org/D15521 llvm-svn: 262231
150 lines
5.4 KiB
C++
150 lines
5.4 KiB
C++
//===-- MipsAsmPrinter.h - Mips LLVM Assembly Printer ----------*- C++ -*--===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Mips Assembly printer class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_MIPS_MIPSASMPRINTER_H
|
|
#define LLVM_LIB_TARGET_MIPS_MIPSASMPRINTER_H
|
|
|
|
#include "Mips16HardFloatInfo.h"
|
|
#include "MipsMCInstLower.h"
|
|
#include "MipsMachineFunction.h"
|
|
#include "MipsSubtarget.h"
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
namespace llvm {
|
|
class MCStreamer;
|
|
class MachineInstr;
|
|
class MachineBasicBlock;
|
|
class MipsTargetStreamer;
|
|
class Module;
|
|
class raw_ostream;
|
|
|
|
class LLVM_LIBRARY_VISIBILITY MipsAsmPrinter : public AsmPrinter {
|
|
MipsTargetStreamer &getTargetStreamer() const;
|
|
|
|
void EmitInstrWithMacroNoAT(const MachineInstr *MI);
|
|
|
|
private:
|
|
// tblgen'erated function.
|
|
bool emitPseudoExpansionLowering(MCStreamer &OutStreamer,
|
|
const MachineInstr *MI);
|
|
|
|
// Emit PseudoReturn, PseudoReturn64, PseudoIndirectBranch,
|
|
// and PseudoIndirectBranch64 as a JR, JR_MM, JALR, or JALR64 as appropriate
|
|
// for the target.
|
|
void emitPseudoIndirectBranch(MCStreamer &OutStreamer,
|
|
const MachineInstr *MI);
|
|
|
|
// lowerOperand - Convert a MachineOperand into the equivalent MCOperand.
|
|
bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp);
|
|
|
|
/// MCP - Keep a pointer to constantpool entries of the current
|
|
/// MachineFunction.
|
|
const MachineConstantPool *MCP;
|
|
|
|
/// InConstantPool - Maintain state when emitting a sequence of constant
|
|
/// pool entries so we can properly mark them as data regions.
|
|
bool InConstantPool;
|
|
|
|
std::map<const char *, const llvm::Mips16HardFloatInfo::FuncSignature *>
|
|
StubsNeeded;
|
|
|
|
void emitInlineAsmStart() const override;
|
|
|
|
void emitInlineAsmEnd(const MCSubtargetInfo &StartInfo,
|
|
const MCSubtargetInfo *EndInfo) const override;
|
|
|
|
void EmitJal(const MCSubtargetInfo &STI, MCSymbol *Symbol);
|
|
|
|
void EmitInstrReg(const MCSubtargetInfo &STI, unsigned Opcode, unsigned Reg);
|
|
|
|
void EmitInstrRegReg(const MCSubtargetInfo &STI, unsigned Opcode,
|
|
unsigned Reg1, unsigned Reg2);
|
|
|
|
void EmitInstrRegRegReg(const MCSubtargetInfo &STI, unsigned Opcode,
|
|
unsigned Reg1, unsigned Reg2, unsigned Reg3);
|
|
|
|
void EmitMovFPIntPair(const MCSubtargetInfo &STI, unsigned MovOpc,
|
|
unsigned Reg1, unsigned Reg2, unsigned FPReg1,
|
|
unsigned FPReg2, bool LE);
|
|
|
|
void EmitSwapFPIntParams(const MCSubtargetInfo &STI,
|
|
Mips16HardFloatInfo::FPParamVariant, bool LE,
|
|
bool ToFP);
|
|
|
|
void EmitSwapFPIntRetval(const MCSubtargetInfo &STI,
|
|
Mips16HardFloatInfo::FPReturnVariant, bool LE);
|
|
|
|
void EmitFPCallStub(const char *, const Mips16HardFloatInfo::FuncSignature *);
|
|
|
|
void NaClAlignIndirectJumpTargets(MachineFunction &MF);
|
|
|
|
bool isLongBranchPseudo(int Opcode) const;
|
|
|
|
public:
|
|
|
|
const MipsSubtarget *Subtarget;
|
|
const MipsFunctionInfo *MipsFI;
|
|
MipsMCInstLower MCInstLowering;
|
|
|
|
explicit MipsAsmPrinter(TargetMachine &TM,
|
|
std::unique_ptr<MCStreamer> Streamer)
|
|
: AsmPrinter(TM, std::move(Streamer)), MCP(nullptr),
|
|
InConstantPool(false), MCInstLowering(*this) {}
|
|
|
|
const char *getPassName() const override {
|
|
return "Mips Assembly Printer";
|
|
}
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override;
|
|
|
|
void EmitConstantPool() override {
|
|
bool UsingConstantPools =
|
|
(Subtarget->inMips16Mode() && Subtarget->useConstantIslands());
|
|
if (!UsingConstantPools)
|
|
AsmPrinter::EmitConstantPool();
|
|
// we emit constant pools customly!
|
|
}
|
|
|
|
void EmitInstruction(const MachineInstr *MI) override;
|
|
void printSavedRegsBitmask();
|
|
void emitFrameDirective();
|
|
const char *getCurrentABIString() const;
|
|
void EmitFunctionEntryLabel() override;
|
|
void EmitFunctionBodyStart() override;
|
|
void EmitFunctionBodyEnd() override;
|
|
void EmitBasicBlockEnd(const MachineBasicBlock &MBB) override;
|
|
bool isBlockOnlyReachableByFallthrough(
|
|
const MachineBasicBlock* MBB) const override;
|
|
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
unsigned AsmVariant, const char *ExtraCode,
|
|
raw_ostream &O) override;
|
|
bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
|
|
unsigned AsmVariant, const char *ExtraCode,
|
|
raw_ostream &O) override;
|
|
void printOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
|
|
void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
|
|
void printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O);
|
|
void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
|
|
const char *Modifier = nullptr);
|
|
void printRegisterList(const MachineInstr *MI, int opNum, raw_ostream &O);
|
|
void EmitStartOfAsmFile(Module &M) override;
|
|
void EmitEndOfAsmFile(Module &M) override;
|
|
void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|