summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/AMDILAsmBackend.h
diff options
context:
space:
mode:
authorTom Stellard <[email protected]>2012-04-24 21:20:26 -0400
committerTom Stellard <[email protected]>2012-04-25 09:02:16 -0400
commit8d3bf7ced5a3bb17910e9a763edc152fa5fbcd92 (patch)
treee6cc42b55c26635ed6d543cb386978bc4c711afc /src/gallium/drivers/radeon/AMDILAsmBackend.h
parentba9bd41880a7ce285537c3ead8a8c439c5a50555 (diff)
radeon/llvm: Remove AsmPrinter files
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILAsmBackend.h')
-rw-r--r--src/gallium/drivers/radeon/AMDILAsmBackend.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/gallium/drivers/radeon/AMDILAsmBackend.h b/src/gallium/drivers/radeon/AMDILAsmBackend.h
deleted file mode 100644
index ae027681b6f..00000000000
--- a/src/gallium/drivers/radeon/AMDILAsmBackend.h
+++ /dev/null
@@ -1,49 +0,0 @@
-//===-- AMDILAsmBackend.h - TODO: Add brief description -------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//==-----------------------------------------------------------------------===//
-#ifndef _AMDIL_ASM_BACKEND_H_
-#define _AMDIL_ASM_BACKEND_H_
-#include "AMDIL.h"
-#include "llvm/MC/MCAsmBackend.h"
-
-#define ASM_BACKEND_CLASS MCAsmBackend
-
-using namespace llvm;
-namespace llvm {
- class AMDILAsmBackend : public ASM_BACKEND_CLASS {
- public:
- AMDILAsmBackend(const ASM_BACKEND_CLASS &T);
- virtual MCObjectWriter *createObjectWriter(raw_ostream &OS) const;
- virtual bool doesSectionRequireSymbols(const MCSection &Section) const;
- virtual bool isSectionAtomizable(const MCSection &Section) const;
- virtual bool isVirtualSection(const MCSection &Section) const;
- virtual void ApplyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
- uint64_t Value) const;
- virtual bool
- MayNeedRelaxation(const MCInst &Inst
- ) const;
- virtual void RelaxInstruction(const MCInst &Inst, MCInst &Res) const;
- virtual bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
- unsigned getNumFixupKinds() const;
-
- virtual void applyFixup(const MCFixup &Fixup, char * Data, unsigned DataSize,
- uint64_t value) const { }
- virtual bool mayNeedRelaxation(const MCInst &Inst) const { return false; }
- virtual bool fixupNeedsRelaxation(const MCFixup &fixup, uint64_t value,
- const MCInstFragment *DF,
- const MCAsmLayout &Layout) const
- { return false; }
- virtual void relaxInstruction(const MCInst &Inst, MCInst &Res) const
- {}
- virtual bool writeNopData(uint64_t data, llvm::MCObjectWriter * writer) const
- { return false; }
-
- }; // class AMDILAsmBackend;
-} // llvm namespace
-
-#endif // _AMDIL_ASM_BACKEND_H_