1 //===-- ARMAsmPrinter.h - Print machine code to an ARM .s file --*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // ARM Assembly printer class.
12 //===----------------------------------------------------------------------===//
14 #ifndef ARMASMPRINTER_H
15 #define ARMASMPRINTER_H
18 #include "ARMTargetMachine.h"
19 #include "llvm/CodeGen/AsmPrinter.h"
20 #include "llvm/Support/Compiler.h"
33 class LLVM_LIBRARY_VISIBILITY ARMAsmPrinter : public AsmPrinter {
35 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
36 /// make the right decision when printing asm code for different targets.
37 const ARMSubtarget *Subtarget;
39 /// AFI - Keep a pointer to ARMFunctionInfo for the current
43 /// MCP - Keep a pointer to constantpool entries of the current
45 const MachineConstantPool *MCP;
47 /// InConstantPool - Maintain state when emitting a sequence of constant
48 /// pool entries so we can properly mark them as data regions.
51 explicit ARMAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
52 : AsmPrinter(TM, Streamer), AFI(NULL), MCP(NULL), InConstantPool(false) {
53 Subtarget = &TM.getSubtarget<ARMSubtarget>();
56 virtual const char *getPassName() const LLVM_OVERRIDE {
57 return "ARM Assembly Printer";
60 void printOperand(const MachineInstr *MI, int OpNum, raw_ostream &O,
61 const char *Modifier = 0);
63 virtual bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
64 unsigned AsmVariant, const char *ExtraCode,
65 raw_ostream &O) LLVM_OVERRIDE;
66 virtual bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
67 unsigned AsmVariant, const char *ExtraCode,
68 raw_ostream &O) LLVM_OVERRIDE;
70 void EmitJumpTable(const MachineInstr *MI);
71 void EmitJump2Table(const MachineInstr *MI);
72 virtual void EmitInstruction(const MachineInstr *MI) LLVM_OVERRIDE;
73 virtual bool runOnMachineFunction(MachineFunction &F) LLVM_OVERRIDE;
75 virtual void EmitConstantPool() LLVM_OVERRIDE {
76 // we emit constant pools customly!
78 virtual void EmitFunctionBodyEnd() LLVM_OVERRIDE;
79 virtual void EmitFunctionEntryLabel() LLVM_OVERRIDE;
80 virtual void EmitStartOfAsmFile(Module &M) LLVM_OVERRIDE;
81 virtual void EmitEndOfAsmFile(Module &M) LLVM_OVERRIDE;
82 virtual void EmitXXStructor(const Constant *CV) LLVM_OVERRIDE;
84 // lowerOperand - Convert a MachineOperand into the equivalent MCOperand.
85 bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp);
88 // Helpers for EmitStartOfAsmFile() and EmitEndOfAsmFile()
89 void emitAttributes();
91 // Helper for ELF .o only
92 void emitARMAttributeSection();
94 // Generic helper used to emit e.g. ARMv5 mul pseudos
95 void EmitPatchedInstruction(const MachineInstr *MI, unsigned TargetOpc);
97 void EmitUnwindingInstruction(const MachineInstr *MI);
99 // emitPseudoExpansionLowering - tblgen'erated.
100 bool emitPseudoExpansionLowering(MCStreamer &OutStreamer,
101 const MachineInstr *MI);
104 void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
106 virtual MachineLocation
107 getDebugValueLocation(const MachineInstr *MI) const LLVM_OVERRIDE;
109 /// EmitDwarfRegOp - Emit dwarf register operation.
110 virtual void EmitDwarfRegOp(const MachineLocation &MLoc) const LLVM_OVERRIDE;
112 virtual unsigned getISAEncoding() LLVM_OVERRIDE {
113 // ARM/Darwin adds ISA to the DWARF info for each function.
114 if (!Subtarget->isTargetDarwin())
116 return Subtarget->isThumb() ?
117 ARM::DW_ISA_ARM_thumb : ARM::DW_ISA_ARM_arm;
121 MCOperand GetSymbolRef(const MachineOperand &MO, const MCSymbol *Symbol);
122 MCSymbol *GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const;
124 MCSymbol *GetARMSJLJEHLabel(void) const;
126 MCSymbol *GetARMGVSymbol(const GlobalValue *GV);
129 /// EmitMachineConstantPoolValue - Print a machine constantpool value to
132 EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) LLVM_OVERRIDE;
134 } // end namespace llvm