[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openjdk-hotspot-runtime-dev
Subject:    hg: jdk7/hotspot-rt/langtools: 32 new changesets
From:       john.coomes () sun ! com (john ! coomes at sun ! com)
Date:       2009-08-21 9:04:22
Message-ID: 20090821090515.A11421229F () hg ! openjdk ! java ! net
[Download RAW message or body]

Changeset: 777a3efad0d5
Author:    jjg
Date:      2009-07-28 10:36 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/777a3efad0d5

6855990: javap InstructionDetailWriter should support new 308 annotations attribute
Reviewed-by: mcimadamore

! src/share/classes/com/sun/tools/classfile/ExtendedAnnotation.java
! src/share/classes/com/sun/tools/javap/AnnotationWriter.java
! src/share/classes/com/sun/tools/javap/CodeWriter.java
! src/share/classes/com/sun/tools/javap/InstructionDetailWriter.java
+ src/share/classes/com/sun/tools/javap/TypeAnnotationWriter.java
+ test/tools/javap/typeAnnotations/T6855990.java

Changeset: 85b317ac8a0c
Author:    jjg
Date:      2009-07-28 11:00 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/85b317ac8a0c

6734068: Some variable length attributes set their size incorrectly.
Reviewed-by: mcimadamore

! src/share/classes/com/sun/tools/classfile/CharacterRangeTable_attribute.java
! src/share/classes/com/sun/tools/classfile/LineNumberTable_attribute.java
! src/share/classes/com/sun/tools/classfile/LocalVariableTable_attribute.java
! src/share/classes/com/sun/tools/classfile/LocalVariableTypeTable_attribute.java
! src/share/classes/com/sun/tools/classfile/ModuleExportTable_attribute.java
! src/share/classes/com/sun/tools/classfile/ModuleMemberTable_attribute.java

Changeset: c2dfab9e2f39
Author:    jjg
Date:      2009-07-29 13:26 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/c2dfab9e2f39

4777949: Javap Rewrite : Warn javap usage on package classes with simple name.
Reviewed-by: mcimadamore

! src/share/classes/com/sun/tools/javap/JavapFileManager.java
! src/share/classes/com/sun/tools/javap/JavapTask.java
! src/share/classes/com/sun/tools/javap/resources/javap.properties
+ test/tools/javap/T4777949.java

Changeset: 85fecace920b
Author:    mcimadamore
Date:      2009-07-30 10:29 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/85fecace920b

6827648: Extremely slow compilation time for visitor pattern code + generics
Summary: Javac unnecessarily recomputates type-substitutions multiple times
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/code/Symbol.java
! src/share/classes/com/sun/tools/javac/code/Types.java

Changeset: b1e027181dd4
Author:    mcimadamore
Date:      2009-07-30 10:30 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/b1e027181dd4

6862608: rich diagnostic sometimes contain wrong type variable numbering
Summary: The rich formatter generates worng numbers for type-variables in where \
                clauses
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/resources/compiler.properties
! src/share/classes/com/sun/tools/javac/util/RichDiagnosticFormatter.java
+ test/tools/javac/Diagnostics/6862608/T6862608a.java
+ test/tools/javac/Diagnostics/6862608/T6862608a.out
+ test/tools/javac/Diagnostics/6862608/T6862608b.java
+ test/tools/javac/Diagnostics/6862608/T6862608b.out

Changeset: dd5c51734ad9
Author:    mcimadamore
Date:      2009-07-30 10:30 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/dd5c51734ad9

6864382: NPE in the rich formatter when processing an unattributed type-variable
Summary: Unattributed type variable should not be accessed by the rich formatter when \
                emitting where clauses
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/util/RichDiagnosticFormatter.java
+ test/tools/javac/Diagnostics/6864382/T6864382.java
+ test/tools/javac/Diagnostics/6864382/T6864382.out

Changeset: 6d0add6ad778
Author:    mcimadamore
Date:      2009-07-30 10:30 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/6d0add6ad778

6861837: JCK compilation failures
Summary: Type-annotations processing is accessing type info before they are available \
                in MemberEnter
Reviewed-by: jjg
Contributed-by: mali at csail.mit.edu

! src/share/classes/com/sun/tools/javac/comp/MemberEnter.java
! src/share/classes/com/sun/tools/javac/comp/TransTypes.java
! test/tools/javac/typeAnnotations/InnerClass.java

Changeset: 23505e6ea22d
Author:    jjg
Date:      2009-07-30 07:48 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/23505e6ea22d

6866657: add byteLength method to primary classfile types
Reviewed-by: mchung

! src/share/classes/com/sun/tools/classfile/AccessFlags.java
! src/share/classes/com/sun/tools/classfile/Attribute.java
! src/share/classes/com/sun/tools/classfile/Attributes.java
! src/share/classes/com/sun/tools/classfile/ClassFile.java
! src/share/classes/com/sun/tools/classfile/ConstantPool.java
! src/share/classes/com/sun/tools/classfile/Field.java
! src/share/classes/com/sun/tools/classfile/Method.java
+ test/tools/javap/T6866657.java

Changeset: e33efb09ed75
Author:    jjg
Date:      2009-07-30 09:18 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/e33efb09ed75

4880672: javap does not output inner interfaces of an interface
Reviewed-by: mcimadamore

! src/share/classes/com/sun/tools/javap/JavapTask.java
! src/share/classes/com/sun/tools/javap/Options.java
! src/share/classes/com/sun/tools/javap/resources/javap.properties
+ test/tools/javap/T4880672.java

Changeset: dbf8a2816201
Author:    tbell
Date:      2009-07-31 17:20 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/dbf8a2816201

Merge


Changeset: 743f17b55b44
Author:    jjg
Date:      2009-08-04 17:26 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/743f17b55b44

6867671: javap whitespace formatting issues
Reviewed-by: mcimadamore

! src/share/classes/com/sun/tools/javap/AttributeWriter.java
! src/share/classes/com/sun/tools/javap/BasicWriter.java
! src/share/classes/com/sun/tools/javap/ClassWriter.java
! src/share/classes/com/sun/tools/javap/CodeWriter.java
! src/share/classes/com/sun/tools/javap/ConstantWriter.java
! src/share/classes/com/sun/tools/javap/JavapTask.java
! src/share/classes/com/sun/tools/javap/Options.java

Changeset: bc0b1f404c40
Author:    jjg
Date:      2009-08-05 07:43 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/bc0b1f404c40

6868553: 6867671 breaks some tests
Reviewed-by: mcimadamore

! src/share/classes/com/sun/tools/javap/AttributeWriter.java
! test/tools/javac/code/ArrayClone.java
! test/tools/javap/4111861/T4111861.java
! test/tools/javap/T4884240.java
! test/tools/javap/T4975569.java
! test/tools/javap/stackmap/T6271292.sh

Changeset: 526de25e0b28
Author:    jjg
Date:      2009-08-05 08:38 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/526de25e0b28

6729471: javap should accept class files on the command line
Reviewed-by: mcimadamore

! src/share/classes/com/sun/tools/javap/JavapTask.java
+ test/tools/javap/T6729471.java

Changeset: b5ab848ba68f
Author:    tbell
Date:      2009-08-06 19:03 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/b5ab848ba68f

Merge


Changeset: 160d7a994e69
Author:    jjg
Date:      2009-08-06 19:35 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/160d7a994e69

6858429: javap classfile library a minor bug
Reviewed-by: ksrini

! src/share/classes/com/sun/tools/classfile/ClassWriter.java

Changeset: 3e38c6da72ec
Author:    tbell
Date:      2009-08-06 20:24 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/3e38c6da72ec

Merge


Changeset: cba827f72977
Author:    jjg
Date:      2009-08-08 17:50 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/cba827f72977

6868548: remove spurious ';' from after constant pool entries
Reviewed-by: ksrini

! src/share/classes/com/sun/tools/javap/CodeWriter.java
! src/share/classes/com/sun/tools/javap/ConstantWriter.java
! test/tools/javac/code/ArrayClone.java

Changeset: 961dc3acdb06
Author:    jjg
Date:      2009-08-08 17:56 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/961dc3acdb06

6868539: javap should use current names for constant pool tags
Reviewed-by: ksrini

! src/share/classes/com/sun/tools/javap/CodeWriter.java
! src/share/classes/com/sun/tools/javap/ConstantWriter.java
+ test/tools/javap/T6868539.java

Changeset: d5f6c475f475
Author:    mcimadamore
Date:      2009-08-11 01:11 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/d5f6c475f475

6806876: ClassCastException occurs in assignment expressions without any heap \
                pollutions
Summary: intersection types should be considered as non-reifiable by javac
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/code/Types.java
! src/share/classes/com/sun/tools/javac/resources/compiler.properties
+ test/tools/javac/varargs/6806876/T6806876.java
+ test/tools/javac/varargs/6806876/T6806876.out

Changeset: abe992640c5a
Author:    mcimadamore
Date:      2009-08-11 01:12 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/abe992640c5a

6390045: Unexpected error "cannot access java.lang.Void" with '-target cldc1.0' with \
                -source >=1.5
Summary: javac needs to synthetize a fake java.lang.Void symbol if one is not given \
                on the classpath
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/code/Symtab.java
+ test/tools/javac/6390045/T6390045a.java
+ test/tools/javac/6390045/T6390045b.java

Changeset: 62073a5becc5
Author:    mcimadamore
Date:      2009-08-11 01:12 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/62073a5becc5

6840059: regression: javac silently crashes when resolving erroneous anonymous inner \
                constructor
Summary: resolved an internal crash with constructor resolution
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/comp/Attr.java
+ test/tools/javac/6840059/T6840059.java
+ test/tools/javac/6840059/T6840059.out

Changeset: 8227961c64d3
Author:    mcimadamore
Date:      2009-08-11 01:13 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/8227961c64d3

6521805: Regression: JDK5/JDK6 javac allows write access to outer class reference
Summary: javac should warn/complain about identifiers with the same name as synthetic \
                symbol
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/comp/Check.java
! src/share/classes/com/sun/tools/javac/comp/Lower.java
! src/share/classes/com/sun/tools/javac/main/JavaCompiler.java
! src/share/classes/com/sun/tools/javac/resources/compiler.properties
+ test/tools/javac/6521805/T6521805a.java
+ test/tools/javac/6521805/T6521805a_1.out
+ test/tools/javac/6521805/T6521805a_2.out
+ test/tools/javac/6521805/T6521805b.java
+ test/tools/javac/6521805/T6521805c.java
+ test/tools/javac/6521805/T6521805d.java
+ test/tools/javac/6521805/T6521805d.out
+ test/tools/javac/6521805/T6521805e.java
+ test/tools/javac/6521805/T6521805e.out
+ test/tools/javac/6521805/p/Outer.java
+ test/tools/javac/6521805/p/Sub.java
! test/tools/javac/6734819/T6734819a.out
! test/tools/javac/6734819/T6734819b.out
! test/tools/javac/policy/test2/byfile.AB.out
! test/tools/javac/policy/test2/bytodo.AB.out

Changeset: 62fb6cafa93b
Author:    mcimadamore
Date:      2009-08-11 01:13 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/62fb6cafa93b

6869075: regression: javac crashes when compiling compound string assignment with \
                generics
Summary: javac should not add syntehtic cast to the LHS of an assignment expression
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/comp/TransTypes.java
+ test/tools/javac/generics/T6869075.java

Changeset: 13902c0c9b83
Author:    mcimadamore
Date:      2009-08-11 01:14 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/13902c0c9b83

6569404: Cannot instantiate an inner class of a type variable
Summary: javac is too strict in rejecting member selction from a type-var
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/comp/Attr.java
+ test/tools/javac/generics/typevars/6569404/T6569404a.java
+ test/tools/javac/generics/typevars/6569404/T6569404b.java
+ test/tools/javac/generics/typevars/6569404/T6569404b.out
+ test/tools/javac/generics/typevars/6569404/T6569404c.java

Changeset: c4c424badb83
Author:    mcimadamore
Date:      2009-08-11 01:14 +0100
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/c4c424badb83

6199153: Generic throws and overriding
Summary: javac incorrectly rejects an uchecked overriding
Reviewed-by: jjg

! src/share/classes/com/sun/tools/javac/comp/Check.java
! src/share/classes/com/sun/tools/javac/resources/compiler.properties
+ test/tools/javac/OverrideChecks/6199153/T6199153.java
+ test/tools/javac/OverrideChecks/6199153/T6199153.out

Changeset: 21f1d2462c7c
Author:    asaha
Date:      2009-08-07 11:32 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/21f1d2462c7c

6803688: Integrate latest JAX-WS (2.1.6) in to JDK 6u14
Reviewed-by: darcy, ramap

! THIRD_PARTY_README

Changeset: 91852fb12e2e
Author:    asaha
Date:      2009-08-10 09:36 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/91852fb12e2e

Merge


Changeset: 38f54dbd2e5b
Author:    asaha
Date:      2009-08-11 08:22 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/38f54dbd2e5b

Merge


Changeset: beefdeb352e6
Author:    jjg
Date:      2009-08-11 14:05 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/beefdeb352e6

6870591: langtools build sets javac.bootclasspath incorrectly
Reviewed-by: ohair

! make/build.xml

Changeset: 5a26c8fd0830
Author:    jjg
Date:      2009-08-11 18:35 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/5a26c8fd0830

6870743: update comments in langtools/make/build.properties
Reviewed-by: darcy

! make/build.properties

Changeset: 97d06f3e8787
Author:    tbell
Date:      2009-08-14 08:53 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/97d06f3e8787

Merge


Changeset: 6f07b50a8796
Author:    xdono
Date:      2009-08-20 11:20 -0700
URL:       http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/6f07b50a8796

Added tag jdk7-b70 for changeset 97d06f3e8787

! .hgtags


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic