RFR: 8259777: Incorrect predication condition generated by ADLC

Vladimir Ivanov vlivanov at openjdk.java.net
Thu Jan 14 13:44:04 UTC 2021


On Thu, 14 Jan 2021 13:13:21 GMT, Jatin Bhateja <jbhateja at openjdk.org> wrote:

> Please consider following instruction selection pattern:-
> 
> `   match(Set dst (VectorBlend (Binary src1 (AddVB src1 src2)) mask));
> `
> 
> Currently, ADLC emits following predication check for src1 in matcher DFA.
> 
> `   /*src1*/(_kids[0]->_kids[0]->_leaf == _kids[1]->_kids[0]->_leaf) 
> `
> 
> src1 appears twice in the State tree corresponding to this pattern, first as the leaf of left child state of Binary node which is
> left child state of VectorBlend and secondly as the leaf of left child of AddVB which is the right child state of Binary node.
> Thus following is the correct predication check to test both the occurrences of src1.
> 
> `   /*src1*/(_kids[0]->_kids[0]->_leaf == _kids[0]->_kids[1]->_kids[0]->_leaf)
> `
> 
> This patch does a minor re-organizes the predication generation algorithm to fix this issue.
> 
> Validated that there is no change in generated DFA for current X86 AD files with and without this patch since such instruction patterns do not exist in AD files currently.

Looks good.

-------------

Marked as reviewed by vlivanov (Reviewer).

PR: https://git.openjdk.java.net/jdk/pull/2080


More information about the hotspot-compiler-dev mailing list