Home
last modified time | relevance | path

Searched refs:OP_JOIN (Results 1 – 18 of 18) sorted by relevance

/third_party/mesa3d/src/nouveau/codegen/
Dnv50_ir_inlines.h300 if (op >= OP_BRA && op <= OP_JOIN) in asFlow()
307 if (op >= OP_BRA && op <= OP_JOIN) in asFlow()
Dnv50_ir_target_nv50.cpp128 OP_JOIN, OP_JOINAT, OP_BRKPT, OP_MEMBAR, OP_EMIT, OP_RESTART, in initOpInfo()
162 opInfo[i].flow = (i >= OP_BRA && i <= OP_JOIN); in initOpInfo()
Dnv50_ir_target_nvc0.cpp211 OP_JOIN, OP_JOINAT, OP_BRKPT, OP_MEMBAR, OP_EMIT, OP_RESTART, in initOpInfo()
246 opInfo[i].flow = (i >= OP_BRA && i <= OP_JOIN); in initOpInfo()
Dnv50_ir_target_gv100.cpp73 opInfo[i].flow = (i >= OP_BRA && i <= OP_JOIN); in initOpInfo()
243 case OP_JOIN: return &opInfo_BRA; //XXX in getOpInfo()
Dnv50_ir_build_util.h271 op == OP_JOIN || in mkOp()
Dnv50_ir_peephole.cpp3342 if (term->op != OP_JOIN) in removeFlow()
3411 rep->op != OP_JOIN && in tryPropagateBranch()
3443 if (insn && insn->op == OP_JOIN && !insn->getPredicate()) { in visit()
3522 if (bb->getEntry() && bb->getEntry()->op == OP_JOIN) in tryPredicateConditional()
3813 if (!entry || entry->op != OP_JOIN) in visit()
Dnv50_ir_lowering_nvc0.cpp753 if (bb->getEntry()->op != OP_JOIN || bb->getEntry()->asFlow()->limit) in propagateJoin()
759 in->insertTail(new FlowInstruction(func, OP_JOIN, bb)); in propagateJoin()
764 exit->op = OP_JOIN; in propagateJoin()
1547 bld.mkFlow(OP_JOIN, NULL, CC_ALWAYS, NULL)->fixed = 1; in handleSharedATOMNVE4()
1641 bld.mkFlow(OP_JOIN, NULL, CC_ALWAYS, NULL)->fixed = 1; in handleSharedATOM()
Dnv50_ir_emit_nv50.cpp1951 case OP_JOIN: in emitInstruction()
2149 if (insn->join || insn->op == OP_JOIN) in emitInstruction()
Dnv50_ir.h109 OP_JOIN, // converge enumerator
Dnv50_ir.cpp1137 if (op == OP_JOIN) in FlowInstruction()
Dnv50_ir_emit_nvc0.cpp2909 case OP_JOIN: in emitInstruction()
3193 if (insn->op == OP_JOIN || insn->join) { in setDelay()
Dnv50_ir_lowering_nv50.cpp986 bld.mkFlow(OP_JOIN, NULL, CC_ALWAYS, NULL)->fixed = 1; in handleTXL()
1567 bld.mkFlow(OP_JOIN, NULL, CC_ALWAYS, NULL)->fixed = 1; in handleSharedATOM()
Dnv50_ir_emit_gv100.cpp1803 case OP_JOIN: //XXX in emitInstruction()
Dnv50_ir_emit_gk110.cpp2715 case OP_JOIN: in emitInstruction()
Dnv50_ir_emit_gm107.cpp3462 case OP_JOIN: in emitInstruction()
Dnv50_ir_from_nir.cpp1507 mkFlow(OP_JOIN, NULL, CC_ALWAYS, NULL)->fixed = 1; in visit()
Dnv50_ir_from_tgsi.cpp2218 FlowInstruction *join = new_FlowInstruction(func, OP_JOIN, NULL); in insertConvergenceOps()
/third_party/mesa3d/docs/relnotes/
D10.5.5.rst60 - nv50/ir: fix asFlow() const helper for OP_JOIN