diff options
Diffstat (limited to 'lib/Target/R600/R600MachineFunctionInfo.h')
-rw-r--r-- | lib/Target/R600/R600MachineFunctionInfo.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/Target/R600/R600MachineFunctionInfo.h b/lib/Target/R600/R600MachineFunctionInfo.h index e97fb5b..4b901f4 100644 --- a/lib/Target/R600/R600MachineFunctionInfo.h +++ b/lib/Target/R600/R600MachineFunctionInfo.h @@ -13,6 +13,7 @@ #ifndef R600MACHINEFUNCTIONINFO_H #define R600MACHINEFUNCTIONINFO_H +#include "llvm/ADT/BitVector.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/SelectionDAG.h" #include <vector> @@ -23,15 +24,9 @@ class R600MachineFunctionInfo : public MachineFunctionInfo { public: R600MachineFunctionInfo(const MachineFunction &MF); - std::vector<unsigned> ReservedRegs; + SmallVector<unsigned, 4> LiveOuts; + std::vector<unsigned> IndirectRegs; SDNode *Outputs[16]; - SDNode *StreamOutputs[64][4]; - bool HasLinearInterpolation; - bool HasPerspectiveInterpolation; - - unsigned GetIJLinearIndex() const; - unsigned GetIJPerspectiveIndex() const; - }; } // End llvm namespace |