Home
last modified time | relevance | path

Searched refs:mkFlow (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_from_sm4.cpp1982 mkFlow(OP_BRA, NULL, insn->insn.test_nz ? CC_NOT_P : CC_P, src(0, 0)); in handleInstruction()
1997 mkFlow(OP_BRA, NULL, CC_ALWAYS, NULL); in handleInstruction()
2012 mkFlow(OP_BRA, convPoint, CC_ALWAYS, NULL); in handleInstruction()
2040 mkFlow(OP_PREBREAK, loopBreak, CC_ALWAYS, NULL); in handleInstruction()
2044 mkFlow(OP_PRECONT, loopHeader, CC_ALWAYS, NULL); in handleInstruction()
2052 mkFlow(OP_CONT, loopBB, CC_ALWAYS, NULL); in handleInstruction()
2063 mkFlow(OP_BREAK, breakBB, CC_ALWAYS, NULL); in handleInstruction()
2072 mkFlow(OP_BREAK, breakBB, cc, src(0, 0)); in handleInstruction()
2083 mkFlow(OP_CONT, contBB, CC_ALWAYS, NULL); in handleInstruction()
2092 mkFlow(OP_CONT, contBB, insn->insn.test_nz ? CC_P : CC_NOT_P, src(0, 0)); in handleInstruction()
Dnv50_ir_from_tgsi.cpp2078 mkFlow(OP_BRA, NULL, CC_NOT_P, fetchSrc(0, 0)); in handleInstruction()
2093 mkFlow(OP_BRA, NULL, CC_ALWAYS, NULL); in handleInstruction()
2108 mkFlow(OP_BRA, convBB, CC_ALWAYS, NULL); in handleInstruction()
2129 mkFlow(OP_PREBREAK, lbrkBB, CC_ALWAYS, NULL); in handleInstruction()
2133 mkFlow(OP_PRECONT, lbgnBB, CC_ALWAYS, NULL); in handleInstruction()
2141 mkFlow(OP_CONT, loopBB, CC_ALWAYS, NULL); in handleInstruction()
2152 mkFlow(OP_BREAK, brkBB, CC_ALWAYS, NULL); in handleInstruction()
2161 mkFlow(OP_CONT, contBB, CC_ALWAYS, NULL); in handleInstruction()
2191 mkFlow(OP_CALL, s->f, CC_ALWAYS, NULL); in handleInstruction()
2206 mkFlow(OP_PRERET, leave, CC_ALWAYS, NULL)->fixed = 1; in handleInstruction()
[all …]
Dnv50_ir_build_util.h80 FlowInstruction *mkFlow(operation, void *target, CondCode, Value *pred);
Dnv50_ir_lowering_nv50.cpp705 currBB->joinAt = bld.mkFlow(OP_JOINAT, joinBB, CC_ALWAYS, NULL); in handleTXL()
712 bld.mkFlow(OP_BRA, texiBB, CC_EQ, pred)->fixed = 1; in handleTXL()
Dnv50_ir_build_util.cpp307 BuildUtil::mkFlow(operation op, void *targ, CondCode cc, Value *pred) in mkFlow() function in nv50_ir::BuildUtil
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_lowering_nvc0.cpp72 call = bld.mkFlow(OP_CALL, NULL, CC_ALWAYS, NULL); in handleDIV()