summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86AsmPrinter.h
blob: c01dd8441f5169d2eac53769fa6a659d9f27e4bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//===-- X86AsmPrinter.h - Convert X86 LLVM code to Intel assembly ---------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file the shared super class printer that converts from our internal
// representation of machine-dependent LLVM code to Intel and AT&T format
// assembly language.  This printer is the output mechanism used by `llc'.
//
//===----------------------------------------------------------------------===//

#ifndef X86ASMPRINTER_H
#define X86ASMPRINTER_H

#include "X86.h"
#include "X86TargetMachine.h"
#include "llvm/CodeGen/AsmPrinter.h"
#include "llvm/CodeGen/DwarfWriter.h"
#include "llvm/CodeGen/MachineConstantPool.h"
#include "llvm/CodeGen/MachineDebugInfo.h"
#include "llvm/ADT/Statistic.h"
#include <set>


namespace llvm {

extern Statistic<> EmittedInsts;

/// X86DwarfWriter - Dwarf debug info writer customized for Darwin/Mac OS X
///
struct X86DwarfWriter : public DwarfWriter {
 // Ctor.
X86DwarfWriter(std::ostream &o, AsmPrinter *ap)
  : DwarfWriter(o, ap)
    {
      needsSet = true;
      DwarfAbbrevSection = ".section __DWARFA,__debug_abbrev";
      DwarfInfoSection = ".section __DWARFA,__debug_info";
      DwarfLineSection = ".section __DWARFA,__debug_line";
      DwarfFrameSection = ".section __DWARFA,__debug_frame";
      DwarfPubNamesSection = ".section __DWARFA,__debug_pubnames";
      DwarfPubTypesSection = ".section __DWARFA,__debug_pubtypes";
      DwarfStrSection = ".section __DWARFA,__debug_str";
      DwarfLocSection = ".section __DWARFA,__debug_loc";
      DwarfARangesSection = ".section __DWARFA,__debug_aranges";
      DwarfRangesSection = ".section __DWARFA,__debug_ranges";
      DwarfMacInfoSection = ".section __DWARFA,__debug_macinfo";
      TextSection = ".text";
       DataSection = ".data";
    }
};

struct X86SharedAsmPrinter : public AsmPrinter {
  X86DwarfWriter DW;

  X86SharedAsmPrinter(std::ostream &O, X86TargetMachine &TM)
    : AsmPrinter(O, TM), DW(O, this) {
    Subtarget = &TM.getSubtarget<X86Subtarget>();
  }

  bool doInitialization(Module &M);
  bool doFinalization(Module &M);

  void getAnalysisUsage(AnalysisUsage &AU) const {
    AU.setPreservesAll();
    AU.addRequired<MachineDebugInfo>();
    MachineFunctionPass::getAnalysisUsage(AU);
  }

  const char *DefaultTextSection;   // "_text" for MASM, ".text" for others.
  const char *DefaultDataSection;   // "_data" for MASM, ".data" for others.
  const X86Subtarget *Subtarget;

  // Necessary for Darwin to print out the apprioriate types of linker stubs
  std::set<std::string> FnStubs, GVStubs, LinkOnceStubs;

  inline static bool isScale(const MachineOperand &MO) {
    return MO.isImmediate() &&
          (MO.getImmedValue() == 1 || MO.getImmedValue() == 2 ||
          MO.getImmedValue() == 4 || MO.getImmedValue() == 8);
  }

  inline static bool isMem(const MachineInstr *MI, unsigned Op) {
    if (MI->getOperand(Op).isFrameIndex()) return true;
    return Op+4 <= MI->getNumOperands() &&
      MI->getOperand(Op  ).isRegister() && isScale(MI->getOperand(Op+1)) &&
      MI->getOperand(Op+2).isRegister() &&
      (MI->getOperand(Op+3).isImmediate() ||
       MI->getOperand(Op+3).isGlobalAddress() ||
       MI->getOperand(Op+3).isConstantPoolIndex());
  }

  virtual void EmitConstantPool(MachineConstantPool *MCP);
  void EmitConstantPool(MachineConstantPool *MCP,
                std::vector<std::pair<MachineConstantPoolEntry, unsigned> > &CP,
                        const char *Section);
};

} // end namespace llvm

#endif