mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
radeon/llvm: add names for AMDGPU* passes
Signed-off-by: Vadim Girlin <vadimgirlin@gmail.com> Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
This commit is contained in:
parent
76ba7e2205
commit
4b8db65dbf
2 changed files with 5 additions and 0 deletions
|
|
@ -31,6 +31,9 @@ public:
|
||||||
MachineFunctionPass(ID), TM(tm) { }
|
MachineFunctionPass(ID), TM(tm) { }
|
||||||
|
|
||||||
virtual bool runOnMachineFunction(MachineFunction &MF);
|
virtual bool runOnMachineFunction(MachineFunction &MF);
|
||||||
|
|
||||||
|
virtual const char *getPassName() const {return "AMDGPU Convert to ISA";}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // End anonymous namespace
|
} // End anonymous namespace
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ public:
|
||||||
|
|
||||||
virtual bool runOnMachineFunction(MachineFunction &MF);
|
virtual bool runOnMachineFunction(MachineFunction &MF);
|
||||||
|
|
||||||
|
virtual const char *getPassName() const {return "AMDGPU Lower Instructions";}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // End anonymous namespace
|
} // End anonymous namespace
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue