intel/compiler: Introduce backend_shader method to propagate IR changes to analysis passes
The invalidate_analysis() method knows what analysis passes there are in the back-end and calls their invalidate() method to report changes in the IR. For the moment it just calls invalidate_live_intervals() (which will eventually be fully replaced by this function) if anything changed. This makes all optimization passes invalidate DEPENDENCY_EVERYTHING, which is clearly far from ideal -- The dependency classes passed to invalidate_analysis() will be refined in a future commit. Reviewed-by: Matt Turner <mattst88@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4012>
This commit is contained in:

committed by
Matt Turner

parent
03eb46f4a7
commit
d966a6b4c4
@@ -48,6 +48,8 @@
|
||||
* exists and therefore remove the instruction.
|
||||
*/
|
||||
|
||||
using namespace brw;
|
||||
|
||||
static bool
|
||||
cmod_propagate_cmp_to_add(const gen_device_info *devinfo, bblock_t *block,
|
||||
fs_inst *inst)
|
||||
@@ -446,7 +448,7 @@ fs_visitor::opt_cmod_propagation()
|
||||
}
|
||||
|
||||
if (progress)
|
||||
invalidate_live_intervals();
|
||||
invalidate_analysis(DEPENDENCY_EVERYTHING);
|
||||
|
||||
return progress;
|
||||
}
|
||||
|
Reference in New Issue
Block a user