From 15b1f420d04e2fbff8e1ed4a863239e8ddf602de Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Tue, 11 Mar 2014 10:25:29 -0400 Subject: [PATCH] nv50/ir/gk110: add emit/restart implementations Signed-off-by: Ilia Mirkin --- .../drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 -- 2.30.2