blob: 036abf055ed47943c2ceb9125904b67e97bd5985 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "codegen/nv50_ir_lowering_nvc0.h"
namespace nv50_ir {
class GM107LoweringPass : public NVC0LoweringPass
{
public:
GM107LoweringPass(Program *p) : NVC0LoweringPass(p) {}
private:
virtual bool visit(Instruction *);
virtual bool handleManualTXD(TexInstruction *);
bool handleDFDX(Instruction *);
bool handlePFETCH(Instruction *);
bool handlePOPCNT(Instruction *);
};
} // namespace nv50_ir
|