Lines Matching defs:nop
36 * The legalize pass handles ensuring sufficient nop's and sync flags for
43 * 3) Final nop scheduling for instruction latency
221 * insert a nop to carry the sync flag. Would be kinda
226 struct ir3_instruction *nop;
227 nop = ir3_NOP(block);
228 nop->flags |= IR3_INSTR_SS;
380 * two (which might happen if dst == src). We do it before nop scheduling
862 /* Insert nop's required to make this a legal/valid shader program: */
887 /* the previous cat2/cat3 instruction can encode at most 3 nop's: */
888 unsigned transfer = MIN2(delay, 3 - last->nop);
889 last->nop += transfer;
894 /* the previous nop can encode at most 5 repeats: */