From: Ilia Mirkin Date: Tue, 11 Mar 2014 14:25:29 +0000 (-0400) Subject: nv50/ir/gk110: add emit/restart implementations X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15b1f420d04e2fbff8e1ed4a863239e8ddf602de;p=mesa.git nv50/ir/gk110: add emit/restart implementations Signed-off-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp index aec9b5251a0..754a31daa85 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp @@ -1225,7 +1225,14 @@ CodeEmitterGK110::emitEXPORT(const Instruction *i) void CodeEmitterGK110::emitOUT(const Instruction *i) { - emitNOP(i); // TODO + assert(i->src(0).getFile() == FILE_GPR); + + emitForm_21(i, 0x1f0, 0xb70); + + if (i->op == OP_EMIT) + code[1] |= 1 << 10; + if (i->op == OP_RESTART || i->subOp == NV50_IR_SUBOP_EMIT_RESTART) + code[1] |= 1 << 11; } void