|
1 | 1 | /*
|
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. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
24 | 24 |
|
25 | 25 | package org.graalvm.compiler.core.test;
|
26 | 26 |
|
| 27 | +import org.graalvm.compiler.api.directives.GraalDirectives; |
27 | 28 | import org.graalvm.compiler.nodes.CallTargetNode.InvokeKind;
|
| 29 | +import org.graalvm.compiler.phases.OptimisticOptimizations; |
28 | 30 | import org.junit.Test;
|
29 | 31 |
|
30 | 32 | public class ConditionalNodeTest extends GraalCompilerTest {
|
@@ -126,4 +128,73 @@ public static int conditionalTest4(ConditionalNodeTest node, int a) {
|
126 | 128 | node.a = a;
|
127 | 129 | return a;
|
128 | 130 | }
|
| 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 | + } |
129 | 200 | }
|
0 commit comments