From 8ca1bc5f947d17483f778c3abec99ca9f225b748 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Thu, 1 Jul 2021 10:24:01 -0700 Subject: [PATCH] intel/compiler: Add cfg_t::adjust_block_ips() method Reviewed-by: Emma Anholt Part-of: --- src/intel/compiler/brw_cfg.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/intel/compiler/brw_cfg.h b/src/intel/compiler/brw_cfg.h index 90af5a9..9e2726f 100644 --- a/src/intel/compiler/brw_cfg.h +++ b/src/intel/compiler/brw_cfg.h @@ -324,6 +324,12 @@ struct cfg_t { void dump(); void dump_cfg(); + + /** + * Propagate bblock_t::end_ip_delta data through the CFG. + */ + inline void adjust_block_ips(); + #endif const struct backend_shader *s; void *mem_ctx; @@ -437,6 +443,21 @@ cfg_t::last_block() const __scan_inst = (__type *)__scan_inst->prev) #ifdef __cplusplus +inline void +cfg_t::adjust_block_ips() +{ + int delta = 0; + + foreach_block(block, this) { + block->start_ip += delta; + block->end_ip += delta; + + delta += block->end_ip_delta; + + block->end_ip_delta = 0; + } +} + namespace brw { /** * Immediate dominator tree analysis of a shader. -- 2.7.4