diff options
author | Samuel Pitoiset <[email protected]> | 2016-09-13 19:37:24 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2016-09-17 17:42:40 +0200 |
commit | 9b8b69b3c4671b2301f2926f5d310b319a221500 (patch) | |
tree | 8a68908e437393f4e6ba46c6013333dabafa2503 /src | |
parent | eaacb278128ca64b170285feae58c89d16bff8a1 (diff) |
nvc0/ir: fix comments about instructions info
The comment for the commutative flags was wrong because OP_MUL is
before OP_MAD. While we are at it add missing opcodes, and fix
the comment about the short forms.
Signed-off-by: Samuel Pitoiset <[email protected]>
Acked-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp index f5981de2e01..f75e395265f 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp @@ -156,13 +156,14 @@ void TargetNVC0::initOpInfo() static const uint32_t commutative[(OP_LAST + 31) / 32] = { - // ADD, MAD, MUL, AND, OR, XOR, MAX, MIN + // ADD, MUL, MAD, FMA, AND, OR, XOR, MAX, MIN, SET_AND, SET_OR, SET_XOR, + // SET, SELP, SLCT 0x0670ca00, 0x0000003f, 0x00000000, 0x00000000 }; static const uint32_t shortForm[(OP_LAST + 31) / 32] = { - // ADD, MAD, MUL, AND, OR, XOR, PRESIN, PREEX2, SFN, CVT, PINTERP, MOV + // ADD, MUL, MAD, FMA, AND, OR, XOR, MAX, MIN 0x0670ca00, 0x00000000, 0x00000000, 0x00000000 }; |