1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
/*
* Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test
* @bug 4916263
* @summary Test
* @author Serguei Spitsyn
*
* @run build TestScaffold VMConnection TargetListener TargetAdapter
* @run compile -g LocalVariableEqual.java
* @run driver LocalVariableEqual
*/
import com.sun.jdi.*;
import com.sun.jdi.event.*;
import com.sun.jdi.request.*;
import java.util.*;
/********** target program **********/
class LocalVariableEqualTarg {
public static void main(String[] args){
int intVar = 10;
System.out.println("LocalVariableEqualTarg: Started");
intVar = staticMeth(intVar);
System.out.println("LocalVariableEqualTarg: Finished");
}
public static int staticMeth(int intArg) {
System.out.println("staticMeth: Started");
int result;
{
{ boolean bool_1 = false;
intArg++;
{
{ byte byte_2 = 2;
intArg++;
}
byte byte_1 = 1;
intArg++;
}
}
boolean bool_2 = true;
intArg++;
}
{
{
{
{ char char_1 = '1';
intArg++;
}
short short_1 = 1;
intArg++;
}
}
{ short short_2 = 2;
intArg++;
}
char char_2 = '2';
intArg++;
}
{
{ int int_1 = 1;
intArg++;
}
long long_1 = 1;
intArg++;
}
{
{ float float_1 = 1;
intArg++;
}
double double_2 = 2;
intArg++;
}
{
{ String string_1 = "1";
intArg++;
}
Object obj_2 = new Object();
intArg++;
}
result = 10;
System.out.println("staticMeth: Finished");
return result;
}
}
/********** test program **********/
public class LocalVariableEqual extends TestScaffold {
ReferenceType targetClass;
ThreadReference mainThread;
LocalVariableEqual (String args[]) {
super(args);
}
public static void main(String[] args) throws Exception {
new LocalVariableEqual(args).startTests();
}
/********** test assist **********/
Method getMethod(String className, String methodName) {
List refs = vm().classesByName(className);
if (refs.size() != 1) {
failure("Test failure: " + refs.size() +
" ReferenceTypes named: " + className);
return null;
}
ReferenceType refType = (ReferenceType)refs.get(0);
List meths = refType.methodsByName(methodName);
if (meths.size() != 1) {
failure("Test failure: " + meths.size() +
" methods named: " + methodName);
return null;
}
return (Method)meths.get(0);
}
void printVariable(LocalVariable lv, int index) throws Exception {
if (lv == null) {
println(" Var name: null");
return;
}
String tyname = lv.typeName();
println(" Var: " + lv.name() + ", index: " + index + ", type: " + tyname +
", Signature: " + lv.type().signature());
// Sorry, there is no way to take local variable slot numbers using JDI!
// It is because method LocalVariableImpl.slot() is private.
}
void compareTwoEqualVars(LocalVariable lv1, LocalVariable lv2) {
if (lv1.equals(lv2)) {
println(" Success: equality of local vars detected");
} else {
failure(" Failure: equality of local vars is NOT detected");
}
if (lv1.hashCode() == lv2.hashCode()) {
println(" Success: hashCode's of equal local vars are equal");
} else {
failure(" Failure: hashCode's of equal local vars differ");
}
if (lv1.compareTo(lv2) == 0) {
println(" Success: compareTo() is correct for equal local vars");
} else {
failure(" Failure: compareTo() is NOT correct for equal local vars");
}
}
void compareTwoDifferentVars(LocalVariable lv1, LocalVariable lv2) {
if (!lv1.equals(lv2)) {
println(" Success: difference of local vars detected");
} else {
failure(" Failure: difference of local vars is NOT detected");
}
if (lv1.hashCode() != lv2.hashCode()) {
println(" Success: hashCode's of different local vars differ");
} else {
failure(" Failure: hashCode's of different local vars are equal");
}
if (lv1.compareTo(lv2) != 0) {
println(" Success: compareTo() is correct for different local vars");
} else {
failure(" Failure: compareTo() is NOT correct for different local vars");
}
}
void compareAllVariables(String className, String methodName) throws Exception {
println("compareAllVariables for method: " + className + "." + methodName);
Method method = getMethod(className, methodName);
List localVars;
try {
localVars = method.variables();
println("\n Success: got a list of all method variables: " + methodName);
}
catch (com.sun.jdi.AbsentInformationException ex) {
failure("\n AbsentInformationException has been thrown");
return;
}
// We consider N*N combinations for set of N variables
int index1 = 0;
for (Iterator it1 = localVars.iterator(); it1.hasNext(); index1++) {
LocalVariable lv1 = (LocalVariable) it1.next();
int index2 = 0;
for (Iterator it2 = localVars.iterator(); it2.hasNext(); index2++) {
LocalVariable lv2 = (LocalVariable) it2.next();
println("\n Two variables:");
printVariable(lv1, index1);
printVariable(lv2, index2);
println("");
if (index1 == index2) {
compareTwoEqualVars(lv1, lv2);
} else {
compareTwoDifferentVars(lv1, lv2);
}
}
}
println("");
return;
}
/********** test core **********/
protected void runTests() throws Exception {
/*
* Get to the top of main() to determine targetClass and mainThread
*/
BreakpointEvent bpe = startToMain("LocalVariableEqualTarg");
println("startToMain(LocalVariableEqualTarg)");
compareAllVariables("LocalVariableEqualTarg", "staticMeth");
/*
* resume until the end
*/
listenUntilVMDisconnect();
/*
* deal with results of test
* if anything has called failure("foo") testFailed will be true
*/
if (!testFailed) {
println("\nLocalVariableEqual: passed");
} else {
throw new Exception("\nLocalVariableEqual: FAILED");
}
}
}
|