Modify ADLC to generate meaningful match rules names.
For example, for the next match rule:
instruct addI_rReg_mem(rRegI dst, memory src, rFlagsReg cr)
%{
match(Set dst (AddI dst (LoadI src)));
instead of the current name:
__intop25_rule
generate this one:
_AddI_rRegI__LoadI_memory__rule
|