Home
last modified time | relevance | path

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

/external/mesa3d/src/intel/compiler/
Dbrw_cfg.h347 #define foreach_inst_in_block_starting_from(__type, __scan_inst, __inst) \ argument
348 for (__type *__scan_inst = (__type *)__inst->next; \
349 !__scan_inst->is_tail_sentinel(); \
350 __scan_inst = (__type *)__scan_inst->next)
352 #define foreach_inst_in_block_reverse_starting_from(__type, __scan_inst, __inst) \ argument
353 for (__type *__scan_inst = (__type *)__inst->prev; \
354 !__scan_inst->is_head_sentinel(); \
355 __scan_inst = (__type *)__scan_inst->prev)