init(opcode, dst, src, 3);
}
+fs_inst::fs_inst(enum opcode opcode, const fs_reg &dst, fs_reg src[], int sources)
+{
+ init(opcode, dst, src, sources);
+}
+
fs_inst::fs_inst(const fs_inst &that)
{
memcpy(this, &that, sizeof(that));
return emit(new(mem_ctx) fs_inst(opcode, dst, src0, src1, src2));
}
+fs_inst *
+fs_visitor::emit(enum opcode opcode, fs_reg dst,
+ fs_reg src[], int sources)
+{
+ return emit(new(mem_ctx) fs_inst(opcode, dst, src, sources));
+}
+
void
fs_visitor::push_force_uncompressed()
{
const fs_reg &src1);
fs_inst(enum opcode opcode, const fs_reg &dst, const fs_reg &src0,
const fs_reg &src1, const fs_reg &src2);
+ fs_inst(enum opcode opcode, const fs_reg &dst, fs_reg src[], int sources);
fs_inst(const fs_inst &that);
void resize_sources(uint8_t num_sources);
fs_inst *emit(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1);
fs_inst *emit(enum opcode opcode, fs_reg dst,
fs_reg src0, fs_reg src1, fs_reg src2);
+ fs_inst *emit(enum opcode opcode, fs_reg dst,
+ fs_reg src[], int sources);
fs_inst *MOV(fs_reg dst, fs_reg src);
fs_inst *NOT(fs_reg dst, fs_reg src);