# HG changeset patch # User Lukas Stadler # Date 1443513335 -7200 # Node ID f7693dc4e3410bf2023f71f83dbdf3d25caa6a8d # Parent 98e7ddb9fe6355618b3acf59ee824771333b1bcf add getters for inputs to ArrayEqualsNode diff -r 98e7ddb9fe63 -r f7693dc4e341 graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/nodes/ArrayEqualsNode.java --- a/graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/nodes/ArrayEqualsNode.java Tue Sep 29 09:17:36 2015 +0200 +++ b/graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/nodes/ArrayEqualsNode.java Tue Sep 29 09:55:35 2015 +0200 @@ -78,6 +78,18 @@ this.length = length; } + public ValueNode getArray1() { + return array1; + } + + public ValueNode getArray2() { + return array2; + } + + public ValueNode getLength() { + return length; + } + @Override public Node canonical(CanonicalizerTool tool) { if (tool.allUsagesAvailable() && hasNoUsages()) {