GPU: Implement the iset family of shader instructions.

This commit is contained in:
Subv
2018-06-09 16:19:13 -05:00
parent 3cb753eeb1
commit b366b885a1
2 changed files with 46 additions and 2 deletions

View File

@ -329,6 +329,15 @@ union Instruction {
BitField<56, 1, u64> neg_imm;
} fset;
union {
BitField<39, 3, u64> pred39;
BitField<42, 1, u64> neg_pred;
BitField<44, 1, u64> bf;
BitField<45, 2, PredOperation> op;
BitField<48, 1, u64> is_signed;
BitField<49, 3, PredCondition> cond;
} iset;
union {
BitField<10, 2, Register::Size> size;
BitField<12, 1, u64> is_output_signed;