Skip to content

Commit 6986d53

Browse files
committedJul 30, 2020
8248597: [Graal] api/java_security/SignatureSpi/DelegationTests.html fails with Method "javasoft.sqe.tests.api.java.security.SignatureSpi.JCKSignatureSpi.clear" doesn't exist
Reviewed-by: kvn
1 parent 11a8c9c commit 6986d53

File tree

2 files changed

+86
-1
lines changed
  • src/jdk.internal.vm.compiler/share/classes

2 files changed

+86
-1
lines changed
 

‎src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalNodeTest.java

+72-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,7 +24,9 @@
2424

2525
package org.graalvm.compiler.core.test;
2626

27+
import org.graalvm.compiler.api.directives.GraalDirectives;
2728
import org.graalvm.compiler.nodes.CallTargetNode.InvokeKind;
29+
import org.graalvm.compiler.phases.OptimisticOptimizations;
2830
import org.junit.Test;
2931

3032
public class ConditionalNodeTest extends GraalCompilerTest {
@@ -126,4 +128,73 @@ public static int conditionalTest4(ConditionalNodeTest node, int a) {
126128
node.a = a;
127129
return a;
128130
}
131+
132+
@SuppressWarnings("all")
133+
static int lastIndexOf(char[] source, int sourceOffset, int sourceCount,
134+
char[] target, int targetOffset, int targetCount,
135+
int fromIndex) {
136+
/*
137+
* Check arguments; return immediately where possible. For consistency, don't check for null
138+
* str.
139+
*/
140+
int rightIndex = sourceCount - targetCount;
141+
if (fromIndex < 0) {
142+
return -1;
143+
}
144+
if (fromIndex > rightIndex) {
145+
fromIndex = rightIndex;
146+
}
147+
/* Empty string always matches. */
148+
if (targetCount == 0) {
149+
return fromIndex;
150+
}
151+
152+
int strLastIndex = targetOffset + targetCount - 1;
153+
char strLastChar = target[strLastIndex];
154+
int min = sourceOffset + targetCount - 1;
155+
int i = min + fromIndex;
156+
157+
startSearchForLastChar: while (true) {
158+
while (i >= min && source[i] != strLastChar) {
159+
i--;
160+
}
161+
if (i < min) {
162+
return -1;
163+
}
164+
int j = i - 1;
165+
int start = j - (targetCount - 1);
166+
int k = strLastIndex - 1;
167+
168+
while (j > start) {
169+
if (source[j--] != target[k--]) {
170+
i--;
171+
continue startSearchForLastChar;
172+
}
173+
}
174+
return start - sourceOffset + 1;
175+
}
176+
}
177+
178+
public static String simple(String simpleName) {
179+
char[] value = simpleName.toCharArray();
180+
char[] target = ".".toCharArray();
181+
int lastDotIndex = lastIndexOf(value, 0, value.length,
182+
target, 0, target.length, value.length);
183+
if (lastDotIndex < 0) {
184+
return null;
185+
}
186+
GraalDirectives.deoptimize();
187+
return simpleName.substring(0, lastDotIndex);
188+
}
189+
190+
@Override
191+
protected OptimisticOptimizations getOptimisticOptimizations() {
192+
// Disable profile based optimizations
193+
return OptimisticOptimizations.NONE;
194+
}
195+
196+
@Test
197+
public void testConditionalExit() {
198+
test("simple", Object.class.getName());
199+
}
129200
}

‎src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/IfNode.java

+14
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,10 @@ private boolean conditionalNodeOptimization(SimplifierTool tool) {
549549
return false;
550550
}
551551

552+
if (falseSuccessor instanceof LoopExitNode && ((LoopExitNode) falseSuccessor).stateAfter != null) {
553+
return false;
554+
}
555+
552556
PhiNode phi = merge.phis().first();
553557
ValueNode falseValue = phi.valueAt(falseEnd);
554558
ValueNode trueValue = phi.valueAt(trueEnd);
@@ -868,6 +872,11 @@ private boolean removeOrMaterializeIf(SimplifierTool tool) {
868872
AbstractEndNode trueEnd = (AbstractEndNode) trueSuccessor().next();
869873
AbstractEndNode falseEnd = (AbstractEndNode) falseSuccessor().next();
870874
AbstractMergeNode merge = trueEnd.merge();
875+
876+
if (falseSuccessor instanceof LoopExitNode && ((LoopExitNode) falseSuccessor).stateAfter != null) {
877+
return false;
878+
}
879+
871880
if (merge == falseEnd.merge() && trueSuccessor().anchored().isEmpty() && falseSuccessor().anchored().isEmpty()) {
872881
PhiNode singlePhi = null;
873882
int distinct = 0;
@@ -986,6 +995,11 @@ private ValueNode proxyReplacement(ValueNode replacement) {
986995
}
987996

988997
protected void removeThroughFalseBranch(SimplifierTool tool, AbstractMergeNode merge) {
998+
// If the LoopExitNode and the Merge still have states then it's incorrect to arbitrarily
999+
// pick one side of the branch the represent the control flow. The state on the merge is the
1000+
// real after state but it would need to be adjusted to represent the effects of the
1001+
// conditional conversion.
1002+
assert !(falseSuccessor instanceof LoopExitNode) || ((LoopExitNode) falseSuccessor).stateAfter == null;
9891003
AbstractBeginNode trueBegin = trueSuccessor();
9901004
LogicNode conditionNode = condition();
9911005
graph().removeSplitPropagate(this, trueBegin);

0 commit comments

Comments
 (0)
Please sign in to comment.