]> source.dussan.org Git - javassist.git/commitdiff
fixed JASSIST-160
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sat, 6 Oct 2012 14:47:31 +0000 (14:47 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sat, 6 Oct 2012 14:47:31 +0000 (14:47 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@672 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

Readme.html
javassist.jar
src/main/javassist/bytecode/CodeIterator.java
src/main/javassist/bytecode/stackmap/Tracer.java
src/main/javassist/bytecode/stackmap/TypeData.java
src/test/javassist/bytecode/StackMapTest.java
src/test/test4/InvokeDyn.java

index 353cb4b2800ba789b9d2330908ced8c056492df3..72933367d79048df149aa1e50dff85eb3a79e889 100644 (file)
@@ -7,7 +7,7 @@
 
 <h1>Javassist version 3</h1>
 
-<h3>Copyright (C) 1999-2011 by Shigeru Chiba, All rights reserved.</h3>
+<h3>Copyright (C) 1999-2012 by Shigeru Chiba, All rights reserved.</h3>
 
 <p><br></p>
 
index 719a322ef0032c33bc8c07daa1532b5b428f17ce..ec0b29a995d18f1858976004761bd8396a0c80b8 100644 (file)
Binary files a/javassist.jar and b/javassist.jar differ
index 0c5db6ff24b03ee47beab2b9bbf96d20c6f25d92..a1d882e0dea9835478b836eef8cef42ac95447d1 100644 (file)
@@ -27,10 +27,14 @@ import java.util.ArrayList;
  * the following code substitutes the <code>NOP</code> instruction for the first
  * instruction of the method:  
  *
- * <pre>CodeAttribute ca = method.getMethodInfo().getCodeAttribute();
+ * <pre>
+ * CodeAttribute ca = method.getMethodInfo().getCodeAttribute();
  * CodeIterator ci = ca.iterator();
  * ci.writeByte(Opcode.NOP, 0);</pre>
  *
+ * <p>To visit every instruction, call {@link #next()} on a <code>CodeIterator</code>.
+ * It returns the index of the first byte of the next instruction.
+ *
  * <p>If there are multiple <code>CodeIterator</code>s referring to the
  * same <code>Code_attribute</code>, then inserting a gap by one
  * <code>CodeIterator</code> will break the other
index 1bacd09cfd7278485b099afbd200e17f4fa15731..e5216165f582e72c68c6c8b47a28dcfdea1c9dd2 100644 (file)
@@ -803,7 +803,9 @@ public abstract class Tracer implements TypeTag {
             String className = cpool.getMethodrefClassName(i);
             TypeData target = stackTypes[--stackTop];
             if (target instanceof TypeData.UninitTypeVar && target.isUninit())
-                constructorCalled((TypeData.UninitTypeVar)target);
+                constructorCalled(target, ((TypeData.UninitTypeVar)target).offset());
+            else if (target instanceof TypeData.UninitData)
+                constructorCalled(target, ((TypeData.UninitData)target).offset());
 
             target.setType(className, classPool);
         }
@@ -814,9 +816,10 @@ public abstract class Tracer implements TypeTag {
 
     /* This is a constructor call on an uninitialized object.
      * Sets flags of other references to that object.
+     *
+     * @param offset        the offset where the object has been created.
      */
-    private void constructorCalled(TypeData.UninitTypeVar target) {
-        int offset = target.offset();
+    private void constructorCalled(TypeData target, int offset) {
         target.constructorCalled(offset);
         for (int i = 0; i < stackTop; i++)
             stackTypes[i].constructorCalled(offset);
index d77f6a559afa9691c879590db4b2cb8bef7e4a93..6428335d9d4df9e403a8fa1f63ed9f01176308e4 100644 (file)
@@ -745,11 +745,13 @@ public abstract class TypeData {
 
         public void setType(String typeName, ClassPool cp) throws BadBytecode {
             super.setType(typeName, cp);
-            initialized = true;
+            // initialized = true;
         }
 
         public String toString() { return "uninit:" + getName() + "@" + offset; }
 
+        public int offset() { return offset; }
+
         public void constructorCalled(int offset) {
             if (offset == this.offset)
                 initialized = true;
index 4b9339d71980bc66842039087c1109a290d5cd7b..4714f7aa7cab1e073b67f1156ac75a87a665a59c 100644 (file)
@@ -529,6 +529,7 @@ public class StackMapTest extends TestCase {
     public static class T8dd {
         java.util.List foo(String s) { return new java.util.ArrayList(); }
     }
+
     public static class T8d {
         static T8dd helper() { return new T8dd(); }
         int integer() { return 9; }
@@ -588,6 +589,39 @@ public class StackMapTest extends TestCase {
         }
     }
 
+    public void testInnerClass() throws Exception {
+        CtClass cc = loader.get("javassist.bytecode.StackMapTest$T9");
+        CtClass par = loader.get("javassist.bytecode.StackMapTest$T9$Parent");
+        CtClass in = loader.get("javassist.bytecode.StackMapTest$T9$In");
+        rebuildStackMaps2(cc);
+        rebuildStackMaps2(par);
+        rebuildStackMaps2(in);
+        cc.writeFile();
+        in.writeFile();
+        par.writeFile();
+        Object t1 = make(cc.getName());
+        assertEquals(19, invoke(t1, "test"));
+    }
+
+    public static class T9 {
+        class Parent {
+            int f; 
+            Parent(int i) { f = i; } 
+        }
+        class In extends Parent {
+            int value;
+            public In(int i) {
+                super(i > 0 ? 10 : 20);
+                value = i;
+            }
+        }
+
+        public int test() {
+            In in = new In(9);
+            return in.value + in.f;
+        }
+    }
+
     public void tstCtClassType() throws Exception {
         ClassPool cp = ClassPool.getDefault();
         CtClass cc = cp.get("javassist.CtClassType");
index 5e5f0c01925f7e7538a3327df0c1e543b4df6337..fbcba64dc770e589c0ae4ed904cd2b16eb0f6464 100644 (file)
@@ -4,11 +4,23 @@ import java.lang.invoke.*;
 
 public class InvokeDyn {
     public static int test9(int i, String s) { return 9; }
+    public int test8(int i, String s) { return 8; } 
 
-    public static CallSite boot(MethodHandles.Lookup caller, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException {
+    public static CallSite boot(MethodHandles.Lookup caller, String name, MethodType type)
+        throws NoSuchMethodException, IllegalAccessException
+    {
         MethodHandles.Lookup lookup = MethodHandles.lookup();
         Class thisClass = lookup.lookupClass();
         MethodHandle method = lookup.findStatic(thisClass, "test9", MethodType.methodType(int.class, int.class, String.class));
         return new ConstantCallSite(method);
     }
+
+    public CallSite boot2(MethodHandles.Lookup caller, String name, MethodType type)
+        throws NoSuchMethodException, IllegalAccessException
+    {
+        MethodHandles.Lookup lookup = MethodHandles.lookup();
+        Class thisClass = lookup.lookupClass();
+        MethodHandle method = lookup.findVirtual(thisClass, "test8", MethodType.methodType(int.class, int.class, String.class));
+        return new ConstantCallSite(method.asType(MethodType.methodType(int.class, Object.class, int.class, String.class)));
+    }
 }