mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
nv50/ir: allow emission of immediates in imul/imad ops
Nothing actually uses this yet (due to complications), but the emission logic is right. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
393d0c336b
commit
8e9ade7eb3
1 changed files with 8 additions and 2 deletions
|
|
@ -1125,7 +1125,10 @@ CodeEmitterNV50::emitIMUL(const Instruction *i)
|
|||
|
||||
if (i->encSize == 8) {
|
||||
code[1] = (i->sType == TYPE_S16) ? (0x8000 | 0x4000) : 0x0000;
|
||||
emitForm_MAD(i);
|
||||
if (i->src(1).getFile() == FILE_IMMEDIATE)
|
||||
emitForm_IMM(i);
|
||||
else
|
||||
emitForm_MAD(i);
|
||||
} else {
|
||||
if (i->sType == TYPE_S16)
|
||||
code[0] |= 0x8100;
|
||||
|
|
@ -1199,7 +1202,10 @@ CodeEmitterNV50::emitIMAD(const Instruction *i)
|
|||
code[1] |= neg1 << 27;
|
||||
code[1] |= neg2 << 26;
|
||||
|
||||
emitForm_MAD(i);
|
||||
if (i->src(1).getFile() == FILE_IMMEDIATE)
|
||||
emitForm_IMM(i);
|
||||
else
|
||||
emitForm_MAD(i);
|
||||
|
||||
if (i->flagsSrc >= 0) {
|
||||
// add with carry from $cX
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue