|
LLVM
3.7.0
|
#include <MipsAsmPrinter.h>
Public Member Functions | |
| MipsAsmPrinter (TargetMachine &TM, std::unique_ptr< MCStreamer > Streamer) | |
| const char * | getPassName () const override |
| getPassName - Return a nice clean name for a pass. More... | |
| bool | runOnMachineFunction (MachineFunction &MF) override |
| Emit the specified function out to the OutStreamer. More... | |
| void | EmitConstantPool () override |
| Print to the current output stream assembly representations of the constants in the constant pool MCP. More... | |
| void | EmitInstruction (const MachineInstr *MI) override |
| Targets should implement this to emit instructions. More... | |
| void | printSavedRegsBitmask () |
| void | emitFrameDirective () |
| Frame Directive. More... | |
| const char * | getCurrentABIString () const |
| Emit Set directives. More... | |
| void | EmitFunctionEntryLabel () override |
| EmitFunctionEntryLabel - Emit the label that is the entrypoint for the function. More... | |
| void | EmitFunctionBodyStart () override |
| EmitFunctionBodyStart - Targets can override this to emit stuff before the first basic block in the function. More... | |
| void | EmitFunctionBodyEnd () override |
| EmitFunctionBodyEnd - Targets can override this to emit stuff after the last basic block in the function. More... | |
| void | EmitBasicBlockEnd (const MachineBasicBlock &MBB) override |
| Targets can override this to emit stuff at the end of a basic block. More... | |
| bool | isBlockOnlyReachableByFallthrough (const MachineBasicBlock *MBB) const override |
| 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. More... | |
| bool | PrintAsmOperand (const MachineInstr *MI, unsigned OpNo, unsigned AsmVariant, const char *ExtraCode, raw_ostream &O) override |
| Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant. More... | |
| bool | PrintAsmMemoryOperand (const MachineInstr *MI, unsigned OpNum, unsigned AsmVariant, const char *ExtraCode, raw_ostream &O) override |
| Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant as an address. More... | |
| void | printOperand (const MachineInstr *MI, int opNum, raw_ostream &O) |
| void | printUnsignedImm (const MachineInstr *MI, int opNum, raw_ostream &O) |
| void | printUnsignedImm8 (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 |
| This virtual method can be overridden by targets that want to emit something at the start of their file. More... | |
| void | EmitEndOfAsmFile (Module &M) override |
| This virtual method can be overridden by targets that want to emit something at the end of their file. More... | |
| void | PrintDebugValueComment (const MachineInstr *MI, raw_ostream &OS) |
Public Member Functions inherited from llvm::AsmPrinter | |
| ~AsmPrinter () override | |
| DwarfDebug * | getDwarfDebug () |
| DwarfDebug * | getDwarfDebug () const |
| bool | isVerbose () const |
| Return true if assembly output should contain comments. More... | |
| unsigned | getFunctionNumber () const |
| Return a unique ID for the current function. More... | |
| MCSymbol * | getFunctionBegin () const |
| MCSymbol * | getFunctionEnd () const |
| MCSymbol * | getCurExceptionSym () |
| const TargetLoweringObjectFile & | getObjFileLowering () const |
| Return information about object file lowering. More... | |
| const DataLayout & | getDataLayout () const |
| Return information about data layout. More... | |
| const MCSubtargetInfo & | getSubtargetInfo () const |
| Return information about subtarget. More... | |
| void | EmitToStreamer (MCStreamer &S, const MCInst &Inst) |
| StringRef | getTargetTriple () const |
| Return the target triple string. More... | |
| const MCSection * | getCurrentSection () const |
| Return the current section we are emitting to. More... | |
| void | getNameWithPrefix (SmallVectorImpl< char > &Name, const GlobalValue *GV) const |
| MCSymbol * | getSymbol (const GlobalValue *GV) const |
| void | getAnalysisUsage (AnalysisUsage &AU) const override |
| Record analysis usage. More... | |
| bool | doInitialization (Module &M) override |
| Set up the AsmPrinter when we are working on a new module. More... | |
| bool | doFinalization (Module &M) override |
| Shut down the asmprinter. More... | |
| void | SetupMachineFunction (MachineFunction &MF) |
| This should be called when a new MachineFunction is being processed from runOnMachineFunction. More... | |
| void | EmitFunctionBody () |
| This method emits the body and trailer for a function. More... | |
| void | emitCFIInstruction (const MachineInstr &MI) |
| void | emitFrameAlloc (const MachineInstr &MI) |
| CFIMoveType | needsCFIMoves () |
| bool | needsSEHMoves () |
| void | EmitJumpTableInfo () |
| Print assembly representations of the jump tables used by the current function to the current output stream. More... | |
| virtual void | EmitGlobalVariable (const GlobalVariable *GV) |
| Emit the specified global variable to the .s file. More... | |
| bool | EmitSpecialLLVMGlobal (const GlobalVariable *GV) |
| Check to see if the specified global is a special global used by LLVM. More... | |
| void | EmitAlignment (unsigned NumBits, const GlobalObject *GO=nullptr) const |
| Emit an alignment directive to the specified power of two boundary. More... | |
| const MCExpr * | lowerConstant (const Constant *CV) |
| Lower the specified LLVM Constant to an MCExpr. More... | |
| void | EmitGlobalConstant (const Constant *CV) |
| Print a general LLVM constant to the .s file. More... | |
| void | computeGlobalGOTEquivs (Module &M) |
| Unnamed constant global variables solely contaning a pointer to another globals variable act like a global variable "proxy", or GOT equivalents, i.e., it's only used to hold the address of the latter. More... | |
| void | emitGlobalGOTEquivs () |
| Constant expressions using GOT equivalent globals may not be eligible for PC relative GOT entry conversion, in such cases we need to emit the proxies we previously omitted in EmitGlobalVariable. More... | |
| virtual void | EmitBasicBlockStart (const MachineBasicBlock &MBB) const |
| Targets can override this to emit stuff at the start of a basic block. More... | |
| virtual MCSymbol * | GetCPISymbol (unsigned CPID) const |
| Return the symbol for the specified constant pool entry. More... | |
| virtual void | EmitMachineConstantPoolValue (MachineConstantPoolValue *MCPV) |
| virtual void | EmitXXStructor (const Constant *CV) |
| Targets can override this to change how global constants that are part of a C++ static/global constructor list are emitted. More... | |
| virtual void | emitImplicitDef (const MachineInstr *MI) const |
| Targets can override this to customize the output of IMPLICIT_DEF instructions in verbose mode. More... | |
| MCSymbol * | createTempSymbol (const Twine &Name) const |
| MCSymbol * | getSymbolWithGlobalValueBase (const GlobalValue *GV, StringRef Suffix) const |
| Return the MCSymbol for a private symbol with global value name as its base, with the specified suffix. More... | |
| MCSymbol * | GetExternalSymbolSymbol (StringRef Sym) const |
| Return the MCSymbol for the specified ExternalSymbol. More... | |
| MCSymbol * | GetJTISymbol (unsigned JTID, bool isLinkerPrivate=false) const |
| Return the symbol for the specified jump table entry. More... | |
| MCSymbol * | GetJTSetSymbol (unsigned UID, unsigned MBBID) const |
| Return the symbol for the specified jump table .set FIXME: privatize to AsmPrinter. More... | |
| MCSymbol * | GetBlockAddressSymbol (const BlockAddress *BA) const |
| Return the MCSymbol used to satisfy BlockAddress uses of the specified basic block. More... | |
| MCSymbol * | GetBlockAddressSymbol (const BasicBlock *BB) const |
| void | printOffset (int64_t Offset, raw_ostream &OS) const |
| This is just convenient handler for printing offsets. More... | |
| void | EmitInt8 (int Value) const |
| Emit a byte directive and value. More... | |
| void | EmitInt16 (int Value) const |
| Emit a short directive and value. More... | |
| void | EmitInt32 (int Value) const |
| Emit a long directive and value. More... | |
| void | EmitLabelDifference (const MCSymbol *Hi, const MCSymbol *Lo, unsigned Size) const |
| Emit something like ".long Hi-Lo" where the size in bytes of the directive is specified by Size and Hi/Lo specify the labels. More... | |
| void | EmitLabelPlusOffset (const MCSymbol *Label, uint64_t Offset, unsigned Size, bool IsSectionRelative=false) const |
| Emit something like ".long Label+Offset" where the size in bytes of the directive is specified by Size and Label specifies the label. More... | |
| void | EmitLabelReference (const MCSymbol *Label, unsigned Size, bool IsSectionRelative=false) const |
| Emit something like ".long Label" where the size in bytes of the directive is specified by Size and Label specifies the label. More... | |
| void | EmitSLEB128 (int64_t Value, const char *Desc=nullptr) const |
| Emit the specified signed leb128 value. More... | |
| void | EmitULEB128 (uint64_t Value, const char *Desc=nullptr, unsigned PadTo=0) const |
| Emit the specified unsigned leb128 value. More... | |
| void | EmitCFAByte (unsigned Val) const |
| Emit a .byte 42 directive for a DW_CFA_xxx value. More... | |
| void | EmitEncodingByte (unsigned Val, const char *Desc=nullptr) const |
| Emit a .byte 42 directive that corresponds to an encoding. More... | |
| unsigned | GetSizeOfEncodedValue (unsigned Encoding) const |
| Return the size of the encoding in bytes. More... | |
| void | EmitTTypeReference (const GlobalValue *GV, unsigned Encoding) const |
| Emit reference to a ttype global with a specified encoding. More... | |
| void | emitDwarfSymbolReference (const MCSymbol *Label, bool ForceOffset=false) const |
| Emit a reference to a symbol for use in dwarf. More... | |
| void | emitDwarfStringOffset (DwarfStringPoolEntryRef S) const |
| Emit the 4-byte offset of a string from the start of its section. More... | |
| virtual unsigned | getISAEncoding () |
| Get the value for DW_AT_APPLE_isa. Zero if no isa encoding specified. More... | |
| virtual void | EmitDwarfRegOp (ByteStreamer &BS, const MachineLocation &MLoc) const |
| EmitDwarfRegOp - Emit a dwarf register operation. More... | |
| void | emitCFIInstruction (const MCCFIInstruction &Inst) const |
| Emit frame instruction to describe the layout of the frame. More... | |
| void | emitDwarfAbbrevs (const std::vector< DIEAbbrev * > &Abbrevs) const |
| Emit Dwarf abbreviation table. More... | |
| void | emitDwarfDIE (const DIE &Die) const |
| Recursively emit Dwarf DIE tree. More... | |
| virtual void | PrintSpecial (const MachineInstr *MI, raw_ostream &OS, const char *Code) const |
| Print information related to the specified machine instr that is independent of the operand, and may be independent of the instr itself. More... | |
Public Member Functions inherited from llvm::FunctionPass | |
| FunctionPass (char &pid) | |
| Pass * | createPrinterPass (raw_ostream &O, const std::string &Banner) const override |
| createPrinterPass - Get a function printer pass. More... | |
| void | assignPassManager (PMStack &PMS, PassManagerType T) override |
| Find appropriate Function Pass Manager or Call Graph Pass Manager in the PM Stack and add self into that manager. More... | |
| PassManagerType | getPotentialPassManagerType () const override |
| Return what kind of Pass Manager can manage this pass. More... | |
Public Member Functions inherited from llvm::Pass | |
| Pass (PassKind K, char &pid) | |
| virtual | ~Pass () |
| PassKind | getPassKind () const |
| AnalysisID | getPassID () const |
| getPassID - Return the PassID number that corresponds to this pass. More... | |
| virtual void | print (raw_ostream &O, const Module *M) const |
| print - Print out the internal state of the pass. More... | |
| void | dump () const |
| virtual void | preparePassManager (PMStack &) |
| Check if available pass managers are suitable for this pass or not. More... | |
| void | setResolver (AnalysisResolver *AR) |
| AnalysisResolver * | getResolver () const |
| virtual void | releaseMemory () |
| releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memory when it is no longer needed. More... | |
| virtual void * | getAdjustedAnalysisPointer (AnalysisID ID) |
| getAdjustedAnalysisPointer - This method is used when a pass implements an analysis interface through multiple inheritance. More... | |
| virtual ImmutablePass * | getAsImmutablePass () |
| virtual PMDataManager * | getAsPMDataManager () |
| virtual void | verifyAnalysis () const |
| verifyAnalysis() - This member can be implemented by a analysis pass to check state of analysis information. More... | |
| virtual void | dumpPassStructure (unsigned Offset=0) |
| template<typename AnalysisType > | |
| AnalysisType * | getAnalysisIfAvailable () const |
| getAnalysisIfAvailable<AnalysisType>() - Subclasses use this function to get analysis information that might be around, for example to update it. More... | |
| bool | mustPreserveAnalysisID (char &AID) const |
| mustPreserveAnalysisID - This method serves the same function as getAnalysisIfAvailable, but works if you just have an AnalysisID. More... | |
| template<typename AnalysisType > | |
| AnalysisType & | getAnalysis () const |
| getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information that they claim to use by overriding the getAnalysisUsage function. More... | |
| template<typename AnalysisType > | |
| AnalysisType & | getAnalysis (Function &F) |
| getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information that they claim to use by overriding the getAnalysisUsage function. More... | |
| template<typename AnalysisType > | |
| AnalysisType & | getAnalysisID (AnalysisID PI) const |
| template<typename AnalysisType > | |
| AnalysisType & | getAnalysisID (AnalysisID PI, Function &F) |
Public Attributes | |
| const MipsSubtarget * | Subtarget |
| const MipsFunctionInfo * | MipsFI |
| MipsMCInstLower | MCInstLowering |
Public Attributes inherited from llvm::AsmPrinter | |
| TargetMachine & | TM |
| Target machine description. More... | |
| const MCAsmInfo * | MAI |
| Target Asm Printer information. More... | |
| MCContext & | OutContext |
| This is the context for the output file that we are streaming. More... | |
| std::unique_ptr< MCStreamer > | OutStreamer |
| This is the MCStreamer object for the file we are generating. More... | |
| const MachineFunction * | MF |
| The current machine function. More... | |
| MachineModuleInfo * | MMI |
| This is a pointer to the current MachineModuleInfo. More... | |
| Mangler * | Mang |
| Name-mangler for global names. More... | |
| MCSymbol * | CurrentFnSym |
| The symbol for the current function. More... | |
| MCSymbol * | CurrentFnSymForSize |
| The symbol used to represent the start of the current function for the purpose of calculating its size (e.g. More... | |
| MapVector< const MCSymbol *, GOTEquivUsePair > | GlobalGOTEquivs |
Additional Inherited Members | |
Public Types inherited from llvm::AsmPrinter | |
| enum | CFIMoveType { CFI_M_None, CFI_M_EH, CFI_M_Debug } |
| typedef std::pair< const GlobalVariable *, unsigned > | GOTEquivUsePair |
| Map global GOT equivalent MCSymbols to GlobalVariables and keep track of its number of uses by other globals. More... | |
Static Public Member Functions inherited from llvm::Pass | |
| static const PassInfo * | lookupPassInfo (const void *TI) |
| static const PassInfo * | lookupPassInfo (StringRef Arg) |
| static Pass * | createPass (AnalysisID ID) |
Protected Member Functions inherited from llvm::AsmPrinter | |
| AsmPrinter (TargetMachine &TM, std::unique_ptr< MCStreamer > Streamer) | |
Protected Member Functions inherited from llvm::MachineFunctionPass | |
| MachineFunctionPass (char &ID) | |
| void | getAnalysisUsage (AnalysisUsage &AU) const override |
| getAnalysisUsage - Subclasses that override getAnalysisUsage must call this. More... | |
Protected Member Functions inherited from llvm::FunctionPass | |
| bool | skipOptnoneFunction (const Function &F) const |
| skipOptnoneFunction - This function has Attribute::OptimizeNone and most transformation passes should skip it. More... | |
Definition at line 33 of file MipsAsmPrinter.h.
|
inlineexplicit |
Definition at line 101 of file MipsAsmPrinter.h.
|
overridevirtual |
Targets can override this to emit stuff at the end of a basic block.
Reimplemented from llvm::AsmPrinter.
Definition at line 386 of file MipsAsmPrinter.cpp.
References llvm::MipsTargetStreamer::emitDirectiveInsn(), llvm::MachineBasicBlock::size(), and fuzzer::TS.
|
inlineoverridevirtual |
Print to the current output stream assembly representations of the constants in the constant pool MCP.
EmitConstantPool - Print to the current output stream assembly representations of the constants in the constant pool MCP.
This is used to print out constants which have been "spilled to memory" by the code generator.
Reimplemented from llvm::AsmPrinter.
Definition at line 112 of file MipsAsmPrinter.h.
References llvm::AsmPrinter::EmitConstantPool().
|
overridevirtual |
This virtual method can be overridden by targets that want to emit something at the end of their file.
Reimplemented from llvm::AsmPrinter.
Definition at line 1039 of file MipsAsmPrinter.cpp.
References llvm::MCContext::getObjectFileInfo(), llvm::MCObjectFileInfo::getTextSection(), llvm::AsmPrinter::OutContext, and llvm::MCStreamer::SwitchSection().
| void MipsAsmPrinter::emitFrameDirective | ( | ) |
Frame Directive.
Definition at line 300 of file MipsAsmPrinter.cpp.
References llvm::MipsTargetStreamer::emitFrame(), llvm::MachineFunction::getFrameInfo(), llvm::TargetRegisterInfo::getFrameRegister(), llvm::MCRegisterInfo::getRARegister(), llvm::TargetSubtargetInfo::getRegisterInfo(), llvm::MachineFrameInfo::getStackSize(), llvm::MachineFunction::getSubtarget(), and llvm::AsmPrinter::MF.
Referenced by EmitFunctionBodyStart().
|
overridevirtual |
EmitFunctionBodyEnd - Targets can override this to emit stuff after the last basic block in the function.
Reimplemented from llvm::AsmPrinter.
Definition at line 366 of file MipsAsmPrinter.cpp.
References llvm::AsmPrinter::CurrentFnSym, llvm::MCStreamer::EmitDataRegion(), llvm::MipsTargetStreamer::emitDirectiveEnd(), llvm::MipsTargetStreamer::emitDirectiveSetAt(), llvm::MipsTargetStreamer::emitDirectiveSetMacro(), llvm::MipsTargetStreamer::emitDirectiveSetReorder(), llvm::MCSymbol::getName(), llvm::MipsSubtarget::inMips16Mode(), llvm::MCDR_DataRegionEnd, Subtarget, and fuzzer::TS.
|
overridevirtual |
EmitFunctionBodyStart - Targets can override this to emit stuff before the first basic block in the function.
Reimplemented from llvm::AsmPrinter.
Definition at line 345 of file MipsAsmPrinter.cpp.
References llvm::MipsTargetStreamer::emitDirectiveSetNoAt(), llvm::MipsTargetStreamer::emitDirectiveSetNoMacro(), llvm::MipsTargetStreamer::emitDirectiveSetNoReorder(), emitFrameDirective(), llvm::MachineFunction::getContext(), llvm::MachineFunction::getFunction(), llvm::Function::hasFnAttribute(), llvm::MipsMCInstLower::Initialize(), llvm::MipsSubtarget::inMips16Mode(), MCInstLowering, llvm::AsmPrinter::MF, llvm::Attribute::Naked, printSavedRegsBitmask(), Subtarget, and fuzzer::TS.
|
overridevirtual |
EmitFunctionEntryLabel - Emit the label that is the entrypoint for the function.
This can be overridden by targets as required to do custom stuff.
Reimplemented from llvm::AsmPrinter.
Definition at line 321 of file MipsAsmPrinter.cpp.
References llvm::AsmPrinter::CurrentFnSym, llvm::AsmPrinter::EmitAlignment(), llvm::MipsTargetStreamer::emitDirectiveEnt(), llvm::MipsTargetStreamer::emitDirectiveSetMicroMips(), llvm::MipsTargetStreamer::emitDirectiveSetMips16(), llvm::MipsTargetStreamer::emitDirectiveSetNoMicroMips(), llvm::MipsTargetStreamer::emitDirectiveSetNoMips16(), llvm::MCStreamer::EmitLabel(), llvm::MachineFunction::getAlignment(), llvm::MipsSubtarget::inMicroMipsMode(), llvm::MipsSubtarget::inMips16Mode(), llvm::MipsSubtarget::isTargetNaCl(), llvm::AsmPrinter::MF, llvm::MIPS_NACL_BUNDLE_ALIGN, Subtarget, and fuzzer::TS.
|
overridevirtual |
Targets should implement this to emit instructions.
Reimplemented from llvm::AsmPrinter.
Definition at line 132 of file MipsAsmPrinter.cpp.
References llvm::MachineConstantPoolEntry::ConstVal, llvm::MCStreamer::EmitDataRegion(), llvm::AsmPrinter::EmitGlobalConstant(), llvm::MCStreamer::EmitLabel(), llvm::AsmPrinter::EmitMachineConstantPoolValue(), llvm::AsmPrinter::EmitToStreamer(), llvm::MipsTargetStreamer::forbidModuleDirective(), llvm::MachineConstantPool::getConstants(), llvm::AsmPrinter::GetCPISymbol(), llvm::MachineOperand::getImm(), llvm::MachineOperand::getIndex(), llvm::MachineInstr::getOpcode(), llvm::MachineInstr::getOperand(), llvm::MachineInstr::getParent(), I, llvm::MipsSubtarget::inMips16Mode(), llvm::MachineBasicBlock::instr_end(), llvm::MachineInstr::isDebugValue(), llvm::MachineConstantPoolEntry::isMachineConstantPoolEntry(), llvm_unreachable, llvm::MipsMCInstLower::Lower(), llvm::MachineConstantPoolEntry::MachineCPVal, llvm::MCDR_DataRegion, llvm::MCDR_DataRegionEnd, MCInstLowering, llvm::AArch64CC::MI, PrintDebugValueComment(), Subtarget, fuzzer::TS, and llvm::MachineConstantPoolEntry::Val.
|
overridevirtual |
This virtual method can be overridden by targets that want to emit something at the start of their file.
Reimplemented from llvm::AsmPrinter.
Definition at line 690 of file MipsAsmPrinter.cpp.
References llvm::MipsTargetStreamer::emitDirectiveAbiCalls(), llvm::MipsTargetStreamer::emitDirectiveModuleFP(), llvm::MipsTargetStreamer::emitDirectiveModuleOddSPReg(), llvm::MipsTargetStreamer::emitDirectiveNaN2008(), llvm::MipsTargetStreamer::emitDirectiveNaNLegacy(), llvm::MipsTargetStreamer::emitDirectiveOptionPic0(), llvm::FS, llvm::MipsTargetMachine::getABI(), getCurrentABIString(), llvm::MCContext::getELFSection(), llvm::TargetMachine::getRelocationModel(), llvm::TargetMachine::getTargetCPU(), llvm::TargetMachine::getTargetFeatureString(), llvm::TargetMachine::getTargetTriple(), llvm::MipsSubtarget::isABICalls(), llvm::MipsABIInfo::IsEABI(), llvm::MipsTargetMachine::isLittleEndian(), llvm::MipsABIInfo::IsN64(), llvm::MipsABIInfo::IsO32(), llvm::AsmPrinter::OutContext, llvm::NVPTX::PTXCvtMode::RM, llvm::MIPS_MC::selectMipsCPU(), llvm::ELF::SHT_PROGBITS, llvm::Reloc::Static, llvm::MCStreamer::SwitchSection(), llvm::AsmPrinter::TM, and llvm::MipsTargetStreamer::updateABIInfo().
| const char * MipsAsmPrinter::getCurrentABIString | ( | ) | const |
Emit Set directives.
Definition at line 311 of file MipsAsmPrinter.cpp.
References llvm::MipsABIInfo::EABI, llvm_unreachable, llvm::MipsABIInfo::N32, llvm::MipsABIInfo::N64, llvm::MipsABIInfo::O32, and llvm::AsmPrinter::TM.
Referenced by EmitStartOfAsmFile().
|
inlineoverridevirtual |
getPassName - Return a nice clean name for a pass.
This usually implemented in terms of the name that is registered by one of the Registration templates, but can be overloaded directly.
Reimplemented from llvm::Pass.
Definition at line 106 of file MipsAsmPrinter.h.
|
overridevirtual |
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.
Reimplemented from llvm::AsmPrinter.
Definition at line 395 of file MipsAsmPrinter.cpp.
References llvm::MachineBasicBlock::begin(), llvm::MachineBasicBlock::empty(), llvm::MachineBasicBlock::end(), llvm::MachineBasicBlock::getBasicBlock(), I, llvm::MachineBasicBlock::isLandingPad(), llvm::MachineBasicBlock::isLayoutSuccessor(), llvm::MachineBasicBlock::pred_begin(), llvm::MachineBasicBlock::pred_empty(), and llvm::MachineBasicBlock::pred_end().
|
overridevirtual |
Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant as an address.
Targets should override this to format as appropriate. This method can return true if the operand is erroneous.
Reimplemented from llvm::AsmPrinter.
Definition at line 534 of file MipsAsmPrinter.cpp.
References llvm::MachineOperand::getImm(), llvm::MachineInstr::getNumOperands(), llvm::MachineInstr::getOperand(), llvm::MipsInstPrinter::getRegisterName(), and llvm::MachineOperand::isImm().
|
overridevirtual |
Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant.
PrintAsmOperand - Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant.
Targets should override this to format as appropriate. This method can return true if the operand is erroneous.
Targets should override this to format as appropriate.
Reimplemented from llvm::AsmPrinter.
Definition at line 435 of file MipsAsmPrinter.cpp.
References llvm::MachineOperand::getImm(), llvm::InlineAsm::getNumOperandRegisters(), llvm::MachineInstr::getNumOperands(), llvm::MachineInstr::getOperand(), llvm::MachineOperand::getReg(), llvm::MipsInstPrinter::getRegisterName(), llvm::MachineOperand::getType(), llvm::MipsSubtarget::isGP64bit(), llvm::MachineOperand::isImm(), llvm::MipsSubtarget::isLittle(), llvm::MachineOperand::isReg(), llvm::MachineOperand::MO_Immediate, llvm::AsmPrinter::PrintAsmOperand(), printOperand(), Subtarget, and llvm::Twine::utohexstr().
| void MipsAsmPrinter::PrintDebugValueComment | ( | const MachineInstr * | MI, |
| raw_ostream & | OS | ||
| ) |
Definition at line 1055 of file MipsAsmPrinter.cpp.
Referenced by EmitInstruction().
| void MipsAsmPrinter::printFCCOperand | ( | const MachineInstr * | MI, |
| int | opNum, | ||
| raw_ostream & | O, | ||
| const char * | Modifier = nullptr |
||
| ) |
Definition at line 676 of file MipsAsmPrinter.cpp.
References llvm::MachineOperand::getImm(), llvm::MachineInstr::getOperand(), and llvm::Mips::MipsFCCToString().
| void MipsAsmPrinter::printMemOperand | ( | const MachineInstr * | MI, |
| int | opNum, | ||
| raw_ostream & | O | ||
| ) |
Definition at line 643 of file MipsAsmPrinter.cpp.
References llvm::MachineInstr::getNumOperands(), llvm::MachineInstr::getOpcode(), and printOperand().
| void MipsAsmPrinter::printMemOperandEA | ( | const MachineInstr * | MI, |
| int | opNum, | ||
| raw_ostream & | O | ||
| ) |
Definition at line 666 of file MipsAsmPrinter.cpp.
References printOperand().
| void MipsAsmPrinter::printOperand | ( | const MachineInstr * | MI, |
| int | opNum, | ||
| raw_ostream & | O | ||
| ) |
Definition at line 560 of file MipsAsmPrinter.cpp.
References llvm::DL, llvm::MachineOperand::getBlockAddress(), llvm::AsmPrinter::GetBlockAddressSymbol(), llvm::TargetMachine::getDataLayout(), llvm::AsmPrinter::getFunctionNumber(), llvm::MachineOperand::getGlobal(), llvm::MachineOperand::getImm(), llvm::MachineOperand::getIndex(), llvm::MachineOperand::getMBB(), llvm::MCSymbol::getName(), llvm::MachineOperand::getOffset(), llvm::MachineInstr::getOperand(), llvm::DataLayout::getPrivateGlobalPrefix(), llvm::MachineOperand::getReg(), llvm::MipsInstPrinter::getRegisterName(), llvm::AsmPrinter::getSymbol(), llvm::MachineBasicBlock::getSymbol(), llvm::MachineOperand::getTargetFlags(), llvm::MachineOperand::getType(), llvm_unreachable, llvm::StringRef::lower(), llvm::AsmPrinter::MAI, llvm::MipsII::MO_ABS_HI, llvm::MipsII::MO_ABS_LO, llvm::MachineOperand::MO_BlockAddress, llvm::MachineOperand::MO_ConstantPoolIndex, llvm::MachineOperand::MO_GlobalAddress, llvm::MipsII::MO_GOT, llvm::MipsII::MO_GOT_CALL, llvm::MipsII::MO_GOT_DISP, llvm::MipsII::MO_GOT_OFST, llvm::MipsII::MO_GOT_PAGE, llvm::MipsII::MO_GOTTPREL, llvm::MipsII::MO_GPOFF_HI, llvm::MipsII::MO_GPOFF_LO, llvm::MipsII::MO_GPREL, llvm::MachineOperand::MO_Immediate, llvm::MachineOperand::MO_MachineBasicBlock, llvm::MachineOperand::MO_Register, llvm::MipsII::MO_TLSGD, llvm::MipsII::MO_TPREL_HI, llvm::MipsII::MO_TPREL_LO, llvm::Pass::print(), llvm::MCSymbol::print(), and llvm::AsmPrinter::TM.
Referenced by PrintAsmOperand(), printMemOperand(), printMemOperandEA(), printRegisterList(), printUnsignedImm(), and printUnsignedImm8().
| void MipsAsmPrinter::printRegisterList | ( | const MachineInstr * | MI, |
| int | opNum, | ||
| raw_ostream & | O | ||
| ) |
Definition at line 683 of file MipsAsmPrinter.cpp.
References llvm::MachineInstr::getNumOperands(), and printOperand().
| void MipsAsmPrinter::printSavedRegsBitmask | ( | ) |
Definition at line 247 of file MipsAsmPrinter.cpp.
References contains(), llvm::MipsTargetStreamer::emitFMask(), llvm::MipsTargetStreamer::emitMask(), llvm::MachineFrameInfo::getCalleeSavedInfo(), llvm::MCRegisterInfo::getEncodingValue(), llvm::MachineFunction::getFrameInfo(), llvm::TargetSubtargetInfo::getRegisterInfo(), llvm::MachineFunction::getSubtarget(), I, llvm::AsmPrinter::MF, and fuzzer::TS.
Referenced by EmitFunctionBodyStart().
| void MipsAsmPrinter::printUnsignedImm | ( | const MachineInstr * | MI, |
| int | opNum, | ||
| raw_ostream & | O | ||
| ) |
Definition at line 624 of file MipsAsmPrinter.cpp.
References llvm::MachineOperand::getImm(), llvm::MachineInstr::getOperand(), llvm::MachineOperand::isImm(), and printOperand().
| void MipsAsmPrinter::printUnsignedImm8 | ( | const MachineInstr * | MI, |
| int | opNum, | ||
| raw_ostream & | O | ||
| ) |
Definition at line 633 of file MipsAsmPrinter.cpp.
References llvm::MachineOperand::getImm(), llvm::MachineInstr::getOperand(), llvm::MachineOperand::isImm(), and printOperand().
|
overridevirtual |
Emit the specified function out to the OutStreamer.
Reimplemented from llvm::AsmPrinter.
Definition at line 60 of file MipsAsmPrinter.cpp.
References llvm::MachineFunction::getConstantPool(), llvm::MachineFunction::getInfo(), llvm::AsmPrinter::getObjFileLowering(), llvm::MachineFunction::getSubtarget(), llvm::MipsSubtarget::inMips16Mode(), llvm::MipsSubtarget::isTargetNaCl(), MipsFI, llvm::AsmPrinter::OutContext, llvm::AsmPrinter::runOnMachineFunction(), llvm::MipsFunctionInfo::StubsNeeded, Subtarget, llvm::ARMBuildAttrs::Symbol, and llvm::AsmPrinter::TM.
| MipsMCInstLower llvm::MipsAsmPrinter::MCInstLowering |
Definition at line 99 of file MipsAsmPrinter.h.
Referenced by EmitFunctionBodyStart(), and EmitInstruction().
| const MipsFunctionInfo* llvm::MipsAsmPrinter::MipsFI |
Definition at line 98 of file MipsAsmPrinter.h.
Referenced by runOnMachineFunction().
| const MipsSubtarget* llvm::MipsAsmPrinter::Subtarget |
Definition at line 97 of file MipsAsmPrinter.h.
Referenced by EmitFunctionBodyEnd(), EmitFunctionBodyStart(), EmitFunctionEntryLabel(), EmitInstruction(), PrintAsmOperand(), and runOnMachineFunction().
1.8.6