radeon/llvm: Remove AMDILPrintfConvert.cpp
[mesa.git] / src / gallium / drivers / radeon / R600ISelLowering.h
1 //===-- R600ISelLowering.h - TODO: Add brief description -------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // TODO: Add full description
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef R600ISELLOWERING_H
15 #define R600ISELLOWERING_H
16
17 #include "AMDGPUISelLowering.h"
18
19 namespace llvm {
20
21 class R600InstrInfo;
22
23 class R600TargetLowering : public AMDGPUTargetLowering
24 {
25 public:
26 R600TargetLowering(TargetMachine &TM);
27 virtual MachineBasicBlock * EmitInstrWithCustomInserter(MachineInstr *MI,
28 MachineBasicBlock * BB) const;
29
30 private:
31 const R600InstrInfo * TII;
32
33 void lowerImplicitParameter(MachineInstr *MI, MachineBasicBlock &BB,
34 MachineRegisterInfo & MRI, unsigned dword_offset) const;
35
36 };
37
38 } // End namespace llvm;
39
40 #endif // R600ISELLOWERING_H