Lines Matching defs:instructions
328 /* Scoreboard index, 0 or 1. Leave as 0 for instructions that do not require
346 /* List of instructions emitted for the current block */
347 struct list_head instructions;
487 list_for_each_entry(agx_instr, v, &(block)->instructions, link)
490 list_for_each_entry_rev(agx_instr, v, &(block)->instructions, link)
493 list_for_each_entry_safe(agx_instr, v, &(block)->instructions, link)
496 list_for_each_entry_safe_rev(agx_instr, v, &(block)->instructions, link)
499 list_for_each_entry_from(agx_instr, v, from, &(block)->instructions, link)
502 list_for_each_entry_from_rev(agx_instr, v, from, &(block)->instructions, link)
636 * is before branches or control flow instructions, which occur after the
680 list_addtail(&I->link, &cursor->block->instructions);