2013-02-19 16:38:32 +00:00
|
|
|
//===-- X86AsmPrinter.h - X86 implementation of AsmPrinter ------*- C++ -*-===//
|
2005-07-01 22:44:09 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-07-01 22:44:09 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-09-20 07:41:30 +00:00
|
|
|
#ifndef X86ASMPRINTER_H
|
|
|
|
#define X86ASMPRINTER_H
|
2005-07-01 22:44:09 +00:00
|
|
|
|
2010-07-19 23:41:57 +00:00
|
|
|
#include "X86.h"
|
|
|
|
#include "X86MachineFunctionInfo.h"
|
|
|
|
#include "X86TargetMachine.h"
|
2008-06-28 11:08:27 +00:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2005-07-01 22:44:09 +00:00
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
2013-10-31 22:11:56 +00:00
|
|
|
#include "llvm/CodeGen/StackMaps.h"
|
2008-06-28 11:08:27 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2005-07-01 22:44:09 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-06-24 05:46:28 +00:00
|
|
|
class MCStreamer;
|
2008-06-28 11:08:27 +00:00
|
|
|
|
2010-05-11 20:16:09 +00:00
|
|
|
class LLVM_LIBRARY_VISIBILITY X86AsmPrinter : public AsmPrinter {
|
2008-06-28 11:08:27 +00:00
|
|
|
const X86Subtarget *Subtarget;
|
2013-10-31 22:11:56 +00:00
|
|
|
StackMaps SM;
|
|
|
|
|
2009-02-24 08:30:20 +00:00
|
|
|
public:
|
2010-04-04 08:18:47 +00:00
|
|
|
explicit X86AsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
|
2013-11-29 03:07:54 +00:00
|
|
|
: AsmPrinter(TM, Streamer), SM(*this) {
|
2008-06-28 11:08:27 +00:00
|
|
|
Subtarget = &TM.getSubtarget<X86Subtarget>();
|
|
|
|
}
|
2005-07-01 22:44:09 +00:00
|
|
|
|
2012-10-09 03:50:37 +00:00
|
|
|
virtual const char *getPassName() const LLVM_OVERRIDE {
|
2013-02-19 16:38:32 +00:00
|
|
|
return "X86 Assembly / Object Emitter";
|
2005-07-01 22:44:09 +00:00
|
|
|
}
|
2012-08-01 18:39:17 +00:00
|
|
|
|
2009-09-12 20:34:57 +00:00
|
|
|
const X86Subtarget &getSubtarget() const { return *Subtarget; }
|
2005-07-01 22:44:09 +00:00
|
|
|
|
2012-10-09 03:50:37 +00:00
|
|
|
virtual void EmitStartOfAsmFile(Module &M) LLVM_OVERRIDE;
|
2010-03-13 02:10:00 +00:00
|
|
|
|
2012-10-09 03:50:37 +00:00
|
|
|
virtual void EmitEndOfAsmFile(Module &M) LLVM_OVERRIDE;
|
2012-08-01 18:39:17 +00:00
|
|
|
|
2012-10-09 03:50:37 +00:00
|
|
|
virtual void EmitInstruction(const MachineInstr *MI) LLVM_OVERRIDE;
|
2012-08-01 18:39:17 +00:00
|
|
|
|
2012-10-09 03:50:37 +00:00
|
|
|
virtual bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant, const char *ExtraCode,
|
|
|
|
raw_ostream &OS) LLVM_OVERRIDE;
|
|
|
|
virtual bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant, const char *ExtraCode,
|
|
|
|
raw_ostream &OS) LLVM_OVERRIDE;
|
|
|
|
|
|
|
|
virtual bool runOnMachineFunction(MachineFunction &F) LLVM_OVERRIDE;
|
2005-07-01 22:44:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|