Lines Matching refs:__inst
396 #define foreach_block_and_inst(__block, __type, __inst, __cfg) \ argument
398 foreach_inst_in_block (__type, __inst, __block)
403 #define foreach_block_and_inst_safe(__block, __type, __inst, __cfg) \ argument
405 foreach_inst_in_block_safe (__type, __inst, __block)
419 #define foreach_inst_in_block(__type, __inst, __block) \ argument
420 foreach_in_list(__type, __inst, &(__block)->instructions)
422 #define foreach_inst_in_block_safe(__type, __inst, __block) \ argument
423 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \
424 *__next = (__type *)__inst->next; \
426 __inst = __next, \
429 #define foreach_inst_in_block_reverse(__type, __inst, __block) \ argument
430 foreach_in_list_reverse(__type, __inst, &(__block)->instructions)
432 #define foreach_inst_in_block_reverse_safe(__type, __inst, __block) \ argument
433 foreach_in_list_reverse_safe(__type, __inst, &(__block)->instructions)
435 #define foreach_inst_in_block_starting_from(__type, __scan_inst, __inst) \ argument
436 for (__type *__scan_inst = (__type *)__inst->next; \
440 #define foreach_inst_in_block_reverse_starting_from(__type, __scan_inst, __inst) \ argument
441 for (__type *__scan_inst = (__type *)__inst->prev; \