mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 00:40:09 +01:00
nv50/ir/gk110: fill in mov from predicate
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
563083ef57
commit
67cb8a6996
1 changed files with 5 additions and 1 deletions
|
|
@ -1472,7 +1472,11 @@ CodeEmitterGK110::emitMOV(const Instruction *i)
|
|||
setImmediate32(i, 0, Modifier(0));
|
||||
} else
|
||||
if (i->src(0).getFile() == FILE_PREDICATE) {
|
||||
// TODO
|
||||
code[0] = 0x00000002;
|
||||
code[1] = 0x84401c07;
|
||||
emitPredicate(i);
|
||||
defId(i->def(0), 2);
|
||||
srcId(i->src(0), 14);
|
||||
} else {
|
||||
emitForm_C(i, 0x24c, 2);
|
||||
code[1] |= i->lanes << 10;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue