1 //===-- ARMAsmPrinter.h - ARM implementation of AsmPrinter ------*- 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 #ifndef LLVM_LIB_TARGET_ARM_ARMASMPRINTER_H
11 #define LLVM_LIB_TARGET_ARM_ARMASMPRINTER_H
13 #include "ARMSubtarget.h"
14 #include "llvm/CodeGen/AsmPrinter.h"
15 #include "llvm/Target/TargetMachine.h"
19 class ARMFunctionInfo;
21 class MachineConstantPool;
32 class LLVM_LIBRARY_VISIBILITY ARMAsmPrinter : public AsmPrinter {
34 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
35 /// make the right decision when printing asm code for different targets.
36 const ARMSubtarget *Subtarget;
38 /// AFI - Keep a pointer to ARMFunctionInfo for the current
42 /// MCP - Keep a pointer to constantpool entries of the current
44 const MachineConstantPool *MCP;
46 /// InConstantPool - Maintain state when emitting a sequence of constant
47 /// pool entries so we can properly mark them as data regions.
50 /// ThumbIndirectPads - These maintain a per-function list of jump pad
51 /// labels used for ARMv4t thumb code to make register indirect calls.
52 SmallVector<std::pair<unsigned, MCSymbol*>, 4> ThumbIndirectPads;
55 explicit ARMAsmPrinter(TargetMachine &TM,
56 std::unique_ptr<MCStreamer> Streamer);
58 const char *getPassName() const override {
59 return "ARM Assembly / Object Emitter";
62 void printOperand(const MachineInstr *MI, int OpNum, raw_ostream &O);
64 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
65 unsigned AsmVariant, const char *ExtraCode,
66 raw_ostream &O) override;
67 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
68 unsigned AsmVariant, const char *ExtraCode,
69 raw_ostream &O) override;
71 void emitInlineAsmEnd(const MCSubtargetInfo &StartInfo,
72 const MCSubtargetInfo *EndInfo) const override;
74 void EmitJumpTableAddrs(const MachineInstr *MI);
75 void EmitJumpTableInsts(const MachineInstr *MI);
76 void EmitJumpTableTBInst(const MachineInstr *MI, unsigned OffsetWidth);
77 void EmitInstruction(const MachineInstr *MI) override;
78 bool runOnMachineFunction(MachineFunction &F) override;
80 void EmitConstantPool() override {
81 // we emit constant pools customly!
83 void EmitFunctionBodyEnd() override;
84 void EmitFunctionEntryLabel() override;
85 void EmitStartOfAsmFile(Module &M) override;
86 void EmitEndOfAsmFile(Module &M) override;
87 void EmitXXStructor(const DataLayout &DL, const Constant *CV) override;
89 // lowerOperand - Convert a MachineOperand into the equivalent MCOperand.
90 bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp);
93 // Helpers for EmitStartOfAsmFile() and EmitEndOfAsmFile()
94 void emitAttributes();
96 // Generic helper used to emit e.g. ARMv5 mul pseudos
97 void EmitPatchedInstruction(const MachineInstr *MI, unsigned TargetOpc);
99 void EmitUnwindingInstruction(const MachineInstr *MI);
101 // emitPseudoExpansionLowering - tblgen'erated.
102 bool emitPseudoExpansionLowering(MCStreamer &OutStreamer,
103 const MachineInstr *MI);
106 unsigned getISAEncoding() override {
107 // ARM/Darwin adds ISA to the DWARF info for each function.
108 const Triple &TT = TM.getTargetTriple();
109 if (!TT.isOSBinFormatMachO())
111 bool isThumb = TT.getArch() == Triple::thumb ||
112 TT.getArch() == Triple::thumbeb ||
113 TT.getSubArch() == Triple::ARMSubArch_v7m ||
114 TT.getSubArch() == Triple::ARMSubArch_v6m;
115 return isThumb ? ARM::DW_ISA_ARM_thumb : ARM::DW_ISA_ARM_arm;
119 MCOperand GetSymbolRef(const MachineOperand &MO, const MCSymbol *Symbol);
120 MCSymbol *GetARMJTIPICJumpTableLabel(unsigned uid) const;
122 MCSymbol *GetARMSJLJEHLabel() const;
124 MCSymbol *GetARMGVSymbol(const GlobalValue *GV, unsigned char TargetFlags);
127 /// EmitMachineConstantPoolValue - Print a machine constantpool value to
129 void EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override;
131 } // end namespace llvm