mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 04:20:08 +01:00
i965/fs: Move ip_record class to its one use.
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
This commit is contained in:
parent
d9432af45a
commit
279c1c80b6
2 changed files with 12 additions and 12 deletions
|
|
@ -210,18 +210,6 @@ half(fs_reg reg, unsigned idx)
|
|||
|
||||
static const fs_reg reg_undef;
|
||||
|
||||
class ip_record : public exec_node {
|
||||
public:
|
||||
DECLARE_RALLOC_CXX_OPERATORS(ip_record)
|
||||
|
||||
ip_record(int ip)
|
||||
{
|
||||
this->ip = ip;
|
||||
}
|
||||
|
||||
int ip;
|
||||
};
|
||||
|
||||
class fs_inst : public backend_instruction {
|
||||
fs_inst &operator=(const fs_inst &);
|
||||
|
||||
|
|
|
|||
|
|
@ -60,6 +60,18 @@ fs_generator::~fs_generator()
|
|||
{
|
||||
}
|
||||
|
||||
class ip_record : public exec_node {
|
||||
public:
|
||||
DECLARE_RALLOC_CXX_OPERATORS(ip_record)
|
||||
|
||||
ip_record(int ip)
|
||||
{
|
||||
this->ip = ip;
|
||||
}
|
||||
|
||||
int ip;
|
||||
};
|
||||
|
||||
bool
|
||||
fs_generator::patch_discard_jumps_to_fb_writes()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue