blob: 1f3f40dd4083da7bd42658926eddd7cb139475d3 [file] [log] [blame]
Chris Lattnerb36cbd02005-07-01 22:44:09 +00001//===-- X86AsmPrinter.h - Convert X86 LLVM code to Intel assembly ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file the shared super class printer that converts from our internal
11// representation of machine-dependent LLVM code to Intel and AT&T format
12// assembly language. This printer is the output mechanism used by `llc'.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef X86ASMPRINTER_H
17#define X86ASMPRINTER_H
18
19#include "X86.h"
20#include "llvm/CodeGen/AsmPrinter.h"
21#include "llvm/ADT/Statistic.h"
Nate Begeman72b286b2005-07-08 00:23:26 +000022#include <set>
23
Chris Lattnerb36cbd02005-07-01 22:44:09 +000024
25namespace llvm {
26namespace x86 {
27
28extern Statistic<> EmittedInsts;
29
30struct X86SharedAsmPrinter : public AsmPrinter {
31 X86SharedAsmPrinter(std::ostream &O, TargetMachine &TM)
Chris Lattner5df14ca2005-11-21 22:19:48 +000032 : AsmPrinter(O, TM), forELF(false), forDarwin(false) { }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000033
34 bool doInitialization(Module &M);
Chris Lattnerb36cbd02005-07-01 22:44:09 +000035 bool doFinalization(Module &M);
36
Chris Lattner5df14ca2005-11-21 22:19:48 +000037 bool forELF;
Chris Lattnera35a8e82005-11-21 22:39:40 +000038 bool forDarwin; // FIXME: eliminate.
Chris Lattnerb36cbd02005-07-01 22:44:09 +000039
Nate Begeman72b286b2005-07-08 00:23:26 +000040 // Necessary for Darwin to print out the apprioriate types of linker stubs
41 std::set<std::string> FnStubs, GVStubs, LinkOnceStubs;
42
Chris Lattnerb36cbd02005-07-01 22:44:09 +000043 inline static bool isScale(const MachineOperand &MO) {
44 return MO.isImmediate() &&
45 (MO.getImmedValue() == 1 || MO.getImmedValue() == 2 ||
46 MO.getImmedValue() == 4 || MO.getImmedValue() == 8);
47 }
48
49 inline static bool isMem(const MachineInstr *MI, unsigned Op) {
50 if (MI->getOperand(Op).isFrameIndex()) return true;
51 if (MI->getOperand(Op).isConstantPoolIndex()) return true;
52 return Op+4 <= MI->getNumOperands() &&
53 MI->getOperand(Op ).isRegister() && isScale(MI->getOperand(Op+1)) &&
54 MI->getOperand(Op+2).isRegister() && (MI->getOperand(Op+3).isImmediate()||
55 MI->getOperand(Op+3).isGlobalAddress());
56 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000057};
58
59} // end namespace x86
60} // end namespace llvm
61
62#endif