hg: jdk7/hotspot-rt/hotspot: 7005007: Refine use of ALT_COMPILER_PATH to avoid conflict with JPRT usage

2010-12-09 Thread david . holmes
Changeset: a5610f0862fe Author:dholmes Date: 2010-12-09 20:12 -0500 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/a5610f0862fe 7005007: Refine use of ALT_COMPILER_PATH to avoid conflict with JPRT usage Summary: Check for CROSS_COMPILE_ARCH being set as an indicator to

hg: jdk7/tl/corba: 7004713: regression: cannot find symbol: variable delegate failed compile _Stub

2010-12-09 Thread abhi . saha
Changeset: 33ca1bceec2d Author:skoppar Date: 2010-12-05 22:22 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/corba/rev/33ca1bceec2d 7004713: regression: cannot find symbol: variable delegate failed compile _Stub Summary: Also reviewed by ken.cavana...@oracle.com Reviewed-by: asaha !

hg: jdk7/tl/langtools: 6986242: cut-n-paste error in javadoc for Trees.instance(ProcessingEnvironment)

2010-12-09 Thread jonathan . gibbons
Changeset: 65820d0d4a97 Author:jjg Date: 2010-12-09 19:53 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/65820d0d4a97 6986242: cut-n-paste error in javadoc for Trees.instance(ProcessingEnvironment) Reviewed-by: darcy ! src/share/classes/com/sun/source/util/Trees.java

hg: jdk7/tl/langtools: 7005856: avoid name clash for langtools when building on MacOS

2010-12-09 Thread jonathan . gibbons
Changeset: 4dd1c0176d81 Author:jjg Date: 2010-12-09 18:33 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/4dd1c0176d81 7005856: avoid name clash for langtools when building on MacOS Reviewed-by: mcimadamore ! src/share/classes/com/sun/tools/javac/jvm/ClassReader.java

hg: jdk7/hotspot-rt/hotspot: 6989076: JVM crashes in klassItable::initialize_itable_for_interface

2010-12-09 Thread dmitriy . samersoff
Changeset: 642e54d1850a Author:dsamersoff Date: 2010-12-09 17:53 +0300 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/642e54d1850a 6989076: JVM crashes in klassItable::initialize_itable_for_interface Summary: hotspot should check protection attribute besides the name an

hg: jdk7/hotspot-rt/hotspot: 7004582: Add GetThisObject() function to JVMTI 1.2

2010-12-09 Thread keith . mcguigan
Changeset: 09b4dd4f152b Author:kamg Date: 2010-12-09 15:04 -0500 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2 Summary: Add 'GetThisObject' function Reviewed-by: never, coleenp ! src/share/vm/code/nmethod

Re: What's the purpose of the Hotspot flag, ForceFullGCJVMTIEpilogues

2010-12-09 Thread Daniel D. Daugherty
$ hg annotate src/share/vm/runtime/globals.hpp | grep ForceFullGCJVMTIEpilogues 866: product(bool, ForceFullGCJVMTIEpilogues, false, \ $ hg log -r 866 -v src/share/vm/runtime/globals.hpp changeset: 866:2b4230d1e589 parent: 506:26bc4770e671 user:dcubed

What's the purpose of the Hotspot flag, ForceFullGCJVMTIEpilogues

2010-12-09 Thread Keith McGuigan
See subject. Does anybody know? The only thing it appears to do is cause a recaching of the JvmtiBreakpoint cache after minor collections, which is unnecessary as a minor collection will not change any bytecode pointers. It's a "product" flag, defaulting to false. Can it be removed o

Re: request for review: 7004582: Add GetLocalInstance() function to JVMTI 1.2

2010-12-09 Thread Tom Rodriguez
Looks good. tom On Dec 9, 2010, at 6:26 AM, Keith McGuigan wrote: > > Hello, > > Would appreciate a review for adding this new JVMTI function which will be > used to enhance JDI event instance filtering. See the JVMTI spec (included > in the webrev) for the details. > > http://cr.openjdk.j

hg: jdk7/tl/jdk: 6659234: Incorrect check in SerialBlob.getBytes

2010-12-09 Thread lance . andersen
Changeset: 1bf378034d39 Author:lancea Date: 2010-12-09 13:01 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/1bf378034d39 6659234: Incorrect check in SerialBlob.getBytes Reviewed-by: darcy ! src/share/classes/javax/sql/rowset/serial/SerialBlob.java

hg: jdk7/tl/langtools: 6985202: no access to doc comments from Tree API

2010-12-09 Thread jonathan . gibbons
Changeset: 90914ac50868 Author:jjg Date: 2010-12-09 08:48 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/90914ac50868 6985202: no access to doc comments from Tree API Reviewed-by: mcimadamore ! src/share/classes/com/sun/source/util/Trees.java ! src/share/classes/com/su

hg: jdk7/tl/langtools: 4917091: javac rejects array over 128 in length

2010-12-09 Thread jonathan . gibbons
Changeset: bcf44475aeee Author:jjg Date: 2010-12-09 08:24 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/bcf44475aeee 4917091: javac rejects array over 128 in length Reviewed-by: mcimadamore ! src/share/classes/com/sun/tools/javac/jvm/Gen.java + test/tools/javac/491709

hg: jdk7/tl/langtools: 3 new changesets

2010-12-09 Thread maurizio . cimadamore
Changeset: 5ef88773462b Author:mcimadamore Date: 2010-12-09 15:50 + URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/5ef88773462b 7005095: Cast: compile reject sensible cast from final class to interface Summary: a previous fix to cast conversion has made the compiler too s

request for review: 6436034: Instance filter doesn't filter event if it occurs in native method

2010-12-09 Thread Keith McGuigan
Hello, This is the JDK-side of the fix for instance filters that uses the new GetLocalInstance JVMTI function. http://cr.openjdk.java.net/~kamg/6436034/webrev.00/ Reviews appreciated, thanks! -- - Keith

request for review: 7004582: Add GetLocalInstance() function to JVMTI 1.2

2010-12-09 Thread Keith McGuigan
Hello, Would appreciate a review for adding this new JVMTI function which will be used to enhance JDI event instance filtering. See the JVMTI spec (included in the webrev) for the details. http://cr.openjdk.java.net/~kamg/7004582/webrev.00/ Thanks! -- - Keith