From tom.deneau at amd.com Mon Jan 4 11:34:23 2010 From: tom.deneau at amd.com (Deneau, Tom) Date: Mon, 4 Jan 2010 11:34:23 -0800 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> Message-ID: <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> Cross posting to hotspot-compiler-dev at openjdk.java.net and serviceability-dev at openjdk.java.net since this review request touches both compiler/runtime code and JVMTI code... New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.04 The compiler/runtime part has not changed too much: * Based on Dan's jvmti-related comments, the name of the JavaThread-specific flag is now should_post_on_exceptions * reduced the number of code lines in the common graphKit::uncommon_trap_if_should_post_on_exceptions * moved the BailoutToInterpreterForThrows logic above the jvmti_can_post_exceptions() check to avoid having two uncommon traps on both paths. The jvmti part has changed/simplified quite a bit based on Dan Daugherty's good comments: * There is still a cached thread-specific flag called should_post_on_exceptions. This flag is recalculated in only in JvmtiEventControllerPrivate::recompute_thread_enabled and is handled in a way similar to the thread-specific interp-only mode which was already in recompute_thread_enabled. * There is also a "global" should_post_on_exceptions flag which reflects whether ANY thread has one of the appropriate event notification bits set. This flag is exposed in the normal JVMTI_SUPPORT_FLAG manner in jvmtiExport.cpp/hpp and updated in jvmtiEventControllerPrivate::recompute_enabled. Unlike the thread-specific flag, this global flag is not yet used anywhere else but since it fits into the existing JVMTI_SUPPORT_FLAG structure, it was felt we should put it there for possible future use. * jvmtiEventController logic now handles all the events that were possible if jvmti_can_post_exceptions() was true. These are Throws, Catches, FramePops, and MethodExits. Note to Dan: * We had talked about changing the name of the existing jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() to make it match the new should_post_on_exceptions name used above. Since this affected some other files, to keep this webrev simpler, I decided not to do that as part of this webrev. If we still want to do this, I can post this additional change as the final webrev. -- Tom Deneau From weijun.wang at sun.com Mon Jan 4 18:43:30 2010 From: weijun.wang at sun.com (weijun.wang at sun.com) Date: Tue, 05 Jan 2010 02:43:30 +0000 Subject: hg: jdk7/tl/jdk: 2 new changesets Message-ID: <20100105024356.518AB422D7@hg.openjdk.java.net> Changeset: ef9774dc4f5a Author: weijun Date: 2010-01-05 10:40 +0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/ef9774dc4f5a 6895424: RFC 5653 Reviewed-by: valeriep ! src/share/classes/org/ietf/jgss/GSSName.java ! src/share/classes/sun/security/jgss/GSSManagerImpl.java ! src/share/classes/sun/security/jgss/GSSNameImpl.java ! src/share/classes/sun/security/jgss/GSSUtil.java ! src/share/classes/sun/security/jgss/wrapper/GSSNameElement.java + test/sun/security/krb5/auto/Test5653.java Changeset: c028d78fa438 Author: weijun Date: 2010-01-05 10:40 +0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/c028d78fa438 6913636: kvno check in JSSE Reviewed-by: valeriep ! src/share/classes/sun/security/ssl/krb5/KerberosClientKeyExchangeImpl.java ! test/sun/security/krb5/auto/SSL.java From tom.deneau at amd.com Tue Jan 5 13:00:14 2010 From: tom.deneau at amd.com (Deneau, Tom) Date: Tue, 5 Jan 2010 13:00:14 -0800 Subject: JvmtiTrace of Capabilities APIs References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> Message-ID: <510934C4EB2082479E7D4AA4D06A8882ABF8C2FC@SAUSEXMBP01.amd.com> While working on the webrev for 6902182, I noticed that when I used -XX:TraceJVMTI and traced calls that involved capabilities (for example, AddCapabilities), the individual capabilities bits were not displayed. In jvmtiManageCapabilities.cpp, there is a function JvmtiManageCapabilities:: print(const jvmtiCapabilities* cap) which looks like it is set up to print this kind of individual capabilitiy information but I didn't see it getting called. -- Tom -----Original Message----- From: Deneau, Tom Sent: Monday, January 04, 2010 1:34 PM To: 'serviceability-dev at openjdk.java.net'; 'hotspot-compiler-dev at openjdk.java.net' Cc: 'Daniel.Daugherty at Sun.COM' Subject: RE: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty Cross posting to hotspot-compiler-dev at openjdk.java.net and serviceability-dev at openjdk.java.net since this review request touches both compiler/runtime code and JVMTI code... New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.04 The compiler/runtime part has not changed too much: * Based on Dan's jvmti-related comments, the name of the JavaThread-specific flag is now should_post_on_exceptions * reduced the number of code lines in the common graphKit::uncommon_trap_if_should_post_on_exceptions * moved the BailoutToInterpreterForThrows logic above the jvmti_can_post_exceptions() check to avoid having two uncommon traps on both paths. The jvmti part has changed/simplified quite a bit based on Dan Daugherty's good comments: * There is still a cached thread-specific flag called should_post_on_exceptions. This flag is recalculated in only in JvmtiEventControllerPrivate::recompute_thread_enabled and is handled in a way similar to the thread-specific interp-only mode which was already in recompute_thread_enabled. * There is also a "global" should_post_on_exceptions flag which reflects whether ANY thread has one of the appropriate event notification bits set. This flag is exposed in the normal JVMTI_SUPPORT_FLAG manner in jvmtiExport.cpp/hpp and updated in jvmtiEventControllerPrivate::recompute_enabled. Unlike the thread-specific flag, this global flag is not yet used anywhere else but since it fits into the existing JVMTI_SUPPORT_FLAG structure, it was felt we should put it there for possible future use. * jvmtiEventController logic now handles all the events that were possible if jvmti_can_post_exceptions() was true. These are Throws, Catches, FramePops, and MethodExits. Note to Dan: * We had talked about changing the name of the existing jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() to make it match the new should_post_on_exceptions name used above. Since this affected some other files, to keep this webrev simpler, I decided not to do that as part of this webrev. If we still want to do this, I can post this additional change as the final webrev. -- Tom Deneau From kelly.ohair at sun.com Tue Jan 5 13:44:27 2010 From: kelly.ohair at sun.com (kelly.ohair at sun.com) Date: Tue, 05 Jan 2010 21:44:27 +0000 Subject: hg: jdk7/tl/jdk: 10 new changesets Message-ID: <20100105214650.D5D7B42414@hg.openjdk.java.net> Changeset: 7e116fd3a724 Author: ohair Date: 2010-01-04 15:30 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/7e116fd3a724 6910834: TEST: java/io/File/Basic.java fails on Windows CYGWIN environment Reviewed-by: tbell, alanb ! test/java/io/File/Basic.java ! test/java/io/File/basic.sh Changeset: ad19f61a0fa6 Author: ohair Date: 2010-01-04 15:33 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/ad19f61a0fa6 6910835: TESTS: 3 java/io run.sh tests fail when run on Windows XP CYGWIN Reviewed-by: tbell, alanb ! test/java/io/Serializable/evolution/RenamePackage/run.sh ! test/java/io/Serializable/serialver/classpath/run.sh ! test/java/io/Serializable/serialver/nested/run.sh Changeset: f9aa7e58974d Author: ohair Date: 2010-01-04 15:36 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/f9aa7e58974d 6911113: These tests do not work with CYGWIN: java/nio Reviewed-by: tbell, alanb ! test/java/nio/channels/Selector/lots_of_updates.sh ! test/java/nio/channels/spi/AsynchronousChannelProvider/custom_provider.sh ! test/java/nio/file/Files/walk_file_tree.sh ! test/java/nio/file/Path/delete_on_close.sh Changeset: 7595c6a198d3 Author: ohair Date: 2010-01-04 15:38 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/7595c6a198d3 6911117: These tests do not work with CYGWIN: com/sun/jdi Reviewed-by: tbell, alanb ! test/com/sun/jdi/ProcessAttachTest.sh ! test/com/sun/jdi/connect/spi/JdiLoadedByCustomLoader.sh Changeset: caf27afcae8d Author: ohair Date: 2010-01-04 15:41 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/caf27afcae8d 6911131: Test does not work with CYGWIN: sun/management/jmxremote/bootstrap/RmiSslNoKeyStoreTest.sh Reviewed-by: tbell, alanb ! test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh Changeset: f86db0646421 Author: ohair Date: 2010-01-04 15:45 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/f86db0646421 6911112: Tests do not work with CYGWIN: javax/imageio/, javax/script/, and sun/misc/ Reviewed-by: tbell, alanb ! test/javax/imageio/stream/StreamCloserLeak/run_test.sh ! test/javax/script/CommonSetup.sh ! test/javax/script/ProviderTest.sh ! test/sun/misc/URLClassPath/ClassnameCharTest.sh Changeset: 07fdd926aaea Author: ohair Date: 2010-01-04 15:49 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/07fdd926aaea 6911129: These tests do not work with CYGWIN: java/lang Reviewed-by: tbell, alanb ! test/java/beans/Introspector/Test5102804.java ! test/java/lang/ClassLoader/deadlock/TestOneWayDelegate.sh ! test/java/lang/StringCoding/CheckEncodings.sh ! test/java/lang/System/finalization/FinExit.sh ! test/java/lang/annotation/loaderLeak/LoaderLeak.sh ! test/java/lang/instrument/appendToClassLoaderSearch/CommonSetup.sh Changeset: 1d6f315e42f1 Author: ohair Date: 2010-01-04 15:52 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/1d6f315e42f1 6911108: These tests do not work with CYGWIN: java/util Reviewed-by: tbell, alanb ! test/java/util/Currency/PropertiesTest.sh ! test/java/util/PluggableLocale/ExecTest.sh ! test/java/util/ResourceBundle/Bug6299235Test.sh ! test/java/util/ResourceBundle/Control/ExpirationTest.sh ! test/java/util/ServiceLoader/basic.sh Changeset: 6f2a5912f5be Author: ohair Date: 2010-01-04 15:56 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/6f2a5912f5be 6911104: Tests do not work with CYGWIN: tools, sun/tools, and com/sun/tools Reviewed-by: tbell, alanb ! test/com/sun/tools/attach/ApplicationSetup.sh ! test/com/sun/tools/attach/BasicTests.sh ! test/com/sun/tools/attach/CommonSetup.sh ! test/com/sun/tools/attach/PermissionTests.sh ! test/com/sun/tools/attach/ProviderTests.sh ! test/sun/jvmstat/testlibrary/utils.sh ! test/sun/tools/common/ApplicationSetup.sh ! test/sun/tools/common/CommonSetup.sh ! test/sun/tools/jps/jps-help.sh ! test/sun/tools/jstat/jstatHelp.sh ! test/sun/tools/jstat/jstatOptions1.sh ! test/sun/tools/jstatd/jstatdUsage1.sh ! test/sun/tools/native2ascii/Native2AsciiTests.sh ! test/tools/launcher/ChangeDataModel.sh ! test/tools/launcher/ClassPathWildCard.sh ! test/tools/launcher/DefaultLocaleTest.sh ! test/tools/launcher/UnicodeTest.sh Changeset: b7cf91e43c67 Author: ohair Date: 2010-01-05 13:44 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/b7cf91e43c67 Merge From jonathan.gibbons at sun.com Wed Jan 6 13:11:53 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Wed, 06 Jan 2010 21:11:53 +0000 Subject: hg: jdk7/tl/langtools: 6307206: missing lint control for pkg-info Message-ID: <20100106211159.37EB342595@hg.openjdk.java.net> Changeset: 0220a3ab1a40 Author: jjg Date: 2010-01-06 13:09 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/0220a3ab1a40 6307206: missing lint control for pkg-info Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/resources/compiler.properties From jonathan.gibbons at sun.com Wed Jan 6 13:17:40 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Wed, 06 Jan 2010 21:17:40 +0000 Subject: hg: jdk7/tl/langtools: 6855236: Compiler Tree API TreePath class generates NullPointerException from Iterator Message-ID: <20100106211742.0860D42599@hg.openjdk.java.net> Changeset: d4e0ae9b4ecb Author: jjg Date: 2010-01-06 13:16 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/d4e0ae9b4ecb 6855236: Compiler Tree API TreePath class generates NullPointerException from Iterator Reviewed-by: darcy + test/tools/javac/T6855236.java From mandy.chung at sun.com Thu Jan 7 08:15:59 2010 From: mandy.chung at sun.com (mandy.chung at sun.com) Date: Thu, 07 Jan 2010 16:15:59 +0000 Subject: hg: jdk7/tl/jdk: 6911737: Module build: generate modules with native libraries and any other files not in jar Message-ID: <20100107161644.9D5CE426CC@hg.openjdk.java.net> Changeset: d30f2e22fffd Author: mchung Date: 2010-01-07 08:14 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/d30f2e22fffd 6911737: Module build: generate modules with native libraries and any other files not in jar Summary: create modules under OUTPUTDIR/modules directory containing resources, native libraries Reviewed-by: alanb, ohair ! make/com/sun/crypto/provider/Makefile ! make/com/sun/java/pack/Makefile ! make/com/sun/java/pack/prop/Makefile ! make/com/sun/jndi/cosnaming/Makefile ! make/com/sun/jndi/dns/Makefile ! make/com/sun/jndi/ldap/Makefile ! make/com/sun/jndi/rmi/registry/Makefile ! make/com/sun/nio/sctp/Makefile ! make/com/sun/org/apache/xml/Makefile ! make/com/sun/rowset/Makefile ! make/com/sun/script/Makefile ! make/com/sun/security/auth/module/Makefile ! make/com/sun/servicetag/Makefile ! make/com/sun/tools/attach/Makefile ! make/common/Defs.gmk ! make/common/Demo.gmk ! make/common/Library.gmk ! make/common/Modules.gmk ! make/common/Program.gmk ! make/common/internal/BinaryPlugs.gmk ! make/common/internal/Resources.gmk ! make/common/shared/Sanity.gmk ! make/java/awt/Makefile ! make/java/fdlibm/Makefile ! make/java/hpi/native/Makefile ! make/java/hpi/windows/Makefile ! make/java/instrument/Makefile ! make/java/java/Makefile ! make/java/java_crw_demo/Makefile ! make/java/java_hprof_demo/Makefile ! make/java/jli/Makefile ! make/java/jvm/Makefile ! make/java/logging/Makefile ! make/java/main/java/Makefile ! make/java/main/javaw/Makefile ! make/java/management/Makefile ! make/java/net/Makefile ! make/java/nio/Makefile ! make/java/npt/Makefile - make/java/redist/FILES.gmk ! make/java/redist/Makefile + make/java/redist/fonts/Makefile + make/java/redist/sajdi/Makefile ! make/java/security/Makefile ! make/java/sql/Makefile ! make/java/text/Makefile ! make/java/verify/Makefile ! make/java/zip/Makefile ! make/javax/crypto/Makefile ! make/javax/imageio/Makefile ! make/javax/print/Makefile ! make/javax/sound/Makefile ! make/javax/sound/jsoundalsa/Makefile ! make/javax/sound/jsoundds/Makefile ! make/javax/sql/Makefile ! make/javax/swing/Makefile ! make/javax/swing/plaf/Makefile ! make/jpda/back/Makefile ! make/jpda/transport/Makefile ! make/jpda/transport/shmem/Makefile ! make/jpda/transport/socket/Makefile ! make/jpda/tty/Makefile ! make/launchers/Makefile ! make/mkdemo/jvmti/Makefile ! make/mkdemo/management/Makefile ! make/mksample/dtrace/Makefile ! make/mksample/jmx/jmx-scandir/Makefile ! make/mksample/nbproject/Makefile ! make/mksample/nio/file/Makefile ! make/mksample/nio/multicast/Makefile ! make/mksample/nio/server/Makefile ! make/mksample/scripting/scriptpad/Makefile ! make/mksample/webservices/EbayClient/Makefile ! make/mksample/webservices/EbayServer/Makefile ! make/modules/Makefile ! make/modules/modules.config ! make/modules/tools/nbproject/project.xml ! make/modules/tools/src/com/sun/classanalyzer/Module.java ! make/sun/applet/Makefile ! make/sun/awt/Makefile ! make/sun/cmm/Makefile ! make/sun/cmm/kcms/Makefile ! make/sun/cmm/lcms/Makefile ! make/sun/dcpr/Makefile ! make/sun/font/Makefile ! make/sun/font/t2k/Makefile ! make/sun/headless/Makefile ! make/sun/image/generic/Makefile ! make/sun/image/vis/Makefile ! make/sun/jar/Makefile ! make/sun/javazic/Makefile ! make/sun/jawt/Makefile ! make/sun/jconsole/Makefile ! make/sun/jdbc/Makefile ! make/sun/jdga/Makefile ! make/sun/jkernel/Makefile ! make/sun/jpeg/Makefile ! make/sun/launcher/Makefile ! make/sun/management/Makefile ! make/sun/native2ascii/Makefile ! make/sun/net/others/Makefile ! make/sun/net/spi/nameservice/dns/Makefile - make/sun/nio/FILES_java.gmk ! make/sun/nio/Makefile + make/sun/nio/cs/FILES_java.gmk + make/sun/nio/cs/Makefile ! make/sun/org/mozilla/javascript/Makefile ! make/sun/pisces/Makefile ! make/sun/rmi/cgi/Makefile ! make/sun/rmi/oldtools/Makefile ! make/sun/rmi/registry/Makefile ! make/sun/rmi/rmi/Makefile ! make/sun/rmi/rmic/Makefile ! make/sun/rmi/rmid/Makefile ! make/sun/security/ec/Makefile ! make/sun/security/jgss/wrapper/Makefile ! make/sun/security/krb5/Makefile ! make/sun/security/mscapi/Makefile ! make/sun/security/pkcs11/Makefile ! make/sun/security/smartcardio/Makefile ! make/sun/security/tools/Makefile ! make/sun/serialver/Makefile ! make/sun/splashscreen/Makefile ! make/sun/text/Makefile ! make/sun/tools/Makefile ! make/sun/tracing/dtrace/Makefile ! make/sun/xawt/Makefile From Daniel.Daugherty at Sun.COM Thu Jan 7 14:32:32 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Thu, 07 Jan 2010 15:32:32 -0700 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) Message-ID: <4B466100.6080402@sun.com> Greetings, The folks at AMD Labs have been kind enough to provide an extension to the JVM/TI CompileMethodLoad event in order to provide additional information about in-lining. This extension uses the existing (but previously unused) compile_info paramter: http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#CompiledMethodLoad Vasanth and company provided the HotSpot code changes and the original demo program. I just did the Makefile changes to export the new jvmticmlr.h file in the HotSpot repo and the integration of the demo program into JAVA_HOME/demo/jvmti in the JDK repo. Here is the webrev for the OpenJDK6 version of the changes: http://cr.openjdk.java.net/~dcubed/6580131-webrev/0/ The OpenJDK7 version of these changes are not expected to be very different from this version. For the Sun folks, the CCC request for adding the jvmticmlr.h is almost final. I'm waiting for the VM-SQE team to agree that the latest version addresses their review concerns, but I think the St Petersburg team is on holiday at the moment. Any reviews are appreciated. Dan From Daniel.Daugherty at Sun.COM Thu Jan 7 16:04:07 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Thu, 07 Jan 2010 17:04:07 -0700 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty In-Reply-To: <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> Message-ID: <4B467677.3070006@sun.com> Deneau, Tom wrote: > Cross posting to hotspot-compiler-dev at openjdk.java.net and > serviceability-dev at openjdk.java.net since this review request touches > both compiler/runtime code and JVMTI code... > > New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.04 > src/share/vm/c1/c1_Runtime1.cpp No comments. src/share/vm/opto/graphKit.cpp No comments. src/share/vm/opto/graphKit.hpp No comments. src/share/vm/opto/parse2.cpp Comment on line 2069 seems redundant. src/share/vm/opto/runtime.cpp Typo: 'if we exceptions' -> 'if exceptions' src/share/vm/prims/jvmtiEventController.cpp The JvmtiEventControllerPrivate::recompute_thread_enabled() change breaks the JavaThread versus JvmtiThreadState abstraction a bit. I would have done lines 516-517 like: bool should_post_on_exceptions = (any_env_enabled & SHOULD_POST_ON_EXCEPTIONS_BITS) != 0; state->set_should_post_on_exceptions(should_post_on_exceptions); This would require a new function in JvmtiThreadState named set_should_post_on_exceptions() that makes the actual call to _thread->set_should_post_on_exceptions_flag(). The fact that the new flag lives in the JavaThread is an implementation detail that the JvmtiEvent stuff shouldn't care about. src/share/vm/prims/jvmtiExport.cpp No comments. src/share/vm/prims/jvmtiExport.hpp No comments. src/share/vm/runtime/thread.cpp No comments. src/share/vm/runtime/thread.hpp No comments. > Note to Dan: > > * We had talked about changing the name of the existing > jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() to > make it match the new should_post_on_exceptions name used above. > Since this affected some other files, to keep this webrev > simpler, I decided not to do that as part of this webrev. If we > still want to do this, I can post this additional change as the > final webrev. > Following the existing style would be clearer (IMHO): can_post_foo <=> should_post_foo so it should be: can_post_on_exceptions <=> should_post_on_exceptions in the JvmtiExport stuff. Looks like the compiler's jvmti_can_post_exceptions() should also change to jvmti_can_post_on_exceptions() to match. Since you correctly pointed out that it really should be "post *on* exceptions" instead of "post exceptions", I would prefer if the change were made as part of this work. However, I can make the change later if you wish. Dan From tom.deneau at amd.com Thu Jan 7 16:22:42 2010 From: tom.deneau at amd.com (Deneau, Tom) Date: Thu, 7 Jan 2010 16:22:42 -0800 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty In-Reply-To: <4B467677.3070006@sun.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> <4B467677.3070006@sun.com> Message-ID: <510934C4EB2082479E7D4AA4D06A8882ABF8CA6B@SAUSEXMBP01.amd.com> Dan -- Good points. I'll make these changes and also the rename to can_post_on_exceptions() and repost. -- Tom -----Original Message----- From: Daniel.Daugherty at Sun.COM [mailto:Daniel.Daugherty at Sun.COM] Sent: Thursday, January 07, 2010 6:04 PM To: Deneau, Tom Cc: serviceability-dev at openjdk.java.net; hotspot-compiler-dev at openjdk.java.net Subject: Re: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty Deneau, Tom wrote: > Cross posting to hotspot-compiler-dev at openjdk.java.net and > serviceability-dev at openjdk.java.net since this review request touches > both compiler/runtime code and JVMTI code... > > New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.04 > src/share/vm/c1/c1_Runtime1.cpp No comments. src/share/vm/opto/graphKit.cpp No comments. src/share/vm/opto/graphKit.hpp No comments. src/share/vm/opto/parse2.cpp Comment on line 2069 seems redundant. src/share/vm/opto/runtime.cpp Typo: 'if we exceptions' -> 'if exceptions' src/share/vm/prims/jvmtiEventController.cpp The JvmtiEventControllerPrivate::recompute_thread_enabled() change breaks the JavaThread versus JvmtiThreadState abstraction a bit. I would have done lines 516-517 like: bool should_post_on_exceptions = (any_env_enabled & SHOULD_POST_ON_EXCEPTIONS_BITS) != 0; state->set_should_post_on_exceptions(should_post_on_exceptions); This would require a new function in JvmtiThreadState named set_should_post_on_exceptions() that makes the actual call to _thread->set_should_post_on_exceptions_flag(). The fact that the new flag lives in the JavaThread is an implementation detail that the JvmtiEvent stuff shouldn't care about. src/share/vm/prims/jvmtiExport.cpp No comments. src/share/vm/prims/jvmtiExport.hpp No comments. src/share/vm/runtime/thread.cpp No comments. src/share/vm/runtime/thread.hpp No comments. > Note to Dan: > > * We had talked about changing the name of the existing > jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() to > make it match the new should_post_on_exceptions name used above. > Since this affected some other files, to keep this webrev > simpler, I decided not to do that as part of this webrev. If we > still want to do this, I can post this additional change as the > final webrev. > Following the existing style would be clearer (IMHO): can_post_foo <=> should_post_foo so it should be: can_post_on_exceptions <=> should_post_on_exceptions in the JvmtiExport stuff. Looks like the compiler's jvmti_can_post_exceptions() should also change to jvmti_can_post_on_exceptions() to match. Since you correctly pointed out that it really should be "post *on* exceptions" instead of "post exceptions", I would prefer if the change were made as part of this work. However, I can make the change later if you wish. Dan From Daniel.Daugherty at Sun.COM Thu Jan 7 16:44:17 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Thu, 07 Jan 2010 17:44:17 -0700 Subject: JvmtiTrace of Capabilities APIs In-Reply-To: <510934C4EB2082479E7D4AA4D06A8882ABF8C2FC@SAUSEXMBP01.amd.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C2FC@SAUSEXMBP01.amd.com> Message-ID: <4B467FE1.6010504@sun.com> Tom, I filed the following bug to track this issue: 6915138 4/4 -XX:TraceJVMTI should include details about capability bits Dan Deneau, Tom wrote: > While working on the webrev for 6902182, I noticed that when I used -XX:TraceJVMTI and traced calls that involved capabilities (for example, AddCapabilities), the individual capabilities bits were not displayed. In jvmtiManageCapabilities.cpp, there is a function > JvmtiManageCapabilities:: print(const jvmtiCapabilities* cap) > which looks like it is set up to print this kind of individual capabilitiy information but I didn't see it getting called. > > -- Tom > From joe.darcy at sun.com Thu Jan 7 19:34:45 2010 From: joe.darcy at sun.com (joe.darcy at sun.com) Date: Fri, 08 Jan 2010 03:34:45 +0000 Subject: hg: jdk7/tl/jdk: 6915171: Clarify checked/unchecked status of Throwable and its subclasses Message-ID: <20100108033511.09D8942785@hg.openjdk.java.net> Changeset: d36fa10de3cb Author: darcy Date: 2010-01-07 19:42 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/d36fa10de3cb 6915171: Clarify checked/unchecked status of Throwable and its subclasses Reviewed-by: dholmes ! src/share/classes/java/lang/Error.java ! src/share/classes/java/lang/Exception.java ! src/share/classes/java/lang/RuntimeException.java ! src/share/classes/java/lang/Throwable.java From jonathan.gibbons at sun.com Fri Jan 8 11:14:46 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Fri, 08 Jan 2010 19:14:46 +0000 Subject: hg: jdk7/tl/langtools: 6878147: Keywords.log is declared and initialized but unused Message-ID: <20100108191450.89D594288B@hg.openjdk.java.net> Changeset: c315df443ff2 Author: jjg Date: 2010-01-08 11:11 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/c315df443ff2 6878147: Keywords.log is declared and initialized but unused Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/parser/Keywords.java From jonathan.gibbons at sun.com Fri Jan 8 11:18:46 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Fri, 08 Jan 2010 19:18:46 +0000 Subject: hg: jdk7/tl/langtools: 6878146: incorrect unused value should be deleted Message-ID: <20100108191848.1B15B4288F@hg.openjdk.java.net> Changeset: 2d15bf467aea Author: jjg Date: 2010-01-08 11:16 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/2d15bf467aea 6878146: incorrect unused value should be deleted Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/util/LayoutCharacters.java From gnu_andrew at member.fsf.org Fri Jan 8 11:27:55 2010 From: gnu_andrew at member.fsf.org (Andrew John Hughes) Date: Fri, 8 Jan 2010 19:27:55 +0000 Subject: Request for approval: Allow Java's ELF symtab reader to use separate debuginfo files In-Reply-To: <4B4785A1.8030604@sun.com> References: <4B1FC407.6010405@redhat.com> <4B477EED.2080806@redhat.com> <4B4785A1.8030604@sun.com> Message-ID: <17c6771e1001081127r11984f04n28848a4bdee644f6@mail.gmail.com> 2010/1/8 Kelly O'Hair : > > > Andrew Haley wrote: >> >> On 12/09/2009 03:36 PM, Andrew Haley wrote: >>> >>> This is https://bugzilla.redhat.com/show_bug.cgi?id=541548 >>> The symptom is that jmap doesn't work because target libraries are >>> stripped. >>> The fix is to allow the symtab reader to use the separate debuginfo files >>> that are available for all (AFAIK) GNU/Linux distributions. >> >> This is now also https://bugs.openjdk.java.net/show_bug.cgi?id=100126 >> >> Webrev at http://cr.openjdk.java.net/~aph/100126-hotspot-webrev/ >> >> I have now checked several Linux distros, old and new, and although >> they keep their debuginfo files in different places, this patch works >> on all of them. >> >> Is this OK? ?And, if so, which repos should I push the patch to? >> > > I'm a little concerned about the impact this might have on hotspot > as it will eventually get delivered into a jdk6 release (I assume). > And jdk6 does builds on really old Linux systems, e.g. > "Red Hat Enterprise Advanced Server 2.1 update 2". > Can you think of anything that might be a problem with that? > Either at compile time or runtime? > aph will be able to respond to this in more detail, but my understanding of the patch is that it only tries separate debug files if it doesn't find debuginfo in the binary itself. If the builds om RHEL AS 2.1 use non-stripped binaries, it won't even get that far AFAICS. And if they don't and /usr/lib/debug also doesn't exist, then it will just fail as it always did. So the only issue would be that the code relies on building against something newer than it did previously. > I still am a bit uncomfortable with that 1K block of bytes we are adding, > but I'll resign from that debate, if this is the official way to do it. > How many of these 1K blocks are floating around the system? :^( > > The change probably needs to go through one of the hotspot forests, maybe > hotspot-rt? > I would have assumed hotspot-svc as it's serviceability-related. > In the meantime, I will take this patch and apply it, and make sure > hotspot still builds with the jdk6 and jdk7 Linux systems we have. > Thanks. HotSpot patches go through JPRT so that should also give it some build testing. > -kto > >> Thanks. >> Andrew. > -- Andrew :-) Free Java Software Engineer Red Hat, Inc. (http://www.redhat.com) Support Free Java! Contribute to GNU Classpath and the OpenJDK http://www.gnu.org/software/classpath http://openjdk.java.net PGP Key: 94EFD9D8 (http://subkeys.pgp.net) Fingerprint: F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8 From jonathan.gibbons at sun.com Fri Jan 8 11:29:35 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Fri, 08 Jan 2010 19:29:35 +0000 Subject: hg: jdk7/tl/langtools: 6665791: com.sun.source.tree.MethodTree.toString() does not output default values Message-ID: <20100108192937.B918942892@hg.openjdk.java.net> Changeset: 0e75f9f6d1d4 Author: jjg Date: 2010-01-08 11:28 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/0e75f9f6d1d4 6665791: com.sun.source.tree.MethodTree.toString() does not output default values Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/tree/Pretty.java + test/tools/javac/T6665791.java From jonathan.gibbons at sun.com Fri Jan 8 11:33:48 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Fri, 08 Jan 2010 19:33:48 +0000 Subject: hg: jdk7/tl/langtools: 6915078: ALT_JDK_IMPORT_PATH typo in langtools/make/Makefile Message-ID: <20100108193350.9219742894@hg.openjdk.java.net> Changeset: aa06467be3a2 Author: jjg Date: 2010-01-08 11:32 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/aa06467be3a2 6915078: ALT_JDK_IMPORT_PATH typo in langtools/make/Makefile Reviewed-by: tbell ! make/Makefile From Kelly.Ohair at Sun.COM Fri Jan 8 11:46:23 2010 From: Kelly.Ohair at Sun.COM (Kelly O'Hair) Date: Fri, 08 Jan 2010 11:46:23 -0800 Subject: Request for approval: Allow Java's ELF symtab reader to use separate debuginfo files In-Reply-To: <17c6771e1001081127r11984f04n28848a4bdee644f6@mail.gmail.com> References: <4B1FC407.6010405@redhat.com> <4B477EED.2080806@redhat.com> <4B4785A1.8030604@sun.com> <17c6771e1001081127r11984f04n28848a4bdee644f6@mail.gmail.com> Message-ID: <4B478B8F.7050702@sun.com> Andrew John Hughes wrote: > 2010/1/8 Kelly O'Hair : >> >> Andrew Haley wrote: >>> On 12/09/2009 03:36 PM, Andrew Haley wrote: >>>> This is https://bugzilla.redhat.com/show_bug.cgi?id=541548 >>>> The symptom is that jmap doesn't work because target libraries are >>>> stripped. >>>> The fix is to allow the symtab reader to use the separate debuginfo files >>>> that are available for all (AFAIK) GNU/Linux distributions. >>> This is now also https://bugs.openjdk.java.net/show_bug.cgi?id=100126 >>> >>> Webrev at http://cr.openjdk.java.net/~aph/100126-hotspot-webrev/ >>> >>> I have now checked several Linux distros, old and new, and although >>> they keep their debuginfo files in different places, this patch works >>> on all of them. >>> >>> Is this OK? And, if so, which repos should I push the patch to? >>> >> I'm a little concerned about the impact this might have on hotspot >> as it will eventually get delivered into a jdk6 release (I assume). >> And jdk6 does builds on really old Linux systems, e.g. >> "Red Hat Enterprise Advanced Server 2.1 update 2". >> Can you think of anything that might be a problem with that? >> Either at compile time or runtime? >> > > aph will be able to respond to this in more detail, but my > understanding of the patch is that it only tries separate debug files > if it doesn't find debuginfo in the binary itself. If the builds om > RHEL AS 2.1 use non-stripped binaries, it won't even get that far > AFAICS. And if they don't and /usr/lib/debug also doesn't exist, then > it will just fail as it always did. > > So the only issue would be that the code relies on building against > something newer than it did previously. > >> I still am a bit uncomfortable with that 1K block of bytes we are adding, >> but I'll resign from that debate, if this is the official way to do it. >> How many of these 1K blocks are floating around the system? :^( >> >> The change probably needs to go through one of the hotspot forests, maybe >> hotspot-rt? >> > > I would have assumed hotspot-svc as it's serviceability-related. The hotspot-svc forest has been abandoned in favor of hotspot-rt, or hotspot-rt has consumed it, depends on your point of view. Strange, I remember an email on this back in Nov 2008, but it appears to never have been sent out to the serviceability-dev at openjdk.java.net alias. The primary issue was resources in doing testing and integration of a 4th developer forest, the 3 (gc, comp, rt) seemed to be consuming all our testing resources. > >> In the meantime, I will take this patch and apply it, and make sure >> hotspot still builds with the jdk6 and jdk7 Linux systems we have. >> > > Thanks. HotSpot patches go through JPRT so that should also give it > some build testing. I fired off two JPRT jobs, one for jdk6 and one for jdk7, with this patch applied. Builds and testing. I'll let you know what I find out. Testing this particular functionality is another story of course, never easy to test features that require something to go wrong... ;^) -kto > > >> -kto >> >>> Thanks. >>> Andrew. > > > From gnu_andrew at member.fsf.org Fri Jan 8 12:03:35 2010 From: gnu_andrew at member.fsf.org (Andrew John Hughes) Date: Fri, 8 Jan 2010 20:03:35 +0000 Subject: Request for approval: Allow Java's ELF symtab reader to use separate debuginfo files In-Reply-To: <4B478B8F.7050702@sun.com> References: <4B1FC407.6010405@redhat.com> <4B477EED.2080806@redhat.com> <4B4785A1.8030604@sun.com> <17c6771e1001081127r11984f04n28848a4bdee644f6@mail.gmail.com> <4B478B8F.7050702@sun.com> Message-ID: <17c6771e1001081203t3bef9e8j36f0d8ef886775e8@mail.gmail.com> 2010/1/8 Kelly O'Hair : > > > Andrew John Hughes wrote: >> >> 2010/1/8 Kelly O'Hair : >>> >>> Andrew Haley wrote: >>>> >>>> On 12/09/2009 03:36 PM, Andrew Haley wrote: >>>>> >>>>> This is https://bugzilla.redhat.com/show_bug.cgi?id=541548 >>>>> The symptom is that jmap doesn't work because target libraries are >>>>> stripped. >>>>> The fix is to allow the symtab reader to use the separate debuginfo >>>>> files >>>>> that are available for all (AFAIK) GNU/Linux distributions. >>>> >>>> This is now also https://bugs.openjdk.java.net/show_bug.cgi?id=100126 >>>> >>>> Webrev at http://cr.openjdk.java.net/~aph/100126-hotspot-webrev/ >>>> >>>> I have now checked several Linux distros, old and new, and although >>>> they keep their debuginfo files in different places, this patch works >>>> on all of them. >>>> >>>> Is this OK? ?And, if so, which repos should I push the patch to? >>>> >>> I'm a little concerned about the impact this might have on hotspot >>> as it will eventually get delivered into a jdk6 release (I assume). >>> And jdk6 does builds on really old Linux systems, e.g. >>> "Red Hat Enterprise Advanced Server 2.1 update 2". >>> Can you think of anything that might be a problem with that? >>> Either at compile time or runtime? >>> >> >> aph will be able to respond to this in more detail, but my >> understanding of the patch is that it only tries separate debug files >> if it doesn't find debuginfo in the binary itself. ?If the builds om >> RHEL AS 2.1 use non-stripped binaries, it won't even get that far >> AFAICS. ?And if they don't and /usr/lib/debug also doesn't exist, then >> it will just fail as it always did. >> >> So the only issue would be that the code relies on building against >> something newer than it did previously. >> >>> I still am a bit uncomfortable with that 1K block of bytes we are adding, >>> but I'll resign from that debate, if this is the official way to do it. >>> How many of these 1K blocks are floating around the system? :^( >>> >>> The change probably needs to go through one of the hotspot forests, maybe >>> hotspot-rt? >>> >> >> I would have assumed hotspot-svc as it's serviceability-related. > > The hotspot-svc forest has been abandoned in favor of hotspot-rt, > or hotspot-rt has consumed it, depends on your point of view. > > Strange, I remember an email on this back in Nov 2008, but it appears > to never have been sent out to the serviceability-dev at openjdk.java.net > alias. The primary issue was resources in doing testing and integration > of a 4th developer forest, the 3 (gc, comp, rt) seemed to be consuming > all our testing resources. > Ah ok, that makes sense with the separate serviceability tree going too. I only checked hg.openjdk.java.net. Maybe it's time to nuke some of these dead trees? :) >> >>> In the meantime, I will take this patch and apply it, and make sure >>> hotspot still builds with the jdk6 and jdk7 Linux systems we have. >>> >> >> Thanks. ?HotSpot patches go through JPRT so that should also give it >> some build testing. > > I fired off two JPRT jobs, one for jdk6 and one for jdk7, with this patch > applied. Builds and testing. I'll let you know what I find out. > > Testing this particular functionality is another story of course, never > easy to test features that require something to go wrong... ;^) > > -kto > >> >> >>> -kto >>> >>>> Thanks. >>>> Andrew. >> >> >> > -- Andrew :-) Free Java Software Engineer Red Hat, Inc. (http://www.redhat.com) Support Free Java! Contribute to GNU Classpath and the OpenJDK http://www.gnu.org/software/classpath http://openjdk.java.net PGP Key: 94EFD9D8 (http://subkeys.pgp.net) Fingerprint: F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8 From tom.deneau at amd.com Fri Jan 8 12:36:34 2010 From: tom.deneau at amd.com (Deneau, Tom) Date: Fri, 8 Jan 2010 12:36:34 -0800 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty In-Reply-To: <4B467677.3070006@sun.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> <4B467677.3070006@sun.com> Message-ID: <510934C4EB2082479E7D4AA4D06A8882ABF8CC67@SAUSEXMBP01.amd.com> Cross posting to hotspot-compiler-dev at openjdk.java.net and serviceability-dev at openjdk.java.net since this review request touches both compiler/runtime code and JVMTI code... New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 This webrev addresses the comments made by Dan Daugherty in http://mail.openjdk.java.net/pipermail/hotspot-compiler-dev/2010-January/002450.html This webrev includes the name change from jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() New files that were not in previous webrevs: * jvmtiThreadState.hpp, JvmtiEventControllerPrivate::recompute_thread_enabled() now calls a routine in here rather than in JavaThread directly * All other new files are due to the name change from jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() -- Tom Deneau From jonathan.gibbons at sun.com Fri Jan 8 13:36:33 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Fri, 08 Jan 2010 21:36:33 +0000 Subject: hg: jdk7/tl/langtools: 6915152: langtools build failures with import.jdk on Windows Message-ID: <20100108213636.E3650428B7@hg.openjdk.java.net> Changeset: 96c56220dcc2 Author: jjg Date: 2010-01-08 13:14 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/96c56220dcc2 6915152: langtools build failures with import.jdk on Windows Reviewed-by: ohair ! make/build.xml From Kelly.Ohair at Sun.COM Fri Jan 8 15:10:50 2010 From: Kelly.Ohair at Sun.COM (Kelly O'Hair) Date: Fri, 08 Jan 2010 15:10:50 -0800 Subject: Request for approval: Allow Java's ELF symtab reader to use separate debuginfo files In-Reply-To: <17c6771e1001081203t3bef9e8j36f0d8ef886775e8@mail.gmail.com> References: <4B1FC407.6010405@redhat.com> <4B477EED.2080806@redhat.com> <4B4785A1.8030604@sun.com> <17c6771e1001081127r11984f04n28848a4bdee644f6@mail.gmail.com> <4B478B8F.7050702@sun.com> <17c6771e1001081203t3bef9e8j36f0d8ef886775e8@mail.gmail.com> Message-ID: <4B47BB7A.3000509@sun.com> Andrew John Hughes wrote: > 2010/1/8 Kelly O'Hair : >> >> Andrew John Hughes wrote: >>> 2010/1/8 Kelly O'Hair : >>>> Andrew Haley wrote: >>>>> On 12/09/2009 03:36 PM, Andrew Haley wrote: >>>>>> This is https://bugzilla.redhat.com/show_bug.cgi?id=541548 >>>>>> The symptom is that jmap doesn't work because target libraries are >>>>>> stripped. >>>>>> The fix is to allow the symtab reader to use the separate debuginfo >>>>>> files >>>>>> that are available for all (AFAIK) GNU/Linux distributions. >>>>> This is now also https://bugs.openjdk.java.net/show_bug.cgi?id=100126 >>>>> >>>>> Webrev at http://cr.openjdk.java.net/~aph/100126-hotspot-webrev/ >>>>> >>>>> I have now checked several Linux distros, old and new, and although >>>>> they keep their debuginfo files in different places, this patch works >>>>> on all of them. >>>>> >>>>> Is this OK? And, if so, which repos should I push the patch to? >>>>> >>>> I'm a little concerned about the impact this might have on hotspot >>>> as it will eventually get delivered into a jdk6 release (I assume). >>>> And jdk6 does builds on really old Linux systems, e.g. >>>> "Red Hat Enterprise Advanced Server 2.1 update 2". >>>> Can you think of anything that might be a problem with that? >>>> Either at compile time or runtime? >>>> >>> aph will be able to respond to this in more detail, but my >>> understanding of the patch is that it only tries separate debug files >>> if it doesn't find debuginfo in the binary itself. If the builds om >>> RHEL AS 2.1 use non-stripped binaries, it won't even get that far >>> AFAICS. And if they don't and /usr/lib/debug also doesn't exist, then >>> it will just fail as it always did. >>> >>> So the only issue would be that the code relies on building against >>> something newer than it did previously. >>> >>>> I still am a bit uncomfortable with that 1K block of bytes we are adding, >>>> but I'll resign from that debate, if this is the official way to do it. >>>> How many of these 1K blocks are floating around the system? :^( >>>> >>>> The change probably needs to go through one of the hotspot forests, maybe >>>> hotspot-rt? >>>> >>> I would have assumed hotspot-svc as it's serviceability-related. >> The hotspot-svc forest has been abandoned in favor of hotspot-rt, >> or hotspot-rt has consumed it, depends on your point of view. >> >> Strange, I remember an email on this back in Nov 2008, but it appears >> to never have been sent out to the serviceability-dev at openjdk.java.net >> alias. The primary issue was resources in doing testing and integration >> of a 4th developer forest, the 3 (gc, comp, rt) seemed to be consuming >> all our testing resources. >> > > Ah ok, that makes sense with the separate serviceability tree going too. > I only checked hg.openjdk.java.net. Maybe it's time to nuke some of > these dead trees? :) I've pinged Dan on this. We will ask MarkR to purge these hotspot-svc repositories. > >>>> In the meantime, I will take this patch and apply it, and make sure >>>> hotspot still builds with the jdk6 and jdk7 Linux systems we have. >>>> >>> Thanks. HotSpot patches go through JPRT so that should also give it >>> some build testing. >> I fired off two JPRT jobs, one for jdk6 and one for jdk7, with this patch >> applied. Builds and testing. I'll let you know what I find out. >> Both JPRT jobs came back fine. -kto >> Testing this particular functionality is another story of course, never >> easy to test features that require something to go wrong... ;^) >> >> -kto >> >>> >>>> -kto >>>> >>>>> Thanks. >>>>> Andrew. >>> >>> > > > From Kelly.Ohair at Sun.COM Fri Jan 8 15:14:54 2010 From: Kelly.Ohair at Sun.COM (Kelly O'Hair) Date: Fri, 08 Jan 2010 15:14:54 -0800 Subject: Request for approval: Allow Java's ELF symtab reader to use separate debuginfo files In-Reply-To: <4B477EED.2080806@redhat.com> References: <4B1FC407.6010405@redhat.com> <4B477EED.2080806@redhat.com> Message-ID: <4B47BC6E.8040901@sun.com> Andrew Haley wrote: > On 12/09/2009 03:36 PM, Andrew Haley wrote: >> This is https://bugzilla.redhat.com/show_bug.cgi?id=541548 >> The symptom is that jmap doesn't work because target libraries are stripped. >> The fix is to allow the symtab reader to use the separate debuginfo files >> that are available for all (AFAIK) GNU/Linux distributions. > > This is now also https://bugs.openjdk.java.net/show_bug.cgi?id=100126 > > Webrev at http://cr.openjdk.java.net/~aph/100126-hotspot-webrev/ > > I have now checked several Linux distros, old and new, and although > they keep their debuginfo files in different places, this patch works > on all of them. > > Is this OK? And, if so, which repos should I push the patch to? I think you should send email to hotspot-runtime-dev at openjdk.java.net and serviceability-dev at openjdk.java.net, asking how to integrate this change. You can consider me a reviewer, and I'll attest that the changes make it through JPRT. Not exactly sure how they want to handle this. -kto > > Thanks. > Andrew. From coleen.phillimore at sun.com Fri Jan 8 16:16:33 2010 From: coleen.phillimore at sun.com (coleen.phillimore at sun.com) Date: Sat, 09 Jan 2010 00:16:33 +0000 Subject: hg: jdk7/hotspot-rt/hotspot: 14 new changesets Message-ID: <20100109001706.4AB38428E8@hg.openjdk.java.net> Changeset: 40e7c1d24e4a Author: twisti Date: 2010-01-04 00:22 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/40e7c1d24e4a 6909153: Fix broken options on Zero Summary: Smaller fixes to ensure that Zero still works with non-standard options. Reviewed-by: twisti Contributed-by: Gary Benson ! src/share/vm/compiler/compileBroker.cpp ! src/share/vm/runtime/arguments.cpp Changeset: 896da934748c Author: twisti Date: 2010-01-04 03:34 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/896da934748c 6913869: Zero assert fix Summary: Zero currently won't build on zSeries or PowerPC machines with assertions turned on. Reviewed-by: twisti Contributed-by: Gary Benson ! src/share/vm/prims/jni.cpp Changeset: aa62b9388fce Author: twisti Date: 2010-01-04 15:52 +0100 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/aa62b9388fce 6894206: JVM needs a way to traverse method handle structures Summary: We need a way to walk chained method handles in the JVM to call the right methods and to generate required bytecode adapters for the compilers. Reviewed-by: kvn ! src/cpu/x86/vm/methodHandles_x86.cpp ! src/share/vm/classfile/javaClasses.cpp ! src/share/vm/classfile/javaClasses.hpp ! src/share/vm/classfile/vmSymbols.cpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/includeDB_core + src/share/vm/prims/methodHandleWalk.cpp + src/share/vm/prims/methodHandleWalk.hpp Changeset: 0910903272e5 Author: twisti Date: 2010-01-04 07:04 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/0910903272e5 Merge Changeset: e66fd840cb6b Author: twisti Date: 2010-01-04 18:38 +0100 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164) Summary: During the work for 6829187 we have fixed a number of basic bugs which are logically grouped with 6815692 and 6858164 but which must be reviewed and pushed separately. Reviewed-by: kvn, never ! src/cpu/x86/vm/frame_x86.cpp ! src/cpu/x86/vm/methodHandles_x86.cpp ! src/cpu/x86/vm/runtime_x86_32.cpp ! src/cpu/x86/vm/sharedRuntime_x86_64.cpp ! src/cpu/x86/vm/templateInterpreter_x86_32.cpp ! src/cpu/x86/vm/templateInterpreter_x86_64.cpp ! src/share/vm/c1/c1_IR.hpp ! src/share/vm/ci/ciStreams.cpp ! src/share/vm/classfile/javaClasses.hpp ! src/share/vm/classfile/systemDictionary.cpp ! src/share/vm/classfile/systemDictionary.hpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/code/codeBlob.hpp ! src/share/vm/code/debugInfoRec.cpp ! src/share/vm/code/debugInfoRec.hpp ! src/share/vm/code/nmethod.cpp ! src/share/vm/code/nmethod.hpp ! src/share/vm/code/pcDesc.hpp ! src/share/vm/compiler/methodLiveness.cpp ! src/share/vm/interpreter/bytecode.cpp ! src/share/vm/interpreter/bytecode.hpp ! src/share/vm/interpreter/bytecodes.cpp ! src/share/vm/interpreter/interpreter.cpp ! src/share/vm/interpreter/linkResolver.cpp ! src/share/vm/interpreter/linkResolver.hpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/output.cpp ! src/share/vm/opto/runtime.cpp ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/sharedRuntime.cpp ! src/share/vm/runtime/thread.cpp ! src/share/vm/runtime/thread.hpp Changeset: 4b84186a8248 Author: kvn Date: 2010-01-04 15:21 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/4b84186a8248 6913075: EA identifies escape state incorrectly after 6895383 fix Summary: EA incorrectly identifies escape state of an allocation passed as call argument. Reviewed-by: never ! src/share/vm/opto/escape.cpp Changeset: 97125851f396 Author: twisti Date: 2010-01-05 13:05 +0100 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/97125851f396 6829187: compiler optimizations required for JSR 292 Summary: C2 implementation for invokedynamic support. Reviewed-by: kvn, never ! src/cpu/sparc/vm/sparc.ad ! src/cpu/x86/vm/frame_x86.inline.hpp ! src/cpu/x86/vm/x86_32.ad ! src/cpu/x86/vm/x86_64.ad + src/share/vm/ci/ciCPCache.cpp + src/share/vm/ci/ciCPCache.hpp ! src/share/vm/ci/ciClassList.hpp ! src/share/vm/ci/ciEnv.cpp ! src/share/vm/ci/ciEnv.hpp ! src/share/vm/ci/ciMethod.cpp ! src/share/vm/ci/ciMethod.hpp ! src/share/vm/ci/ciObject.hpp ! src/share/vm/ci/ciObjectFactory.cpp ! src/share/vm/ci/ciStreams.cpp ! src/share/vm/ci/ciStreams.hpp ! src/share/vm/ci/ciTypeFlow.cpp ! src/share/vm/includeDB_compiler2 ! src/share/vm/includeDB_core ! src/share/vm/opto/bytecodeInfo.cpp ! src/share/vm/opto/callGenerator.cpp ! src/share/vm/opto/callGenerator.hpp ! src/share/vm/opto/callnode.hpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/graphKit.cpp ! src/share/vm/opto/lcm.cpp ! src/share/vm/opto/machnode.cpp ! src/share/vm/opto/machnode.hpp ! src/share/vm/opto/matcher.cpp ! src/share/vm/opto/matcher.hpp ! src/share/vm/opto/output.cpp ! src/share/vm/opto/type.cpp Changeset: dd57230ba8fe Author: twisti Date: 2010-01-05 15:21 +0100 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/dd57230ba8fe 6893268: additional dynamic language related optimizations in C2 Summary: C2 needs some additional optimizations to be able to handle MethodHandle invokes and invokedynamic instructions at the best performance. Reviewed-by: kvn, never ! src/share/vm/ci/ciCPCache.cpp + src/share/vm/ci/ciCallSite.cpp + src/share/vm/ci/ciCallSite.hpp ! src/share/vm/ci/ciClassList.hpp ! src/share/vm/ci/ciEnv.cpp ! src/share/vm/ci/ciEnv.hpp ! src/share/vm/ci/ciExceptionHandler.cpp ! src/share/vm/ci/ciField.cpp ! src/share/vm/ci/ciField.hpp ! src/share/vm/ci/ciInstanceKlass.cpp ! src/share/vm/ci/ciInstanceKlass.hpp ! src/share/vm/ci/ciKlass.cpp ! src/share/vm/ci/ciKlass.hpp ! src/share/vm/ci/ciMethod.hpp + src/share/vm/ci/ciMethodHandle.cpp + src/share/vm/ci/ciMethodHandle.hpp ! src/share/vm/ci/ciObject.hpp ! src/share/vm/ci/ciObjectFactory.cpp ! src/share/vm/ci/ciStreams.cpp ! src/share/vm/ci/ciStreams.hpp ! src/share/vm/ci/ciSymbol.cpp ! src/share/vm/ci/ciSymbol.hpp ! src/share/vm/classfile/classFileParser.cpp ! src/share/vm/classfile/vmSymbols.cpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/code/nmethod.cpp ! src/share/vm/includeDB_compiler2 ! src/share/vm/includeDB_core ! src/share/vm/interpreter/bytecode.hpp ! src/share/vm/interpreter/bytecodeTracer.cpp ! src/share/vm/interpreter/interpreterRuntime.cpp ! src/share/vm/interpreter/rewriter.cpp ! src/share/vm/interpreter/rewriter.hpp ! src/share/vm/oops/constMethodOop.hpp ! src/share/vm/oops/constantPoolOop.hpp ! src/share/vm/oops/generateOopMap.cpp ! src/share/vm/oops/methodOop.hpp ! src/share/vm/oops/symbolOop.cpp ! src/share/vm/oops/symbolOop.hpp ! src/share/vm/opto/bytecodeInfo.cpp ! src/share/vm/opto/callGenerator.cpp ! src/share/vm/opto/callGenerator.hpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/parse3.cpp ! src/share/vm/prims/methodHandleWalk.cpp ! src/share/vm/prims/methodHandleWalk.hpp ! src/share/vm/prims/methodHandles.cpp ! src/share/vm/runtime/frame.cpp ! src/share/vm/runtime/frame.hpp ! src/share/vm/runtime/sharedRuntime.cpp ! src/share/vm/runtime/sharedRuntime.hpp ! src/share/vm/utilities/constantTag.hpp Changeset: b6f06e395428 Author: never Date: 2010-01-05 11:14 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/b6f06e395428 6908267: Zero fails to unlock synchronized native methods on exception Reviewed-by: never Contributed-by: Gary Benson ! src/cpu/zero/vm/cppInterpreter_zero.cpp Changeset: 1f6d42899c3a Author: never Date: 2010-01-05 11:16 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/1f6d42899c3a Merge Changeset: b1f619d38249 Author: never Date: 2010-01-05 16:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/b1f619d38249 6914002: unsigned compare problem after 5057818 Reviewed-by: kvn, twisti ! src/share/vm/code/nmethod.cpp ! src/share/vm/code/nmethod.hpp Changeset: 4ce7240d622c Author: never Date: 2010-01-06 14:22 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/4ce7240d622c 6914300: ciEnv should export all well known classes Reviewed-by: kvn, twisti ! agent/src/share/classes/sun/jvm/hotspot/memory/SystemDictionary.java ! src/share/vm/c1/c1_Runtime1.cpp ! src/share/vm/ci/ciEnv.cpp ! src/share/vm/ci/ciEnv.hpp ! src/share/vm/ci/ciField.cpp ! src/share/vm/ci/ciInstance.cpp ! src/share/vm/ci/ciInstanceKlass.cpp ! src/share/vm/ci/ciObjectFactory.cpp ! src/share/vm/ci/ciType.cpp ! src/share/vm/ci/ciUtilities.hpp ! src/share/vm/classfile/classFileParser.cpp ! src/share/vm/classfile/classLoader.cpp ! src/share/vm/classfile/javaAssertions.cpp ! src/share/vm/classfile/javaClasses.cpp ! src/share/vm/classfile/javaClasses.hpp ! src/share/vm/classfile/systemDictionary.cpp ! src/share/vm/classfile/systemDictionary.hpp ! src/share/vm/classfile/verifier.cpp ! src/share/vm/gc_interface/collectedHeap.cpp ! src/share/vm/interpreter/interpreterRuntime.cpp ! src/share/vm/interpreter/linkResolver.cpp ! src/share/vm/memory/classify.cpp ! src/share/vm/memory/dump.cpp ! src/share/vm/memory/referenceProcessor.cpp ! src/share/vm/memory/space.cpp ! src/share/vm/memory/universe.cpp ! src/share/vm/oops/arrayKlass.cpp ! src/share/vm/oops/arrayKlass.hpp ! src/share/vm/oops/constantPoolOop.cpp ! src/share/vm/oops/instanceKlass.cpp ! src/share/vm/oops/instanceRefKlass.cpp ! src/share/vm/oops/klass.cpp ! src/share/vm/oops/methodOop.cpp ! src/share/vm/oops/objArrayKlass.cpp ! src/share/vm/oops/objArrayKlassKlass.cpp ! src/share/vm/opto/runtime.cpp ! src/share/vm/prims/jni.cpp ! src/share/vm/prims/jniCheck.cpp ! src/share/vm/prims/jvm.cpp ! src/share/vm/prims/jvmtiEnter.xsl ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/prims/jvmtiEnvBase.cpp ! src/share/vm/prims/jvmtiExport.cpp ! src/share/vm/prims/jvmtiRedefineClasses.cpp ! src/share/vm/prims/jvmtiTagMap.cpp ! src/share/vm/prims/methodHandleWalk.cpp ! src/share/vm/prims/methodHandles.cpp ! src/share/vm/prims/nativeLookup.cpp ! src/share/vm/runtime/jniHandles.cpp ! src/share/vm/runtime/os.cpp ! src/share/vm/runtime/reflection.cpp ! src/share/vm/runtime/reflectionUtils.cpp ! src/share/vm/runtime/sharedRuntime.cpp ! src/share/vm/runtime/statSampler.cpp ! src/share/vm/runtime/thread.cpp ! src/share/vm/runtime/vframe.cpp ! src/share/vm/runtime/vmStructs.cpp ! src/share/vm/services/attachListener.cpp ! src/share/vm/services/heapDumper.cpp ! src/share/vm/services/lowMemoryDetector.cpp ! src/share/vm/services/management.cpp ! src/share/vm/services/serviceUtil.hpp ! src/share/vm/services/threadService.cpp ! src/share/vm/utilities/exceptions.cpp Changeset: aad340e07bc4 Author: never Date: 2010-01-06 14:25 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/aad340e07bc4 Merge Changeset: 9b9c1ee9b3f6 Author: iveresov Date: 2010-01-06 22:21 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/9b9c1ee9b3f6 Merge ! src/share/vm/classfile/classFileParser.cpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/memory/referenceProcessor.cpp ! src/share/vm/oops/instanceKlass.cpp ! src/share/vm/oops/instanceRefKlass.cpp ! src/share/vm/prims/jvm.cpp ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/prims/jvmtiEnvBase.cpp ! src/share/vm/prims/jvmtiExport.cpp ! src/share/vm/runtime/frame.cpp ! src/share/vm/runtime/thread.cpp ! src/share/vm/runtime/thread.hpp ! src/share/vm/runtime/vmStructs.cpp From Daniel.Daugherty at Sun.COM Fri Jan 8 17:22:52 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Fri, 08 Jan 2010 18:22:52 -0700 Subject: consolidating hotspot-svc into hotspot-rt Message-ID: <4B47DA6C.3060403@sun.com> Greetings, Back around Christmas of *2008*, the OpenJDK7 Serviceability HotSpot Repository was merged with the OpenJDK7 Runtime HotSpot Repository. However, it has been pointed out that while this was discussed for about two months internally to Sun, we didn't post an e-mail on the OpenJDK7 aliases letting folks know that this was happening. My apologies for the oversight. Specifically, the following forest: http://hg.openjdk.java.net/jdk7/hotspot-svc has been retired or mothballed. Any approved Serviceability related changes should be pushed to: http://hg.openjdk.java.net/jdk7/hotspot-rt Mark, can you make the hotspot-svc forest read-only and do whatever else is necessary for its retirement? Thanks! Dan From Kelly.Ohair at Sun.COM Fri Jan 8 17:27:26 2010 From: Kelly.Ohair at Sun.COM (Kelly O'Hair) Date: Fri, 08 Jan 2010 17:27:26 -0800 Subject: Request for approval: Allow Java's ELF symtab reader to use separate debuginfo files In-Reply-To: <4B47BC6E.8040901@sun.com> References: <4B1FC407.6010405@redhat.com> <4B477EED.2080806@redhat.com> <4B47BC6E.8040901@sun.com> Message-ID: <4B47DB7E.8050001@sun.com> I've been told That Tom had suggested an alternative fix, I had not seen this email. But if adding symbols to the mapfiles fixes it, then than seems easier. Does adding in the ability to read alternative debuginfo files provide some additional functionality? -kto ------------------------------- Subject: Re: Request for approval: Allow Java's ELF symtab reader to use separate debuginfo files From: Tom Rodriguez Date: Fri, 08 Jan 2010 11:54:46 -0800 To: Andrew Haley CC: hotspot-dev Source Developers , tl at openjdk.java.net I think a better fix is to add the required gHotSpot* symbols to the mapfile so that they are always exported. This way jmap would work even if the debug symbols for libjvm.so weren't installed on the machine. I actually thought we already did this because we explicitly export a few vtbls for use by the SA but apparently we don't. I must have been thinking of windows where you have to explicitly export them or they won't show up at all. Anyway, adding this to the mapfiles will allow it work as is: # SA symbols gHotSpotVMIntConstantEntryArrayStride; gHotSpotVMIntConstantEntryNameOffset; gHotSpotVMIntConstantEntryValueOffset; gHotSpotVMIntConstants; gHotSpotVMLongConstantEntryArrayStride; gHotSpotVMLongConstantEntryNameOffset; gHotSpotVMLongConstantEntryValueOffset; gHotSpotVMLongConstants; gHotSpotVMStructEntryAddressOffset; gHotSpotVMStructEntryArrayStride; gHotSpotVMStructEntryFieldNameOffset; gHotSpotVMStructEntryIsStaticOffset; gHotSpotVMStructEntryOffsetOffset; gHotSpotVMStructEntryTypeNameOffset; gHotSpotVMStructEntryTypeStringOffset; gHotSpotVMStructs; gHotSpotVMTypeEntryArrayStride; gHotSpotVMTypeEntryIsIntegerTypeOffset; gHotSpotVMTypeEntryIsOopTypeOffset; gHotSpotVMTypeEntryIsUnsignedOffset; gHotSpotVMTypeEntrySizeOffset; gHotSpotVMTypeEntrySuperclassNameOffset; gHotSpotVMTypeEntryTypeNameOffset; gHotSpotVMTypes; Would this be acceptable? tom On Jan 8, 2010, at 10:48 AM, Andrew Haley wrote: > > On 12/09/2009 03:36 PM, Andrew Haley wrote: >> >> This is https://bugzilla.redhat.com/show_bug.cgi?id=541548 >> >> The symptom is that jmap doesn't work because target libraries are stripped. >> >> The fix is to allow the symtab reader to use the separate debuginfo files >> >> that are available for all (AFAIK) GNU/Linux distributions. > > > > This is now also https://bugs.openjdk.java.net/show_bug.cgi?id=100126 > > > > Webrev at http://cr.openjdk.java.net/~aph/100126-hotspot-webrev/ > > > > I have now checked several Linux distros, old and new, and although > > they keep their debuginfo files in different places, this patch works > > on all of them. > > > > Is this OK? And, if so, which repos should I push the patch to? > > > > Thanks. > > Andrew. From Daniel.Daugherty at Sun.COM Fri Jan 8 17:36:48 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Fri, 08 Jan 2010 18:36:48 -0700 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty In-Reply-To: <510934C4EB2082479E7D4AA4D06A8882ABF8CC67@SAUSEXMBP01.amd.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> <4B467677.3070006@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8CC67@SAUSEXMBP01.amd.com> Message-ID: <4B47DDB0.80305@sun.com> Thumbs up from me! Dan Deneau, Tom wrote: > Cross posting to hotspot-compiler-dev at openjdk.java.net and > serviceability-dev at openjdk.java.net since this review request touches > both compiler/runtime code and JVMTI code... > > New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 > > This webrev addresses the comments made by Dan Daugherty in > http://mail.openjdk.java.net/pipermail/hotspot-compiler-dev/2010-January/002450.html > > This webrev includes the name change from > jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() > > New files that were not in previous webrevs: > * jvmtiThreadState.hpp, > JvmtiEventControllerPrivate::recompute_thread_enabled() now calls a routine > in here rather than in JavaThread directly > > * All other new files are due to the name change from > jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() > > -- Tom Deneau > > > From aph at redhat.com Sat Jan 9 02:57:21 2010 From: aph at redhat.com (Andrew Haley) Date: Sat, 09 Jan 2010 10:57:21 +0000 Subject: Request for approval: Allow Java's ELF symtab reader to use separate debuginfo files In-Reply-To: <4B478B8F.7050702@sun.com> References: <4B1FC407.6010405@redhat.com> <4B477EED.2080806@redhat.com> <4B4785A1.8030604@sun.com> <17c6771e1001081127r11984f04n28848a4bdee644f6@mail.gmail.com> <4B478B8F.7050702@sun.com> Message-ID: <4B486111.50206@redhat.com> On 01/08/2010 07:46 PM, Kelly O'Hair wrote: > > > Andrew John Hughes wrote: >> 2010/1/8 Kelly O'Hair : >>> >>> Andrew Haley wrote: >>>> On 12/09/2009 03:36 PM, Andrew Haley wrote: >>>>> This is https://bugzilla.redhat.com/show_bug.cgi?id=541548 >>>>> The symptom is that jmap doesn't work because target libraries are >>>>> stripped. >>>>> The fix is to allow the symtab reader to use the separate debuginfo files >>>>> that are available for all (AFAIK) GNU/Linux distributions. >>>> This is now also https://bugs.openjdk.java.net/show_bug.cgi?id=100126 >>>> >>>> Webrev at http://cr.openjdk.java.net/~aph/100126-hotspot-webrev/ >>>> >>>> I have now checked several Linux distros, old and new, and although >>>> they keep their debuginfo files in different places, this patch works >>>> on all of them. >>>> >>>> Is this OK? And, if so, which repos should I push the patch to? >>>> >>> I'm a little concerned about the impact this might have on hotspot >>> as it will eventually get delivered into a jdk6 release (I assume). >>> And jdk6 does builds on really old Linux systems, e.g. >>> "Red Hat Enterprise Advanced Server 2.1 update 2". >>> Can you think of anything that might be a problem with that? >>> Either at compile time or runtime? >>> >> >> aph will be able to respond to this in more detail, but my >> understanding of the patch is that it only tries separate debug files >> if it doesn't find debuginfo in the binary itself. If the builds om >> RHEL AS 2.1 use non-stripped binaries, it won't even get that far >> AFAICS. And if they don't and /usr/lib/debug also doesn't exist, then >> it will just fail as it always did. >> >> So the only issue would be that the code relies on building against >> something newer than it did previously. >> >>> I still am a bit uncomfortable with that 1K block of bytes we are adding, >>> but I'll resign from that debate, if this is the official way to do it. >>> How many of these 1K blocks are floating around the system? :^( >>> >>> The change probably needs to go through one of the hotspot forests, maybe >>> hotspot-rt? >>> >> >> I would have assumed hotspot-svc as it's serviceability-related. > > The hotspot-svc forest has been abandoned in favor of hotspot-rt, > or hotspot-rt has consumed it, depends on your point of view. > > Strange, I remember an email on this back in Nov 2008, but it appears > to never have been sent out to the serviceability-dev at openjdk.java.net > alias. The primary issue was resources in doing testing and integration > of a 4th developer forest, the 3 (gc, comp, rt) seemed to be consuming > all our testing resources. > >> >>> In the meantime, I will take this patch and apply it, and make sure >>> hotspot still builds with the jdk6 and jdk7 Linux systems we have. >>> >> >> Thanks. HotSpot patches go through JPRT so that should also give it >> some build testing. > > I fired off two JPRT jobs, one for jdk6 and one for jdk7, with this patch > applied. Builds and testing. I'll let you know what I find out. > > Testing this particular functionality is another story of course, never > easy to test features that require something to go wrong... ;^) I have a nice test for this, of course! for foo in do eu-strip $foo -f $foo.dbg done Then see if jprt and its friends still work. Andrew. From alan.bateman at sun.com Sun Jan 10 04:45:24 2010 From: alan.bateman at sun.com (alan.bateman at sun.com) Date: Sun, 10 Jan 2010 12:45:24 +0000 Subject: hg: jdk7/tl/jdk: 2 new changesets Message-ID: <20100110124632.EA1E842B34@hg.openjdk.java.net> Changeset: 755dd6bdccca Author: alanb Date: 2010-01-09 19:32 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/755dd6bdccca 6907760: (file) OVERFLOW event should cause pending events to be purged Reviewed-by: chegar ! src/share/classes/sun/nio/fs/AbstractWatchKey.java + test/java/nio/file/WatchService/OverflowEventIsLoner.java Changeset: 0f0aee89e282 Author: alanb Date: 2010-01-10 12:29 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/0f0aee89e282 6913877: (fs) AsynchronousFileChannel.write can return wrong result under load [win] Reviewed-by: chegar ! src/windows/classes/sun/nio/ch/WindowsAsynchronousFileChannelImpl.java ! src/windows/native/sun/nio/ch/WindowsAsynchronousFileChannelImpl.c + test/java/nio/channels/AsynchronousFileChannel/LotsOfWrites.java From Daniel.Daugherty at Sun.COM Mon Jan 11 11:28:03 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Mon, 11 Jan 2010 12:28:03 -0700 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) In-Reply-To: <4B466100.6080402@sun.com> References: <4B466100.6080402@sun.com> Message-ID: <4B4B7BC3.2080205@sun.com> Second call for this code review request. Dan Daniel D. Daugherty wrote: > Greetings, > > The folks at AMD Labs have been kind enough to provide an > extension to the JVM/TI CompileMethodLoad event in order > to provide additional information about in-lining. This > extension uses the existing (but previously unused) > compile_info paramter: > > http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#CompiledMethodLoad > > > Vasanth and company provided the HotSpot code changes and > the original demo program. I just did the Makefile changes > to export the new jvmticmlr.h file in the HotSpot repo and > the integration of the demo program into JAVA_HOME/demo/jvmti > in the JDK repo. > > Here is the webrev for the OpenJDK6 version of the changes: > > http://cr.openjdk.java.net/~dcubed/6580131-webrev/0/ > > The OpenJDK7 version of these changes are not expected to be > very different from this version. > > For the Sun folks, the CCC request for adding the jvmticmlr.h > is almost final. I'm waiting for the VM-SQE team to agree that > the latest version addresses their review concerns, but I > think the St Petersburg team is on holiday at the moment. > > Any reviews are appreciated. > > Dan > From Thomas.Rodriguez at Sun.COM Mon Jan 11 12:56:03 2010 From: Thomas.Rodriguez at Sun.COM (Tom Rodriguez) Date: Mon, 11 Jan 2010 12:56:03 -0800 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) In-Reply-To: <4B4B7BC3.2080205@sun.com> References: <4B466100.6080402@sun.com> <4B4B7BC3.2080205@sun.com> Message-ID: <59A89157-0579-4355-8248-19E77BC96BEA@Sun.COM> This looks good to me. Thanks for your thorough work on this. tom On Jan 11, 2010, at 11:28 AM, Daniel D. Daugherty wrote: > Second call for this code review request. > > Dan > > > Daniel D. Daugherty wrote: >> Greetings, >> >> The folks at AMD Labs have been kind enough to provide an >> extension to the JVM/TI CompileMethodLoad event in order >> to provide additional information about in-lining. This >> extension uses the existing (but previously unused) >> compile_info paramter: >> >> http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#CompiledMethodLoad >> >> Vasanth and company provided the HotSpot code changes and >> the original demo program. I just did the Makefile changes >> to export the new jvmticmlr.h file in the HotSpot repo and >> the integration of the demo program into JAVA_HOME/demo/jvmti >> in the JDK repo. >> >> Here is the webrev for the OpenJDK6 version of the changes: >> >> http://cr.openjdk.java.net/~dcubed/6580131-webrev/0/ >> >> The OpenJDK7 version of these changes are not expected to be >> very different from this version. >> >> For the Sun folks, the CCC request for adding the jvmticmlr.h >> is almost final. I'm waiting for the VM-SQE team to agree that >> the latest version addresses their review concerns, but I >> think the St Petersburg team is on holiday at the moment. >> >> Any reviews are appreciated. >> >> Dan >> From Daniel.Daugherty at Sun.COM Mon Jan 11 13:02:22 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Mon, 11 Jan 2010 14:02:22 -0700 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) In-Reply-To: <59A89157-0579-4355-8248-19E77BC96BEA@Sun.COM> References: <4B466100.6080402@sun.com> <4B4B7BC3.2080205@sun.com> <59A89157-0579-4355-8248-19E77BC96BEA@Sun.COM> Message-ID: <4B4B91DE.2090207@sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20100111/e20b4430/attachment.html From Kelly.Ohair at Sun.COM Mon Jan 11 13:12:06 2010 From: Kelly.Ohair at Sun.COM (Kelly O'Hair) Date: Mon, 11 Jan 2010 13:12:06 -0800 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) In-Reply-To: <4B4B91DE.2090207@sun.com> References: <4B466100.6080402@sun.com> <4B4B7BC3.2080205@sun.com> <59A89157-0579-4355-8248-19E77BC96BEA@Sun.COM> <4B4B91DE.2090207@sun.com> Message-ID: <4B4B9426.7030008@sun.com> The makefile changes look fine, and thanks for fixing my spelling errors in the tests. ;^) The new demo looks good too. -kto Daniel D. Daugherty wrote: > Thanks for the review! I did a merge with HSX-17 this AM and > that went very smoothly so I'm testing those bits right now. > > I'm hoping to hear from Vasanth today, but he doesn't appear > to have an OpenJDK id so I can't list him as a reviewer; I > have listed him as a contributor. > > I'm also hoping to hear from Kelly since my Makefile tweaks > were in stuff he knows... > > Dan > > > Tom Rodriguez wrote: >> This looks good to me. Thanks for your thorough work on this. >> >> tom >> >> On Jan 11, 2010, at 11:28 AM, Daniel D. Daugherty wrote: >> >> >>> Second call for this code review request. >>> >>> Dan >>> >>> >>> Daniel D. Daugherty wrote: >>> >>>> Greetings, >>>> >>>> The folks at AMD Labs have been kind enough to provide an >>>> extension to the JVM/TI CompileMethodLoad event in order >>>> to provide additional information about in-lining. This >>>> extension uses the existing (but previously unused) >>>> compile_info paramter: >>>> >>>> http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#CompiledMethodLoad >>>> >>>> Vasanth and company provided the HotSpot code changes and >>>> the original demo program. I just did the Makefile changes >>>> to export the new jvmticmlr.h file in the HotSpot repo and >>>> the integration of the demo program into JAVA_HOME/demo/jvmti >>>> in the JDK repo. >>>> >>>> Here is the webrev for the OpenJDK6 version of the changes: >>>> >>>> http://cr.openjdk.java.net/~dcubed/6580131-webrev/0/ >>>> >>>> The OpenJDK7 version of these changes are not expected to be >>>> very different from this version. >>>> >>>> For the Sun folks, the CCC request for adding the jvmticmlr.h >>>> is almost final. I'm waiting for the VM-SQE team to agree that >>>> the latest version addresses their review concerns, but I >>>> think the St Petersburg team is on holiday at the moment. >>>> >>>> Any reviews are appreciated. >>>> >>>> Dan >>>> >>>> >> >> From Daniel.Daugherty at Sun.COM Mon Jan 11 13:21:57 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Mon, 11 Jan 2010 14:21:57 -0700 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) In-Reply-To: <4B4B9426.7030008@sun.com> References: <4B466100.6080402@sun.com> <4B4B7BC3.2080205@sun.com> <59A89157-0579-4355-8248-19E77BC96BEA@Sun.COM> <4B4B91DE.2090207@sun.com> <4B4B9426.7030008@sun.com> Message-ID: <4B4B9675.8070102@sun.com> Thanks for the review, Kelly! Dan Kelly O'Hair wrote: > The makefile changes look fine, and thanks for fixing my > spelling errors in the tests. ;^) > > The new demo looks good too. > > -kto > > > Daniel D. Daugherty wrote: >> Thanks for the review! I did a merge with HSX-17 this AM and >> that went very smoothly so I'm testing those bits right now. >> >> I'm hoping to hear from Vasanth today, but he doesn't appear >> to have an OpenJDK id so I can't list him as a reviewer; I >> have listed him as a contributor. >> >> I'm also hoping to hear from Kelly since my Makefile tweaks >> were in stuff he knows... >> >> Dan >> >> >> Tom Rodriguez wrote: >>> This looks good to me. Thanks for your thorough work on this. >>> >>> tom >>> >>> On Jan 11, 2010, at 11:28 AM, Daniel D. Daugherty wrote: >>> >>> >>>> Second call for this code review request. >>>> >>>> Dan >>>> >>>> >>>> Daniel D. Daugherty wrote: >>>> >>>>> Greetings, >>>>> >>>>> The folks at AMD Labs have been kind enough to provide an >>>>> extension to the JVM/TI CompileMethodLoad event in order >>>>> to provide additional information about in-lining. This >>>>> extension uses the existing (but previously unused) >>>>> compile_info paramter: >>>>> >>>>> http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#CompiledMethodLoad >>>>> >>>>> Vasanth and company provided the HotSpot code changes and >>>>> the original demo program. I just did the Makefile changes >>>>> to export the new jvmticmlr.h file in the HotSpot repo and >>>>> the integration of the demo program into JAVA_HOME/demo/jvmti >>>>> in the JDK repo. >>>>> >>>>> Here is the webrev for the OpenJDK6 version of the changes: >>>>> >>>>> http://cr.openjdk.java.net/~dcubed/6580131-webrev/0/ >>>>> >>>>> The OpenJDK7 version of these changes are not expected to be >>>>> very different from this version. >>>>> >>>>> For the Sun folks, the CCC request for adding the jvmticmlr.h >>>>> is almost final. I'm waiting for the VM-SQE team to agree that >>>>> the latest version addresses their review concerns, but I >>>>> think the St Petersburg team is on holiday at the moment. >>>>> >>>>> Any reviews are appreciated. >>>>> >>>>> Dan >>>>> >>>>> >>> >>> From christopher.hegarty at sun.com Mon Jan 11 13:58:05 2010 From: christopher.hegarty at sun.com (christopher.hegarty at sun.com) Date: Mon, 11 Jan 2010 21:58:05 +0000 Subject: hg: jdk7/tl/jdk: 6915313: Reorganize implementation to make it more feasible to port to JDK6 Message-ID: <20100111215849.1D5CA42D47@hg.openjdk.java.net> Changeset: fc5578368a0c Author: chegar Date: 2010-01-11 16:04 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/fc5578368a0c 6915313: Reorganize implementation to make it more feasible to port to JDK6 Summary: This makes the SCTP implementation easier to run with Suns JDK6. Reviewed-by: alanb ! make/com/sun/nio/sctp/FILES_java.gmk ! make/com/sun/nio/sctp/mapfile-vers ! src/solaris/classes/sun/nio/ch/SctpChannelImpl.java ! src/solaris/classes/sun/nio/ch/SctpMultiChannelImpl.java ! src/solaris/classes/sun/nio/ch/SctpNet.java ! src/solaris/classes/sun/nio/ch/SctpServerChannelImpl.java - src/solaris/classes/sun/nio/ch/SctpSocketDispatcher.java ! src/solaris/native/sun/nio/ch/SctpNet.c From Vasanth.Venkatachalam at amd.com Mon Jan 11 13:40:44 2010 From: Vasanth.Venkatachalam at amd.com (Venkatachalam, Vasanth) Date: Mon, 11 Jan 2010 15:40:44 -0600 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) References: <4B466100.6080402@sun.com> <4B4B7BC3.2080205@sun.com> <59A89157-0579-4355-8248-19E77BC96BEA@Sun.COM> <4B4B91DE.2090207@sun.com> Message-ID: <1C8DE0332CB01445BF7ADEDE3DDD570727FE2CF4@sausexmbp02.amd.com> Sorry I just noticed that you have modified jvmtiExport.cpp. The changes look good to me. Vasanth From: Venkatachalam, Vasanth Sent: Monday, January 11, 2010 3:30 PM To: 'Daniel.Daugherty at Sun.COM'; Tom Rodriguez Cc: Deneau, Tom; serviceability-dev at openjdk.java.net Subject: RE: code review request for JVM/TI CompiledMethodLoad event extension (6580131) Hi Dan, Your changes look good. As you may know, the JVM code will need to be modified to reflect the new naming conventions used in jvmticmlr.h. I believe the changes will be limited to the prims/jvmtiExport.cpp file. I assume you'll be making these changes separately, since I didn't see a newer version of this file included in the webrev. Vasanth From: Daniel.Daugherty at Sun.COM [mailto:Daniel.Daugherty at Sun.COM] Sent: Monday, January 11, 2010 3:02 PM To: Tom Rodriguez Cc: Venkatachalam, Vasanth; Deneau, Tom; serviceability-dev at openjdk.java.net Subject: Re: code review request for JVM/TI CompiledMethodLoad event extension (6580131) Thanks for the review! I did a merge with HSX-17 this AM and that went very smoothly so I'm testing those bits right now. I'm hoping to hear from Vasanth today, but he doesn't appear to have an OpenJDK id so I can't list him as a reviewer; I have listed him as a contributor. I'm also hoping to hear from Kelly since my Makefile tweaks were in stuff he knows... Dan Tom Rodriguez wrote: This looks good to me. Thanks for your thorough work on this. tom On Jan 11, 2010, at 11:28 AM, Daniel D. Daugherty wrote: Second call for this code review request. Dan Daniel D. Daugherty wrote: Greetings, The folks at AMD Labs have been kind enough to provide an extension to the JVM/TI CompileMethodLoad event in order to provide additional information about in-lining. This extension uses the existing (but previously unused) compile_info paramter: http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#CompiledMethodLoad Vasanth and company provided the HotSpot code changes and the original demo program. I just did the Makefile changes to export the new jvmticmlr.h file in the HotSpot repo and the integration of the demo program into JAVA_HOME/demo/jvmti in the JDK repo. Here is the webrev for the OpenJDK6 version of the changes: http://cr.openjdk.java.net/~dcubed/6580131-webrev/0/ The OpenJDK7 version of these changes are not expected to be very different from this version. For the Sun folks, the CCC request for adding the jvmticmlr.h is almost final. I'm waiting for the VM-SQE team to agree that the latest version addresses their review concerns, but I think the St Petersburg team is on holiday at the moment. Any reviews are appreciated. Dan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20100111/5359ee9d/attachment-0001.html From jonathan.gibbons at sun.com Mon Jan 11 14:06:33 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Mon, 11 Jan 2010 22:06:33 +0000 Subject: hg: jdk7/tl/langtools: 6326754: Compiler will fail to handle -Xmaxerrs with -ve numbers Message-ID: <20100111220639.EFF4242D4A@hg.openjdk.java.net> Changeset: d02e99d31cc0 Author: jjg Date: 2010-01-11 14:05 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/d02e99d31cc0 6326754: Compiler will fail to handle -Xmaxerrs with -ve numbers Reviewed-by: ksrini ! src/share/classes/com/sun/tools/javac/util/Log.java + test/tools/javac/T6326754.java + test/tools/javac/T6326754.out From jonathan.gibbons at sun.com Mon Jan 11 14:10:03 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Mon, 11 Jan 2010 22:10:03 +0000 Subject: hg: jdk7/tl/langtools: 6764569: [PATCH] Fix unused imports in list resource bundles Message-ID: <20100111221005.0BD0242D4B@hg.openjdk.java.net> Changeset: f983c1dca202 Author: jjg Date: 2010-01-11 14:09 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/f983c1dca202 6764569: [PATCH] Fix unused imports in list resource bundles Reviewed-by: ksrini Contributed-by: jesse.glick at sun.com ! make/tools/CompileProperties/CompileProperties.java ! make/tools/CompileProperties/CompilePropertiesTask.java From Daniel.Daugherty at Sun.COM Mon Jan 11 14:11:44 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Mon, 11 Jan 2010 15:11:44 -0700 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) In-Reply-To: <1C8DE0332CB01445BF7ADEDE3DDD570727FE2CF4@sausexmbp02.amd.com> References: <4B466100.6080402@sun.com> <4B4B7BC3.2080205@sun.com> <59A89157-0579-4355-8248-19E77BC96BEA@Sun.COM> <4B4B91DE.2090207@sun.com> <1C8DE0332CB01445BF7ADEDE3DDD570727FE2CF4@sausexmbp02.amd.com> Message-ID: <4B4BA220.2030100@sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20100111/1eb83530/attachment.html From jonathan.gibbons at sun.com Mon Jan 11 14:13:01 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Mon, 11 Jan 2010 22:13:01 +0000 Subject: hg: jdk7/tl/langtools: 6915476: java.util.regex.PatternSyntaxException in com.sun.tools.javac.nio.PathFileObject Message-ID: <20100111221303.9844A42D4D@hg.openjdk.java.net> Changeset: ca6bc36b2305 Author: jjg Date: 2010-01-11 14:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/ca6bc36b2305 6915476: java.util.regex.PatternSyntaxException in com.sun.tools.javac.nio.PathFileObject Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/nio/PathFileObject.java ! test/tools/javac/nio/compileTest/CompileTest.java From Vasanth.Venkatachalam at amd.com Mon Jan 11 13:29:54 2010 From: Vasanth.Venkatachalam at amd.com (Venkatachalam, Vasanth) Date: Mon, 11 Jan 2010 15:29:54 -0600 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) In-Reply-To: <4B4B91DE.2090207@sun.com> References: <4B466100.6080402@sun.com> <4B4B7BC3.2080205@sun.com> <59A89157-0579-4355-8248-19E77BC96BEA@Sun.COM> <4B4B91DE.2090207@sun.com> Message-ID: <1C8DE0332CB01445BF7ADEDE3DDD570727FE2CCB@sausexmbp02.amd.com> Hi Dan, Your changes look good. As you may know, the JVM code will need to be modified to reflect the new naming conventions used in jvmticmlr.h. I believe the changes will be limited to the prims/jvmtiExport.cpp file. I assume you'll be making these changes separately, since I didn't see a newer version of this file included in the webrev. Vasanth From: Daniel.Daugherty at Sun.COM [mailto:Daniel.Daugherty at Sun.COM] Sent: Monday, January 11, 2010 3:02 PM To: Tom Rodriguez Cc: Venkatachalam, Vasanth; Deneau, Tom; serviceability-dev at openjdk.java.net Subject: Re: code review request for JVM/TI CompiledMethodLoad event extension (6580131) Thanks for the review! I did a merge with HSX-17 this AM and that went very smoothly so I'm testing those bits right now. I'm hoping to hear from Vasanth today, but he doesn't appear to have an OpenJDK id so I can't list him as a reviewer; I have listed him as a contributor. I'm also hoping to hear from Kelly since my Makefile tweaks were in stuff he knows... Dan Tom Rodriguez wrote: This looks good to me. Thanks for your thorough work on this. tom On Jan 11, 2010, at 11:28 AM, Daniel D. Daugherty wrote: Second call for this code review request. Dan Daniel D. Daugherty wrote: Greetings, The folks at AMD Labs have been kind enough to provide an extension to the JVM/TI CompileMethodLoad event in order to provide additional information about in-lining. This extension uses the existing (but previously unused) compile_info paramter: http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#CompiledMethodLoad Vasanth and company provided the HotSpot code changes and the original demo program. I just did the Makefile changes to export the new jvmticmlr.h file in the HotSpot repo and the integration of the demo program into JAVA_HOME/demo/jvmti in the JDK repo. Here is the webrev for the OpenJDK6 version of the changes: http://cr.openjdk.java.net/~dcubed/6580131-webrev/0/ The OpenJDK7 version of these changes are not expected to be very different from this version. For the Sun folks, the CCC request for adding the jvmticmlr.h is almost final. I'm waiting for the VM-SQE team to agree that the latest version addresses their review concerns, but I think the St Petersburg team is on holiday at the moment. Any reviews are appreciated. Dan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20100111/7dd3cdc7/attachment-0001.html From jonathan.gibbons at sun.com Mon Jan 11 14:17:48 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Mon, 11 Jan 2010 22:17:48 +0000 Subject: hg: jdk7/tl/langtools: 6915497: test test/tools/javac/nio/compileTest/CompileTest.java fails under Hudson Message-ID: <20100111221750.C51BC42D51@hg.openjdk.java.net> Changeset: 14a4c45ef734 Author: jjg Date: 2010-01-11 14:17 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/14a4c45ef734 6915497: test test/tools/javac/nio/compileTest/CompileTest.java fails under Hudson Reviewed-by: darcy ! test/tools/javac/nio/compileTest/CompileTest.java From joe.darcy at sun.com Mon Jan 11 15:35:39 2010 From: joe.darcy at sun.com (joe.darcy at sun.com) Date: Mon, 11 Jan 2010 23:35:39 +0000 Subject: hg: jdk7/tl/jdk: 6828204: NavigableSet.subSet() documentation refers to nonexistent parameters Message-ID: <20100111233552.6326F42D66@hg.openjdk.java.net> Changeset: 9d38ab65acff Author: darcy Date: 2010-01-11 15:35 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9d38ab65acff 6828204: NavigableSet.subSet() documentation refers to nonexistent parameters Reviewed-by: martin ! src/share/classes/java/util/NavigableMap.java ! src/share/classes/java/util/NavigableSet.java From jonathan.gibbons at sun.com Mon Jan 11 16:19:13 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Tue, 12 Jan 2010 00:19:13 +0000 Subject: hg: jdk7/tl/langtools: 6909470: langtools stub generator should prune unnecessary imports Message-ID: <20100112001918.DB02F42D73@hg.openjdk.java.net> Changeset: 51011e02c02f Author: jjg Date: 2010-01-11 16:18 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/51011e02c02f 6909470: langtools stub generator should prune unnecessary imports Reviewed-by: darcy ! make/tools/GenStubs/GenStubs.java From tom.deneau at amd.com Tue Jan 12 08:24:00 2010 From: tom.deneau at amd.com (Deneau, Tom) Date: Tue, 12 Jan 2010 10:24:00 -0600 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty In-Reply-To: <4B47DDB0.80305@sun.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> <4B467677.3070006@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8CC67@SAUSEXMBP01.amd.com> <4B47DDB0.80305@sun.com> Message-ID: <510934C4EB2082479E7D4AA4D06A8882AC0F8631@SAUSEXMBP01.amd.com> Dan has given his OK for the jvmti-related changes, could someone from the compiler side look over the final webrev as well? As mentioned previously, not much has really changed on the compiler side from the earlier webrev. http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 -- Tom -----Original Message----- From: Daniel.Daugherty at Sun.COM [mailto:Daniel.Daugherty at Sun.COM] Sent: Friday, January 08, 2010 7:37 PM To: Deneau, Tom Cc: serviceability-dev at openjdk.java.net; hotspot-compiler-dev at openjdk.java.net Subject: Re: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty Thumbs up from me! Dan Deneau, Tom wrote: > Cross posting to hotspot-compiler-dev at openjdk.java.net and > serviceability-dev at openjdk.java.net since this review request touches > both compiler/runtime code and JVMTI code... > > New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 > > This webrev addresses the comments made by Dan Daugherty in > http://mail.openjdk.java.net/pipermail/hotspot-compiler-dev/2010-January/002450.html > > This webrev includes the name change from > jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() > > New files that were not in previous webrevs: > * jvmtiThreadState.hpp, > JvmtiEventControllerPrivate::recompute_thread_enabled() now calls a routine > in here rather than in JavaThread directly > > * All other new files are due to the name change from > jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() > > -- Tom Deneau > > > From Thomas.Rodriguez at Sun.COM Tue Jan 12 09:29:00 2010 From: Thomas.Rodriguez at Sun.COM (Tom Rodriguez) Date: Tue, 12 Jan 2010 09:29:00 -0800 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty In-Reply-To: <510934C4EB2082479E7D4AA4D06A8882AC0F8631@SAUSEXMBP01.amd.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> <4B467677.3070006@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8CC67@SAUSEXMBP01.amd.com> <4B47DDB0.80305@sun.com> <510934C4EB2082479E7D4AA4D06A8882AC0F8631@SAUSEXMBP01.amd.com> Message-ID: <009667CF-4847-46D1-9E27-FC255096E1D5@sun.com> Some of the renames in ciEnv.?pp messed up alignment. Could you fix that? Otherwise it looks ok. tom On Jan 12, 2010, at 8:24 AM, Deneau, Tom wrote: > Dan has given his OK for the jvmti-related changes, could someone from the compiler side > look over the final webrev as well? As mentioned previously, not much has really changed > on the compiler side from the earlier webrev. > > http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 > > -- Tom > > -----Original Message----- > From: Daniel.Daugherty at Sun.COM [mailto:Daniel.Daugherty at Sun.COM] > Sent: Friday, January 08, 2010 7:37 PM > To: Deneau, Tom > Cc: serviceability-dev at openjdk.java.net; hotspot-compiler-dev at openjdk.java.net > Subject: Re: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty > > Thumbs up from me! > > Dan > > > Deneau, Tom wrote: >> Cross posting to hotspot-compiler-dev at openjdk.java.net and >> serviceability-dev at openjdk.java.net since this review request touches >> both compiler/runtime code and JVMTI code... >> >> New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 >> >> This webrev addresses the comments made by Dan Daugherty in >> http://mail.openjdk.java.net/pipermail/hotspot-compiler-dev/2010-January/002450.html >> >> This webrev includes the name change from >> jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() >> >> New files that were not in previous webrevs: >> * jvmtiThreadState.hpp, >> JvmtiEventControllerPrivate::recompute_thread_enabled() now calls a routine >> in here rather than in JavaThread directly >> >> * All other new files are due to the name change from >> jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() >> >> -- Tom Deneau >> >> >> > > From tom.deneau at amd.com Tue Jan 12 11:43:02 2010 From: tom.deneau at amd.com (Deneau, Tom) Date: Tue, 12 Jan 2010 13:43:02 -0600 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty In-Reply-To: <009667CF-4847-46D1-9E27-FC255096E1D5@sun.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> <4B467677.3070006@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8CC67@SAUSEXMBP01.amd.com> <4B47DDB0.80305@sun.com> <510934C4EB2082479E7D4AA4D06A8882AC0F8631@SAUSEXMBP01.amd.com> <009667CF-4847-46D1-9E27-FC255096E1D5@sun.com> Message-ID: <510934C4EB2082479E7D4AA4D06A8882AC0F8785@SAUSEXMBP01.amd.com> Alignment issues have been corrected in http://cr.openjdk.java.net/~tdeneau/6902182/webrev.06 -----Original Message----- From: Thomas.Rodriguez at Sun.COM [mailto:Thomas.Rodriguez at Sun.COM] Sent: Tuesday, January 12, 2010 11:29 AM To: Deneau, Tom Cc: hotspot-compiler-dev at openjdk.java.net; serviceability-dev at openjdk.java.net; Daniel.Daugherty at Sun.COM Subject: Re: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty Some of the renames in ciEnv.?pp messed up alignment. Could you fix that? Otherwise it looks ok. tom On Jan 12, 2010, at 8:24 AM, Deneau, Tom wrote: > Dan has given his OK for the jvmti-related changes, could someone from the compiler side > look over the final webrev as well? As mentioned previously, not much has really changed > on the compiler side from the earlier webrev. > > http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 > > -- Tom > > -----Original Message----- > From: Daniel.Daugherty at Sun.COM [mailto:Daniel.Daugherty at Sun.COM] > Sent: Friday, January 08, 2010 7:37 PM > To: Deneau, Tom > Cc: serviceability-dev at openjdk.java.net; hotspot-compiler-dev at openjdk.java.net > Subject: Re: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty > > Thumbs up from me! > > Dan > > > Deneau, Tom wrote: >> Cross posting to hotspot-compiler-dev at openjdk.java.net and >> serviceability-dev at openjdk.java.net since this review request touches >> both compiler/runtime code and JVMTI code... >> >> New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 >> >> This webrev addresses the comments made by Dan Daugherty in >> http://mail.openjdk.java.net/pipermail/hotspot-compiler-dev/2010-January/002450.html >> >> This webrev includes the name change from >> jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() >> >> New files that were not in previous webrevs: >> * jvmtiThreadState.hpp, >> JvmtiEventControllerPrivate::recompute_thread_enabled() now calls a routine >> in here rather than in JavaThread directly >> >> * All other new files are due to the name change from >> jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() >> >> -- Tom Deneau >> >> >> > > From Thomas.Rodriguez at Sun.COM Tue Jan 12 11:52:03 2010 From: Thomas.Rodriguez at Sun.COM (Tom Rodriguez) Date: Tue, 12 Jan 2010 11:52:03 -0800 Subject: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty In-Reply-To: <510934C4EB2082479E7D4AA4D06A8882AC0F8785@SAUSEXMBP01.amd.com> References: <510934C4EB2082479E7D4AA4D06A8882ABDADAA5@SAUSEXMBP01.amd.com> <4B2BC1CD.5040100@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8C023@SAUSEXMBP01.amd.com> <4B467677.3070006@sun.com> <510934C4EB2082479E7D4AA4D06A8882ABF8CC67@SAUSEXMBP01.amd.com> <4B47DDB0.80305@sun.com> <510934C4EB2082479E7D4AA4D06A8882AC0F8631@SAUSEXMBP01.amd.com> <009667CF-4847-46D1-9E27-FC255096E1D5@sun.com> <510934C4EB2082479E7D4AA4D06A8882AC0F8785@SAUSEXMBP01.amd.com> Message-ID: Looks good. tom On Jan 12, 2010, at 11:43 AM, Deneau, Tom wrote: > Alignment issues have been corrected in http://cr.openjdk.java.net/~tdeneau/6902182/webrev.06 > > -----Original Message----- > From: Thomas.Rodriguez at Sun.COM [mailto:Thomas.Rodriguez at Sun.COM] > Sent: Tuesday, January 12, 2010 11:29 AM > To: Deneau, Tom > Cc: hotspot-compiler-dev at openjdk.java.net; serviceability-dev at openjdk.java.net; Daniel.Daugherty at Sun.COM > Subject: Re: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty > > Some of the renames in ciEnv.?pp messed up alignment. Could you fix that? Otherwise it looks ok. > > tom > > On Jan 12, 2010, at 8:24 AM, Deneau, Tom wrote: > >> Dan has given his OK for the jvmti-related changes, could someone from the compiler side >> look over the final webrev as well? As mentioned previously, not much has really changed >> on the compiler side from the earlier webrev. >> >> http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 >> >> -- Tom >> >> -----Original Message----- >> From: Daniel.Daugherty at Sun.COM [mailto:Daniel.Daugherty at Sun.COM] >> Sent: Friday, January 08, 2010 7:37 PM >> To: Deneau, Tom >> Cc: serviceability-dev at openjdk.java.net; hotspot-compiler-dev at openjdk.java.net >> Subject: Re: Request Review: 6902182: Starting with jdwp agent should not incur performance penalty >> >> Thumbs up from me! >> >> Dan >> >> >> Deneau, Tom wrote: >>> Cross posting to hotspot-compiler-dev at openjdk.java.net and >>> serviceability-dev at openjdk.java.net since this review request touches >>> both compiler/runtime code and JVMTI code... >>> >>> New webrev is at http://cr.openjdk.java.net/~tdeneau/6902182/webrev.05 >>> >>> This webrev addresses the comments made by Dan Daugherty in >>> http://mail.openjdk.java.net/pipermail/hotspot-compiler-dev/2010-January/002450.html >>> >>> This webrev includes the name change from >>> jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() >>> >>> New files that were not in previous webrevs: >>> * jvmtiThreadState.hpp, >>> JvmtiEventControllerPrivate::recompute_thread_enabled() now calls a routine >>> in here rather than in JavaThread directly >>> >>> * All other new files are due to the name change from >>> jvmti_can_post_exceptions() to jvmti_can_post_on_exceptions() >>> >>> -- Tom Deneau >>> >>> >>> >> >> > > > From mandy.chung at sun.com Tue Jan 12 15:22:06 2010 From: mandy.chung at sun.com (mandy.chung at sun.com) Date: Tue, 12 Jan 2010 23:22:06 +0000 Subject: hg: jdk7/tl/jdk: 6915502: Legal notice repairs needed in jdk/make/modules/tools Message-ID: <20100112232245.3E02342EE5@hg.openjdk.java.net> Changeset: ba74184a952c Author: mchung Date: 2010-01-12 15:19 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/ba74184a952c 6915502: Legal notice repairs needed in jdk/make/modules/tools Summary: Fix the legal notice in jdk/make/modules/tools Reviewed-by: tbell ! make/modules/tools/build.xml ! make/modules/tools/nbproject/project.properties ! make/modules/tools/nbproject/project.xml From jonathan.gibbons at sun.com Wed Jan 13 17:40:51 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Thu, 14 Jan 2010 01:40:51 +0000 Subject: hg: jdk7/tl/langtools: 6472751: SourcePositions.getStartPos returns incorrect value for enum constants; ... Message-ID: <20100114014056.3BB944142C@hg.openjdk.java.net> Changeset: ccd51af119b4 Author: jjg Date: 2010-01-13 17:39 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/ccd51af119b4 6472751: SourcePositions.getStartPos returns incorrect value for enum constants 6567414: javac compiler reports no source file or line on enum constant declaration error Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/parser/JavacParser.java + test/tools/javac/T6472751.java + test/tools/javac/T6567414.java + test/tools/javac/T6567414.out From jonathan.gibbons at sun.com Thu Jan 14 17:20:04 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Fri, 15 Jan 2010 01:20:04 +0000 Subject: hg: jdk7/tl/langtools: 6917122: provide utility method to find the inner most type of a type tree Message-ID: <20100115012007.9287B415EE@hg.openjdk.java.net> Changeset: b96ad32c004a Author: jjg Date: 2010-01-14 17:18 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/b96ad32c004a 6917122: provide utility method to find the inner most type of a type tree Reviewed-by: darcy, jjg Contributed-by: mali at csail.mit.edu, mernst at cs.washington.edu ! src/share/classes/com/sun/tools/javac/tree/Pretty.java ! src/share/classes/com/sun/tools/javac/tree/TreeInfo.java From jonathan.gibbons at sun.com Thu Jan 14 17:24:41 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Fri, 15 Jan 2010 01:24:41 +0000 Subject: hg: jdk7/tl/langtools: 6916986: handle spaces in langtools launcher path Message-ID: <20100115012443.CFF61415F0@hg.openjdk.java.net> Changeset: 2d0f4e7b44b2 Author: jjg Date: 2010-01-14 17:23 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/2d0f4e7b44b2 6916986: handle spaces in langtools launcher path Reviewed-by: darcy, jjg Contributed-by: mali at csail.mit.edu, mernst at cs.washington.edu ! src/share/bin/launcher.sh-template From joe.darcy at sun.com Thu Jan 14 20:05:52 2010 From: joe.darcy at sun.com (joe.darcy at sun.com) Date: Fri, 15 Jan 2010 04:05:52 +0000 Subject: hg: jdk7/tl/jdk: 6908218: java.lang.Deprecated should have explicit @Target meta-annotation. Message-ID: <20100115040610.BB6484162B@hg.openjdk.java.net> Changeset: fa0cb25202d8 Author: darcy Date: 2010-01-14 20:05 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/fa0cb25202d8 6908218: java.lang.Deprecated should have explicit @Target meta-annotation. Reviewed-by: mernst ! src/share/classes/java/lang/Deprecated.java ! src/share/classes/java/lang/SuppressWarnings.java From john.coomes at sun.com Thu Jan 14 21:46:00 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 15 Jan 2010 05:46:00 +0000 Subject: hg: jdk7/hotspot-rt: Added tag jdk7-b79 for changeset 20aeeb517139 Message-ID: <20100115054600.56A1C4166B@hg.openjdk.java.net> Changeset: b1952d19290d Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/rev/b1952d19290d Added tag jdk7-b79 for changeset 20aeeb517139 ! .hgtags From john.coomes at sun.com Thu Jan 14 21:46:05 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 15 Jan 2010 05:46:05 +0000 Subject: hg: jdk7/hotspot-rt/corba: Added tag jdk7-b79 for changeset ec0421b5703b Message-ID: <20100115054609.2CF8C4166C@hg.openjdk.java.net> Changeset: fdbc85b2d15c Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/corba/rev/fdbc85b2d15c Added tag jdk7-b79 for changeset ec0421b5703b ! .hgtags From john.coomes at sun.com Thu Jan 14 21:49:42 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 15 Jan 2010 05:49:42 +0000 Subject: hg: jdk7/hotspot-rt/jaxp: Added tag jdk7-b79 for changeset b1005c504358 Message-ID: <20100115054943.08DCD4166D@hg.openjdk.java.net> Changeset: 9219574db593 Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jaxp/rev/9219574db593 Added tag jdk7-b79 for changeset b1005c504358 ! .hgtags From john.coomes at sun.com Thu Jan 14 21:49:48 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 15 Jan 2010 05:49:48 +0000 Subject: hg: jdk7/hotspot-rt/jaxws: Added tag jdk7-b79 for changeset c08894f5b6e5 Message-ID: <20100115054948.65EF64166E@hg.openjdk.java.net> Changeset: 447767dee56a Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jaxws/rev/447767dee56a Added tag jdk7-b79 for changeset c08894f5b6e5 ! .hgtags From john.coomes at sun.com Thu Jan 14 21:50:25 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 15 Jan 2010 05:50:25 +0000 Subject: hg: jdk7/hotspot-rt/jdk: 38 new changesets Message-ID: <20100115060251.168D941674@hg.openjdk.java.net> Changeset: 9c352f7ed4a3 Author: jrose Date: 2009-10-21 23:19 -0700 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/9c352f7ed4a3 6891770: JSR 292 API needs initial unit tests Summary: backport working mlvm regression test to M3 implementation of JSR 292; requires jtreg 4.1 Reviewed-by: twisti + test/java/dyn/MethodHandlesTest.java Changeset: fc3d21b50545 Author: jrose Date: 2010-01-06 16:50 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/fc3d21b50545 Merge Changeset: dbcf6cafa65c Author: jrose Date: 2010-01-07 16:16 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/dbcf6cafa65c 6914665: update jdk code for JSR 292 (post 6858164) Summary: Fill in missing API implementations, fix numerous bugs, adjust APIs towards EG design. Reviewed-by: twisti ! src/share/classes/java/dyn/CallSite.java ! src/share/classes/java/dyn/InvokeDynamic.java ! src/share/classes/java/dyn/InvokeDynamicBootstrapError.java ! src/share/classes/java/dyn/JavaMethodHandle.java ! src/share/classes/java/dyn/Linkage.java ! src/share/classes/java/dyn/LinkagePermission.java ! src/share/classes/java/dyn/MethodHandle.java ! src/share/classes/java/dyn/MethodHandles.java ! src/share/classes/java/dyn/MethodType.java ! src/share/classes/java/dyn/package-info.java ! src/share/classes/sun/dyn/AdapterMethodHandle.java ! src/share/classes/sun/dyn/BoundMethodHandle.java ! src/share/classes/sun/dyn/CallSiteImpl.java ! src/share/classes/sun/dyn/FilterGeneric.java ! src/share/classes/sun/dyn/FilterOneArgument.java ! src/share/classes/sun/dyn/FromGeneric.java ! src/share/classes/sun/dyn/Invokers.java ! src/share/classes/sun/dyn/MemberName.java ! src/share/classes/sun/dyn/MethodHandleImpl.java ! src/share/classes/sun/dyn/MethodHandleNatives.java ! src/share/classes/sun/dyn/MethodTypeImpl.java + src/share/classes/sun/dyn/SpreadGeneric.java ! src/share/classes/sun/dyn/ToGeneric.java ! src/share/classes/sun/dyn/empty/Empty.java + src/share/classes/sun/dyn/util/BytecodeDescriptor.java ! src/share/classes/sun/dyn/util/BytecodeName.java - src/share/classes/sun/dyn/util/BytecodeSignature.java ! src/share/classes/sun/dyn/util/ValueConversions.java ! src/share/classes/sun/dyn/util/VerifyAccess.java ! src/share/classes/sun/dyn/util/VerifyType.java ! src/share/classes/sun/dyn/util/Wrapper.java ! test/java/dyn/MethodHandlesTest.java Changeset: a0f6963b1618 Author: martin Date: 2009-12-08 12:41 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/a0f6963b1618 6903754: (bf) Improve floating-point buffer comparison Summary: Describe the exact behavior of {Double,Float}Buffer.{equals,compareTo}; fix non-anti-symmetric behavior of compareTo Reviewed-by: alanb Contributed-by: jessewilson at google.com ! make/java/nio/genBuffer.sh ! src/share/classes/java/nio/X-Buffer.java.template ! test/java/nio/Buffer/Basic-X.java.template ! test/java/nio/Buffer/BasicByte.java ! test/java/nio/Buffer/BasicChar.java ! test/java/nio/Buffer/BasicDouble.java ! test/java/nio/Buffer/BasicFloat.java ! test/java/nio/Buffer/BasicInt.java ! test/java/nio/Buffer/BasicLong.java ! test/java/nio/Buffer/BasicShort.java ! test/java/nio/Buffer/genBasic.sh Changeset: db5c77621c6b Author: weijun Date: 2009-12-09 11:15 +0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/db5c77621c6b 6908628: ObjectIdentifier s11n test fails Reviewed-by: xuelei ! test/sun/security/util/Oid/S11N.sh Changeset: c2f83e13bbe5 Author: darcy Date: 2009-12-09 17:55 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/c2f83e13bbe5 6909057: @see Arrays#hashCode missing particular method specification in j.u.Objects.hash Reviewed-by: ksrini ! src/share/classes/java/util/Objects.java Changeset: 0f8f624ddcb4 Author: mchung Date: 2009-12-09 21:09 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/0f8f624ddcb4 6909082: Docs warning from java.util.logging.PlatformLoggingMXBean Summary: Fix incorrect tag @See with @see. Reviewed-by: darcy ! src/share/classes/java/util/logging/PlatformLoggingMXBean.java Changeset: 7c9be6c9385a Author: mullan Date: 2009-12-10 11:31 -0500 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/7c9be6c9385a 6867348: Digest Value of References inside Manifest - calculation order problem Reviewed-by: xuelei ! src/share/classes/org/jcp/xml/dsig/internal/dom/DOMXMLSignature.java ! test/javax/xml/crypto/dsig/GenerationTests.java Changeset: 421e652f00c7 Author: mullan Date: 2009-12-10 11:34 -0500 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/421e652f00c7 Merge Changeset: ae944611249f Author: chegar Date: 2009-12-10 15:52 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/ae944611249f 6909089: Memory leak occurs by lack of free for read buffer in SocketInputStream#read() Reviewed-by: alanb, jccollet ! src/windows/native/java/net/SocketInputStream.c Changeset: 59221d9e0c1c Author: chegar Date: 2009-12-10 09:08 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/59221d9e0c1c Merge Changeset: f9c9c2b726a0 Author: darcy Date: 2009-12-10 13:04 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/f9c9c2b726a0 6909070: Missing package statements in java.text.Bidi @see links Reviewed-by: anthony ! src/share/classes/java/text/Bidi.java Changeset: aa0d374b40a5 Author: darcy Date: 2009-12-10 13:28 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/aa0d374b40a5 4891262: API spec, javax/accessibility: few invalid javadoc tags Reviewed-by: jjg ! src/share/classes/javax/accessibility/AccessibleContext.java ! src/share/classes/javax/accessibility/AccessibleExtendedText.java ! src/share/classes/javax/accessibility/AccessibleKeyBinding.java Changeset: 3267ca7afe95 Author: darcy Date: 2009-12-11 10:40 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/3267ca7afe95 6909563: Javadoc build warnings in rmi, security, management Reviewed-by: mchung, mullan ! src/share/classes/java/lang/management/PlatformManagedObject.java ! src/share/classes/java/rmi/activation/Activatable.java ! src/share/classes/java/rmi/registry/LocateRegistry.java ! src/share/classes/java/rmi/server/RemoteObjectInvocationHandler.java ! src/share/classes/java/security/cert/CertPathValidatorException.java Changeset: 5434b2585a08 Author: andrew Date: 2009-12-11 23:47 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/5434b2585a08 6909442: Fix comments in test/sun/tools/jhat/HatRun.java Summary: Update the comments in this test to match the changes in 6902325 Reviewed-by: ohair ! test/sun/tools/jhat/HatRun.java Changeset: 2d53da2c4764 Author: ohair Date: 2009-12-09 09:46 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/2d53da2c4764 6906210: Fix another minor typo in test/Makefile Reviewed-by: tbell, dcubed ! test/Makefile ! test/ProblemList.txt ! test/com/sun/jdi/NoLaunchOptionTest.java ! test/com/sun/jdi/OptionTest.java ! test/sun/tools/jhat/HatRun.java Changeset: a5ee97f72245 Author: ohair Date: 2009-12-09 09:50 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/a5ee97f72245 Merge Changeset: 8d42b2bd25fe Author: ohair Date: 2009-12-10 16:57 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/8d42b2bd25fe Merge Changeset: c84d8b9be5c6 Author: ohair Date: 2009-12-11 15:29 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/c84d8b9be5c6 6909373: Add -ea to the testing done by jdk/test/Makefile Reviewed-by: darcy ! test/Makefile ! test/ProblemList.txt Changeset: 623c22f00e49 Author: ohair Date: 2009-12-11 15:29 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/623c22f00e49 Merge Changeset: 15568b6998f4 Author: ohair Date: 2009-12-11 17:18 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/15568b6998f4 Merge ! test/sun/tools/jhat/HatRun.java Changeset: ad1e30930c6c Author: darcy Date: 2009-12-15 13:51 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/ad1e30930c6c 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double) Reviewed-by: alanb ! make/java/java/mapfile-vers ! make/java/java/reorder-i586 ! make/java/java/reorder-sparc ! make/java/java/reorder-sparcv9 ! src/share/classes/java/lang/StrictMath.java ! src/share/native/java/lang/StrictMath.c + test/java/lang/Math/CeilAndFloorTests.java Changeset: c6d3ca281660 Author: ohair Date: 2009-12-16 12:45 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/c6d3ca281660 6558110: tmp/java/jli/obj_g/static is not deleted automatically Reviewed-by: ksrini ! make/java/jli/Makefile Changeset: a368ebcfeeb6 Author: mchung Date: 2009-12-17 08:11 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/a368ebcfeeb6 6898747: Allow JNDI cosnaming provider to be used when java.applet is not present Summary: Check if java.applet.Applet is present before accessing the type Reviewed-by: alanb, vinnie ! src/share/classes/com/sun/jndi/toolkit/corba/CorbaUtils.java Changeset: de776cd139aa Author: mchung Date: 2009-12-18 07:49 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/de776cd139aa Merge Changeset: da43f2e977ac Author: mchung Date: 2009-12-18 11:36 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/da43f2e977ac 6909572: Add a new target for building modules Summary: Add a new "modules" build target that builds jdk and jre module image Reviewed-by: alanb, ohair ! make/Makefile + make/common/Modules.gmk + make/modules/Makefile + make/modules/bootmodule.roots + make/modules/jdk7.depconfig + make/modules/modules.config + make/modules/modules.group + make/modules/optional.depconfig + make/modules/tools/Makefile + make/modules/tools/build.xml + make/modules/tools/nbproject/project.properties + make/modules/tools/nbproject/project.xml + make/modules/tools/src/com/sun/classanalyzer/AnnotatedDependency.java + make/modules/tools/src/com/sun/classanalyzer/AnnotationParser.java + make/modules/tools/src/com/sun/classanalyzer/BootAnalyzer.java + make/modules/tools/src/com/sun/classanalyzer/CheckDeps.java + make/modules/tools/src/com/sun/classanalyzer/ClassAnalyzer.java + make/modules/tools/src/com/sun/classanalyzer/ClassFileParser.java + make/modules/tools/src/com/sun/classanalyzer/ClassPath.java + make/modules/tools/src/com/sun/classanalyzer/CodeAttributeParser.java + make/modules/tools/src/com/sun/classanalyzer/ConstantPoolAnalyzer.java + make/modules/tools/src/com/sun/classanalyzer/ConstantPoolParser.java + make/modules/tools/src/com/sun/classanalyzer/DependencyConfig.java + make/modules/tools/src/com/sun/classanalyzer/Klass.java + make/modules/tools/src/com/sun/classanalyzer/Module.java + make/modules/tools/src/com/sun/classanalyzer/ModuleConfig.java + make/modules/tools/src/com/sun/classanalyzer/ResolutionInfo.java + make/modules/tools/src/com/sun/classanalyzer/ResourceFile.java + make/modules/tools/src/com/sun/classanalyzer/ShowDeps.java Changeset: b8d1e718ea6d Author: mchung Date: 2009-12-18 11:42 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/b8d1e718ea6d 6909573: Temporary launcher support to add modules in the bootclasspath Summary: Add the list of modules to the bootclasspath if lib/rt.jar and classes don't exist Reviewed-by: alanb, ohair, ksrini ! src/share/bin/java.c Changeset: 3b896fcc7806 Author: tbell Date: 2009-12-19 10:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/3b896fcc7806 Merge Changeset: f7e4cda33734 Author: darcy Date: 2009-12-22 21:48 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/f7e4cda33734 6908541: Bad resource management in java/math/BigInteger/BigIntegerTest.java Reviewed-by: alanb ! test/ProblemList.txt ! test/java/math/BigInteger/BigIntegerTest.java Changeset: 94feb5bd31bd Author: ptisnovs Date: 2009-12-23 11:18 +0100 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/94feb5bd31bd 6912628: test/java/util/jar/JarFile/TurkCert.java cannot be run in samevm mode Summary: Added tag to run this test in othervm Reviewed-by: chegar ! test/java/util/jar/JarFile/TurkCert.java Changeset: 4a062158d2c5 Author: andrew Date: 2009-12-23 17:17 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/4a062158d2c5 6912893: (build) make/java/nio/FILES_java.gmk doesn't list sun.nio.cs.Unicode Summary: Add missing Java source file Reviewed-by: alanb ! make/java/nio/FILES_java.gmk Changeset: 49bc2b443eca Author: dl Date: 2009-12-23 15:57 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/49bc2b443eca 6908348: java/util/concurrent/BlockingQueue/CancelledProducerConsumerLoops.java get OOME for unbounded queues Reviewed-by: martin, dholmes ! test/java/util/concurrent/BlockingQueue/CancelledProducerConsumerLoops.java Changeset: 6a80c535f02e Author: weijun Date: 2009-12-24 13:56 +0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/6a80c535f02e 6843127: krb5 should not try to access unavailable kdc too often Reviewed-by: valeriep, mullan ! src/share/classes/sun/security/krb5/Config.java ! src/share/classes/sun/security/krb5/KrbKdcReq.java ! src/share/lib/security/java.security + test/sun/security/krb5/auto/BadKdc.java + test/sun/security/krb5/auto/BadKdc1.java + test/sun/security/krb5/auto/BadKdc2.java + test/sun/security/krb5/auto/BadKdc3.java + test/sun/security/krb5/auto/BadKdc4.java ! test/sun/security/krb5/auto/KDC.java ! test/sun/security/krb5/auto/OneKDC.java Changeset: 91c3cabb3d32 Author: weijun Date: 2009-12-24 13:56 +0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/91c3cabb3d32 6907425: JCK Kerberos tests fail since b77 Reviewed-by: valeriep ! src/share/classes/sun/security/krb5/EncryptionKey.java ! test/sun/security/krb5/auto/KDC.java ! test/sun/security/krb5/auto/MoreKvno.java Changeset: ef9774dc4f5a Author: weijun Date: 2010-01-05 10:40 +0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/ef9774dc4f5a 6895424: RFC 5653 Reviewed-by: valeriep ! src/share/classes/org/ietf/jgss/GSSName.java ! src/share/classes/sun/security/jgss/GSSManagerImpl.java ! src/share/classes/sun/security/jgss/GSSNameImpl.java ! src/share/classes/sun/security/jgss/GSSUtil.java ! src/share/classes/sun/security/jgss/wrapper/GSSNameElement.java + test/sun/security/krb5/auto/Test5653.java Changeset: c028d78fa438 Author: weijun Date: 2010-01-05 10:40 +0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/c028d78fa438 6913636: kvno check in JSSE Reviewed-by: valeriep ! src/share/classes/sun/security/ssl/krb5/KerberosClientKeyExchangeImpl.java ! test/sun/security/krb5/auto/SSL.java Changeset: 918920710d65 Author: jcoomes Date: 2010-01-13 15:16 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/918920710d65 Merge - src/share/classes/sun/dyn/util/BytecodeSignature.java Changeset: 756ab2266ffb Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/756ab2266ffb Added tag jdk7-b79 for changeset 918920710d65 ! .hgtags From john.coomes at sun.com Thu Jan 14 22:07:05 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 15 Jan 2010 06:07:05 +0000 Subject: hg: jdk7/hotspot-rt/langtools: 7 new changesets Message-ID: <20100115060730.8B23F41676@hg.openjdk.java.net> Changeset: ff823a039e16 Author: darcy Date: 2009-12-10 20:35 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/ff823a039e16 6909538: Clarify meaning of "element" in javax.lang.model.element API Reviewed-by: ahe ! src/share/classes/javax/lang/model/element/package-info.java Changeset: 4011f49b4af8 Author: jjg Date: 2009-12-11 14:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/4011f49b4af8 6906175: bridge JSR199 and JSR 203 APIs Reviewed-by: darcy, alanb ! make/build.properties ! make/build.xml ! src/share/classes/com/sun/tools/javac/file/BaseFileObject.java - src/share/classes/com/sun/tools/javac/file/CloseableURLClassLoader.java ! src/share/classes/com/sun/tools/javac/file/JavacFileManager.java ! src/share/classes/com/sun/tools/javac/file/Paths.java + src/share/classes/com/sun/tools/javac/nio/JavacPathFileManager.java + src/share/classes/com/sun/tools/javac/nio/PathFileManager.java + src/share/classes/com/sun/tools/javac/nio/PathFileObject.java + src/share/classes/com/sun/tools/javac/util/BaseFileManager.java + src/share/classes/com/sun/tools/javac/util/CloseableURLClassLoader.java ! src/share/classes/javax/tools/StandardJavaFileManager.java + test/tools/javac/nio/compileTest/CompileTest.java + test/tools/javac/nio/compileTest/HelloPathWorld.java Changeset: fbeb560f39e7 Author: jjg Date: 2009-12-12 09:28 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/fbeb560f39e7 6907575: [classfile] add support for classfile dependency analysis Reviewed-by: ksrini + src/share/classes/com/sun/tools/classfile/Dependencies.java + src/share/classes/com/sun/tools/classfile/Dependency.java + test/tools/javap/classfile/deps/GetDeps.java + test/tools/javap/classfile/deps/T6907575.java + test/tools/javap/classfile/deps/T6907575.out + test/tools/javap/classfile/deps/p/C1.java Changeset: 0666a8f87661 Author: jjg Date: 2009-12-15 13:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/0666a8f87661 6910317: [classfile] typo and other issues in Dependency classes Reviewed-by: ksrini ! src/share/classes/com/sun/tools/classfile/Dependencies.java ! src/share/classes/com/sun/tools/classfile/Dependency.java ! test/tools/javap/classfile/deps/GetDeps.java Changeset: 96c71cbc544b Author: darcy Date: 2009-12-18 11:15 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/96c71cbc544b 6911854: Update TestElementsAnnotatedWith.java to use @compile/proc Reviewed-by: jjg ! test/tools/javac/processing/environment/round/TestElementsAnnotatedWith.java Changeset: ac5b4c5644ce Author: tbell Date: 2009-12-19 10:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/ac5b4c5644ce Merge - src/share/classes/com/sun/tools/javac/file/CloseableURLClassLoader.java Changeset: f0074aa48d4e Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/f0074aa48d4e Added tag jdk7-b79 for changeset ac5b4c5644ce ! .hgtags From sean.mullan at sun.com Fri Jan 15 07:05:56 2010 From: sean.mullan at sun.com (sean.mullan at sun.com) Date: Fri, 15 Jan 2010 15:05:56 +0000 Subject: hg: jdk7/tl/jdk: 2 new changesets Message-ID: <20100115150635.0A79041705@hg.openjdk.java.net> Changeset: 51d62db10c93 Author: mullan Date: 2010-01-15 09:48 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/51d62db10c93 6915939: Exception should be thrown if OCSP SingleResponses contain unresolved critical extensions Reviewed-by: xuelei ! src/share/classes/sun/security/provider/certpath/OCSPResponse.java Changeset: 074f79397dda Author: mullan Date: 2010-01-15 09:58 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/074f79397dda Merge From christopher.hegarty at sun.com Fri Jan 15 08:31:49 2010 From: christopher.hegarty at sun.com (christopher.hegarty at sun.com) Date: Fri, 15 Jan 2010 16:31:49 +0000 Subject: hg: jdk7/tl/jdk: 6916922: (sctp) SO_RCVBUF & SO_SNDBUF returns twice the value set Message-ID: <20100115163208.4D1864171E@hg.openjdk.java.net> Changeset: b019cdae32dd Author: chegar Date: 2010-01-15 16:31 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/b019cdae32dd 6916922: (sctp) SO_RCVBUF & SO_SNDBUF returns twice the value set Reviewed-by: alanb ! src/solaris/native/sun/nio/ch/SctpNet.c ! test/com/sun/nio/sctp/SctpChannel/SocketOptionTests.java From lana.steuck at sun.com Fri Jan 15 16:34:02 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Sat, 16 Jan 2010 00:34:02 +0000 Subject: hg: jdk7/tl: Added tag jdk7-b79 for changeset 20aeeb517139 Message-ID: <20100116003403.09BDC417AB@hg.openjdk.java.net> Changeset: b1952d19290d Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/rev/b1952d19290d Added tag jdk7-b79 for changeset 20aeeb517139 ! .hgtags From lana.steuck at sun.com Fri Jan 15 16:34:09 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Sat, 16 Jan 2010 00:34:09 +0000 Subject: hg: jdk7/tl/corba: Added tag jdk7-b79 for changeset ec0421b5703b Message-ID: <20100116003410.5CF59417AC@hg.openjdk.java.net> Changeset: fdbc85b2d15c Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/corba/rev/fdbc85b2d15c Added tag jdk7-b79 for changeset ec0421b5703b ! .hgtags From lana.steuck at sun.com Fri Jan 15 16:36:20 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Sat, 16 Jan 2010 00:36:20 +0000 Subject: hg: jdk7/tl/hotspot: 74 new changesets Message-ID: <20100116004010.99A7F417B0@hg.openjdk.java.net> Changeset: f334aec453a1 Author: kvn Date: 2009-10-29 16:57 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f334aec453a1 6896084: VM does not reserve protected page below heap for compressed oops implicit null checks Summary: Set narrow_oop_base and narrow_oop_use_implicit_null_checks in Universe::preferred_heap_base(). Reviewed-by: twisti, jcoomes ! src/share/vm/memory/universe.cpp Changeset: 73a726751507 Author: cfang Date: 2009-10-30 10:12 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/73a726751507 6852078: HSX 14/16 in jdk 5.0: api/javax_management api/org_omg jck tests crashes or make tnameserv crash Summary: Disable SuperWord optimization for unsafe read/write Reviewed-by: kvn, phh ! src/share/vm/opto/superword.cpp + test/compiler/6852078/Test6852078.java Changeset: 389049f3f393 Author: jrose Date: 2009-10-30 16:22 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638) Summary: Fix several crashers, remove needless paths for boxed-style bootstrap method call, refactor & simplify APIs for rewriter constantPoolOop, remove sun.dyn.CallSiteImpl Reviewed-by: kvn ! src/cpu/sparc/vm/templateInterpreter_sparc.cpp ! src/cpu/x86/vm/templateInterpreter_x86_32.cpp ! src/cpu/x86/vm/templateInterpreter_x86_64.cpp ! src/cpu/x86/vm/templateTable_x86_32.cpp ! src/share/vm/ci/ciEnv.cpp ! src/share/vm/classfile/javaClasses.cpp ! src/share/vm/classfile/javaClasses.hpp ! src/share/vm/classfile/systemDictionary.cpp ! src/share/vm/classfile/systemDictionary.hpp ! src/share/vm/classfile/verifier.cpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/includeDB_core ! src/share/vm/interpreter/bytecodeTracer.cpp ! src/share/vm/interpreter/interpreter.cpp ! src/share/vm/interpreter/interpreterRuntime.cpp ! src/share/vm/interpreter/interpreterRuntime.hpp ! src/share/vm/interpreter/linkResolver.cpp ! src/share/vm/interpreter/rewriter.cpp ! src/share/vm/interpreter/rewriter.hpp ! src/share/vm/interpreter/templateInterpreter.cpp ! src/share/vm/interpreter/templateInterpreter.hpp ! src/share/vm/interpreter/templateInterpreterGenerator.hpp ! src/share/vm/oops/constantPoolOop.cpp ! src/share/vm/oops/constantPoolOop.hpp ! src/share/vm/oops/cpCacheOop.cpp ! src/share/vm/oops/cpCacheOop.hpp ! src/share/vm/oops/generateOopMap.cpp ! src/share/vm/oops/instanceKlassKlass.cpp ! src/share/vm/prims/jvm.cpp ! src/share/vm/prims/methodHandles.cpp Changeset: 323bd24c6520 Author: roland Date: 2009-11-02 11:17 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/323bd24c6520 6769124: various 64-bit fixes for c1 Reviewed-by: never ! src/cpu/sparc/vm/c1_LIRAssembler_sparc.cpp ! src/cpu/sparc/vm/c1_LIRGenerator_sparc.cpp ! src/cpu/x86/vm/assembler_x86.cpp ! src/cpu/x86/vm/assembler_x86.hpp ! src/cpu/x86/vm/c1_LIRAssembler_x86.cpp ! src/cpu/x86/vm/c1_LIRGenerator_x86.cpp ! src/cpu/x86/vm/vm_version_x86.cpp ! src/share/vm/c1/c1_GraphBuilder.cpp ! src/share/vm/c1/c1_LIRGenerator.cpp ! src/share/vm/c1/c1_LinearScan.cpp ! src/share/vm/runtime/arguments.cpp + test/compiler/6769124/TestArrayCopy6769124.java + test/compiler/6769124/TestDeoptInt6769124.java + test/compiler/6769124/TestUnalignedLoad6769124.java Changeset: 09572fede9d1 Author: kvn Date: 2009-11-04 14:16 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/09572fede9d1 6896370: CTW fails share/vm/opto/matcher.cpp:1475 "duplicating node that's already been matched" Summary: Move DecodeN code outside the memory nodes only code. Reviewed-by: never ! src/share/vm/opto/matcher.cpp Changeset: dcdcc8c16e20 Author: kvn Date: 2009-11-04 14:43 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/dcdcc8c16e20 6896352: CTW fails hotspot/src/share/vm/opto/escape.cpp:1155 Summary: Always call C->get_alias_index(phase->type(address)) during parsing. Reviewed-by: never ! src/share/vm/opto/escape.cpp ! src/share/vm/opto/memnode.cpp Changeset: 2f1ec89b9995 Author: cfang Date: 2009-11-10 17:00 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/2f1ec89b9995 Merge ! src/cpu/x86/vm/assembler_x86.cpp ! src/cpu/x86/vm/assembler_x86.hpp Changeset: 473cce303f13 Author: phh Date: 2009-10-28 16:25 -0400 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/473cce303f13 6887571: Increase default heap config sizes Summary: Apply modification of existing server heap size ergo to all collectors except CMS. Reviewed-by: jmasa, ysr, xlu ! src/cpu/sparc/vm/c1_globals_sparc.hpp ! src/cpu/sparc/vm/c2_globals_sparc.hpp ! src/cpu/sparc/vm/globals_sparc.hpp ! src/cpu/x86/vm/c1_globals_x86.hpp ! src/cpu/x86/vm/c2_globals_x86.hpp ! src/cpu/x86/vm/globals_x86.hpp ! src/cpu/zero/vm/globals_zero.hpp ! src/os_cpu/linux_x86/vm/globals_linux_x86.hpp ! src/os_cpu/solaris_x86/vm/globals_solaris_x86.hpp ! src/os_cpu/windows_x86/vm/globals_windows_x86.hpp ! src/share/vm/gc_implementation/parallelScavenge/psGCAdaptivePolicyCounters.cpp ! src/share/vm/memory/collectorPolicy.cpp ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/arguments.hpp ! src/share/vm/runtime/globals.cpp ! src/share/vm/runtime/globals.hpp ! src/share/vm/runtime/globals_extension.hpp ! src/share/vm/services/management.cpp Changeset: c4ecde2f6b3c Author: xlu Date: 2009-10-30 17:24 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c4ecde2f6b3c Merge Changeset: 97b36138b494 Author: kamg Date: 2009-11-06 15:04 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/97b36138b494 Merge Changeset: ba7ea42fc66e Author: phh Date: 2009-11-04 16:49 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/ba7ea42fc66e 6898160: Need serviceability support for new vm argument type 'uint64_t' Summary: Add serviceability support for uint64_t. Flags of unknown type assert in debug builds and are ignored in product builds. Reviewed-by: never, xlu, mchung, dcubed ! src/share/vm/runtime/globals.cpp ! src/share/vm/services/attachListener.cpp ! src/share/vm/services/management.cpp Changeset: db0d21039f34 Author: kamg Date: 2009-11-06 16:05 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/db0d21039f34 Merge Changeset: fb4c00faa9da Author: kamg Date: 2009-11-11 09:13 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/fb4c00faa9da Merge ! src/share/vm/runtime/arguments.cpp Changeset: 87b2fdd4bf98 Author: never Date: 2009-11-11 23:39 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/87b2fdd4bf98 6892079: live value must not be garbage failure after fix for 6854812 Reviewed-by: kvn ! src/share/vm/opto/parse1.cpp Changeset: b18963243361 Author: twisti Date: 2009-11-19 03:41 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/b18963243361 6902000: use ShouldNotReachHere() for btos/ctos/stos in TemplateInterpreterGenerator::set_short_entry_points Summary: set_entry_point is only ever used with the tos states of bytecode templates in templateTable.cpp and none of those use the subword tos states like btos, ctos and stos. Reviewed-by: kvn ! src/share/vm/interpreter/templateInterpreter.cpp Changeset: 7ef1d2e14917 Author: kvn Date: 2009-11-19 14:32 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/7ef1d2e14917 6902036: WorldWind asserts on escape.cpp:1153: assert(addr->is_AddP(),"AddP required") Summary: Remove the assert. Reviewed-by: twisti ! src/share/vm/opto/escape.cpp Changeset: de44705e6b33 Author: cfang Date: 2009-11-24 11:49 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/de44705e6b33 Merge Changeset: 84cb6f20afb3 Author: phh Date: 2009-11-20 16:22 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/84cb6f20afb3 6900899: vm fails to start when -Xmx value is less than OldSize + NewSize Summary: Set minimum heap size to min(OldSize + NewSize, MaxHeapSize) in Arguments::set_heap_size(). Reviewed-by: kvn, ysr, tonyp ! src/share/vm/runtime/arguments.cpp Changeset: a75edfd400ea Author: acorn Date: 2009-11-11 15:49 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a75edfd400ea 6893504: LinkageError for bootstrap duplicate class definitions. Reviewed-by: kamg, xlu ! src/share/vm/classfile/systemDictionary.cpp ! src/share/vm/classfile/systemDictionary.hpp Changeset: 1920bd911283 Author: acorn Date: 2009-11-23 16:24 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1920bd911283 Merge ! src/share/vm/classfile/systemDictionary.cpp ! src/share/vm/classfile/systemDictionary.hpp Changeset: e1fb452ad949 Author: kamg Date: 2009-11-25 09:03 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/e1fb452ad949 Merge Changeset: 8e7adf982378 Author: twisti Date: 2009-11-27 07:56 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/8e7adf982378 6896043: first round of zero fixes Reviewed-by: kvn Contributed-by: Gary Benson ! src/cpu/zero/vm/cppInterpreter_zero.cpp ! src/cpu/zero/vm/frame_zero.cpp ! src/cpu/zero/vm/frame_zero.hpp ! src/cpu/zero/vm/globals_zero.hpp ! src/cpu/zero/vm/sharedRuntime_zero.cpp ! src/cpu/zero/vm/sharkFrame_zero.hpp ! src/share/vm/interpreter/bytecodeInterpreter.cpp ! src/share/vm/prims/jni.cpp ! src/share/vm/prims/jvmtiManageCapabilities.cpp ! src/share/vm/runtime/os.hpp Changeset: 6400f475effe Author: iveresov Date: 2009-12-01 14:49 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/6400f475effe Merge Changeset: 7c57aead6d3e Author: never Date: 2009-11-12 09:24 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/7c57aead6d3e 6892658: C2 should optimize some stringbuilder patterns Reviewed-by: kvn, twisti ! src/share/vm/ci/ciEnv.cpp ! src/share/vm/ci/ciEnv.hpp ! src/share/vm/ci/ciInstanceKlass.cpp ! src/share/vm/ci/ciInstanceKlass.hpp ! src/share/vm/ci/ciObjectFactory.cpp ! src/share/vm/classfile/systemDictionary.hpp ! src/share/vm/classfile/vmSymbols.cpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/includeDB_compiler2 ! src/share/vm/includeDB_core ! src/share/vm/memory/universe.cpp ! src/share/vm/memory/universe.hpp ! src/share/vm/opto/c2_globals.cpp ! src/share/vm/opto/c2_globals.hpp ! src/share/vm/opto/callGenerator.cpp ! src/share/vm/opto/callGenerator.hpp ! src/share/vm/opto/callnode.cpp ! src/share/vm/opto/callnode.hpp ! src/share/vm/opto/compile.cpp ! src/share/vm/opto/compile.hpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/graphKit.cpp ! src/share/vm/opto/graphKit.hpp ! src/share/vm/opto/macro.cpp ! src/share/vm/opto/memnode.cpp ! src/share/vm/opto/node.hpp ! src/share/vm/opto/parseHelper.cpp ! src/share/vm/opto/phase.hpp ! src/share/vm/opto/phaseX.hpp + src/share/vm/opto/stringopts.cpp + src/share/vm/opto/stringopts.hpp ! src/share/vm/opto/type.hpp ! src/share/vm/runtime/globals.cpp ! src/share/vm/runtime/globals_extension.hpp ! src/share/vm/utilities/growableArray.hpp Changeset: bd12fff78df5 Author: cfang Date: 2009-11-25 12:09 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/bd12fff78df5 6904191: OptimizeStringConcat should be product instead of experimental Summary: Make OptimizeStringConcat a product VM option(contributed by never) Reviewed-by: never ! src/share/vm/opto/c2_globals.hpp Changeset: facbc74580c3 Author: iveresov Date: 2009-12-01 22:11 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/facbc74580c3 Merge ! src/share/vm/classfile/systemDictionary.hpp Changeset: 8b22f86d1740 Author: cfang Date: 2009-12-02 13:29 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/8b22f86d1740 6901572: JVM 1.6.16 crash on loops: assert(has_node(i),"") Summary: Skip the secondary induction variable handling if it is dead Reviewed-by: never, kvn ! src/share/vm/opto/loopnode.cpp + test/compiler/6901572/Test.java Changeset: 5f932a151fd4 Author: johnc Date: 2009-11-06 11:10 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/5f932a151fd4 6895788: G1: SATB and update buffer allocation code allocates too much space Summary: The type in the NEW_C_HEAP_ARRRY and FREE_C_HEAP_ARRAY calls in the buffer allocation code was changed from void* to char as the size argument had already been mulitipled by the byte size of an object pointer. Reviewed-by: ysr, tonyp ! src/share/vm/gc_implementation/g1/ptrQueue.cpp Changeset: 0e2d7ae2bc67 Author: jmasa Date: 2009-11-10 11:32 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/0e2d7ae2bc67 6898857: [Regression] -XX:NewRatio with -XX:+UseConcMarkSweepGC causes fatal error Summary: Use CollectorPolicy information instead of MaxNewSize Reviewed-by: ysr, jcoomes ! src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp Changeset: 89f1b9ae8991 Author: ysr Date: 2009-11-13 11:55 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/89f1b9ae8991 6898948: G1: forensic instrumentation for out-of-bounds recent_avg_pause_time_ratio() Summary: Added instrumentation and (temporary) assert in non-product mode; clipped the value when found out-of-bounds in product mode. Fix of original issue will follow collection of data from this instrumentation. Reviewed-by: jcoomes, tonyp ! src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp ! src/share/vm/utilities/numberSeq.cpp ! src/share/vm/utilities/numberSeq.hpp Changeset: 23b9a8d315fc Author: ysr Date: 2009-11-19 10:19 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/23b9a8d315fc 6902701: G1: protect debugging code related to 6898948 with a debug flag Summary: Protected stats dump with a new develop flag; other than for the dump, reconciled product and non-product behaviour in face of the error. Reviewed-by: tonyp ! src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp ! src/share/vm/gc_implementation/g1/g1_globals.hpp Changeset: 3fc996d4edd2 Author: ysr Date: 2009-11-19 13:43 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/3fc996d4edd2 6902303: G1: ScavengeALot should cause an incremental, rather than a full, collection Summary: ScavengeALot now causes an incremental (but possibly partially young, in the G1 sense) collection. Some such collections may be abandoned on account of MMU specs. Band-aided a native leak associated with abandoned pauses, as well as an MMU tracker overflow related to frequent scavenge events in the face of a large MMU denominator interval; the latter is protected by a product flag that defaults to false. Reviewed-by: tonyp ! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp ! src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp ! src/share/vm/gc_implementation/g1/g1MMUTracker.cpp ! src/share/vm/gc_implementation/g1/g1MMUTracker.hpp ! src/share/vm/gc_implementation/g1/g1_globals.hpp ! src/share/vm/gc_implementation/g1/vm_operations_g1.cpp ! src/share/vm/gc_implementation/g1/vm_operations_g1.hpp ! src/share/vm/memory/sharedHeap.hpp Changeset: db0d5eba9d20 Author: tonyp Date: 2009-11-20 14:47 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC Summary: It introduces the necessary memory pools for G1. Reviewed-by: mchung, ysr ! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp ! src/share/vm/gc_implementation/includeDB_gc_g1 + src/share/vm/services/g1MemoryPool.cpp + src/share/vm/services/g1MemoryPool.hpp ! src/share/vm/services/memoryManager.cpp ! src/share/vm/services/memoryManager.hpp ! src/share/vm/services/memoryService.cpp ! src/share/vm/services/memoryService.hpp Changeset: fa357420e7d2 Author: johnc Date: 2009-11-24 15:19 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/fa357420e7d2 6899058: G1: Internal error in ptrQueue.cpp:201 in nightly tests Summary: Fixes a race on the dirty card queue completed buffer list between worker thread(s) performing a flush of a deferred store barrier (enqueueing a newly completed buffer) and worker thread(s) in the RSet updating code claiming completed buffers. Removed the routine that removes elements from the completed update buffer queue using a CAS. Reviewed-by: ysr, tonyp ! src/share/vm/gc_implementation/g1/dirtyCardQueue.cpp ! src/share/vm/gc_implementation/g1/dirtyCardQueue.hpp Changeset: 6aa7255741f3 Author: ysr Date: 2009-12-03 15:01 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/6aa7255741f3 6906727: UseCompressedOops: some card-marking fixes related to object arrays Summary: Introduced a new write_ref_array(HeapWords* start, size_t count) method that does the requisite MemRegion range calculation so (some of the) clients of the erstwhile write_ref_array(MemRegion mr) do not need to worry. This removed all external uses of array_size(), which was also simplified and made private. Asserts were added to catch other possible issues. Further, less essential, fixes stemming from this investigation are deferred to CR 6904516 (to follow shortly in hs17). Reviewed-by: kvn, coleenp, jmasa ! src/share/vm/classfile/javaClasses.cpp ! src/share/vm/includeDB_core ! src/share/vm/memory/barrierSet.cpp ! src/share/vm/memory/barrierSet.hpp ! src/share/vm/memory/barrierSet.inline.hpp ! src/share/vm/memory/cardTableModRefBS.cpp ! src/share/vm/oops/objArrayKlass.cpp ! src/share/vm/oops/objArrayOop.hpp Changeset: ed52bcc32739 Author: tonyp Date: 2009-12-04 07:44 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/ed52bcc32739 6880903: G1: G1 reports incorrect Runtime.maxMemory() Summary: G1 reports committed memory instead of reserved memory from the Runtime.maxMemory() method Reviewed-by: ysr, jmasa ! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp ! src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp ! src/share/vm/services/g1MemoryPool.cpp ! src/share/vm/services/g1MemoryPool.hpp Changeset: afc30fccf324 Author: tonyp Date: 2009-12-04 07:44 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/afc30fccf324 6906565: G1: deal with compilation warning in g1MemoryPool.hpp Summary: size_t max_size() hides size_t max_size() const. Reviewed-by: jmasa, ysr ! src/share/vm/services/g1MemoryPool.cpp ! src/share/vm/services/g1MemoryPool.hpp Changeset: 9118860519b6 Author: tonyp Date: 2009-12-07 14:22 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/9118860519b6 6904967: G1: some CollectionUsageThreshold tests fail Summary: ensure that max and committed are non-zero (currently: at least as large as the region size). Reviewed-by: iveresov, mchung ! src/share/vm/services/g1MemoryPool.cpp Changeset: 7bfd295ec074 Author: ysr Date: 2009-12-08 15:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/7bfd295ec074 6908208: UseCompressedOops: array_size() returns incorrect size for MAX_INT object array following 6906727 Summary: In array_size() cast to an unsigned to avoid overflow of intermediate value. Reviewed-by: kvn, tonyp, jmasa, jcoomes, coleenp ! src/share/vm/oops/objArrayOop.hpp Changeset: 84a2da7f454c Author: jmasa Date: 2009-12-11 08:39 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/84a2da7f454c Merge ! src/share/vm/classfile/javaClasses.cpp ! src/share/vm/includeDB_core Changeset: 74e00f62c726 Author: trims Date: 2009-12-11 16:38 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/74e00f62c726 Merge Changeset: 61b46f7853d4 Author: trims Date: 2009-12-22 16:32 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/61b46f7853d4 Merge Changeset: c5d3d979ae27 Author: never Date: 2009-12-08 16:27 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c5d3d979ae27 6908167: jbb2005, OptimizeStringConcat causes assert in EA Reviewed-by: kvn ! src/share/vm/opto/graphKit.cpp Changeset: f96a1a986f7b Author: kvn Date: 2009-12-09 16:40 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis Summary: Add missing checks for MemBar nodes in EA. Reviewed-by: never ! src/share/vm/opto/compile.cpp ! src/share/vm/opto/escape.cpp ! src/share/vm/opto/escape.hpp ! src/share/vm/opto/lcm.cpp ! src/share/vm/opto/macro.cpp ! src/share/vm/opto/memnode.cpp ! src/share/vm/opto/memnode.hpp ! src/share/vm/opto/node.hpp ! src/share/vm/opto/parse3.cpp + test/compiler/6895383/Test.java Changeset: 7fee0a6cc6d4 Author: kvn Date: 2009-12-09 19:50 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/7fee0a6cc6d4 6896727: nsk/logging/LoggingPermission/LoggingPermission/logperm002 fails with G1, EscapeAnalisys Summary: Move instance store's memory users to corresponding memory slices when updating its memory edge. Reviewed-by: never ! src/share/vm/opto/escape.cpp ! src/share/vm/opto/escape.hpp + test/compiler/6896727/Test.java Changeset: 6dc5471e0f66 Author: iveresov Date: 2009-12-15 17:19 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/6dc5471e0f66 Merge Changeset: 9dc2adf2cbe0 Author: johnc Date: 2009-12-09 23:51 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/9dc2adf2cbe0 6908215: G1: SEGV with G1PolicyVerbose=2 debug flag Summary: Change CollectionSetChooser::printSortedHeapRegions to handle null entries in _markedRegions growable array. Reviewed-by: jmasa, tonyp, iveresov ! src/share/vm/gc_implementation/g1/collectionSetChooser.cpp Changeset: 27f9477e879b Author: jmasa Date: 2009-12-11 09:30 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/27f9477e879b Merge Changeset: cf9a9a50e763 Author: jmasa Date: 2009-12-17 07:02 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/cf9a9a50e763 Merge Changeset: 22e4972db0a6 Author: trims Date: 2009-12-22 16:33 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/22e4972db0a6 Merge Changeset: 920875ae1277 Author: trims Date: 2009-12-22 16:35 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/920875ae1277 6912782: Bump the HS17 build number to 06 Summary: Update the HS17 build number to 06 Reviewed-by: jcoomes ! make/hotspot_version Changeset: 85f13cdfbc1d Author: twisti Date: 2009-12-16 12:48 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/85f13cdfbc1d 6829192: JSR 292 needs to support 64-bit x86 Summary: changes for method handles and invokedynamic Reviewed-by: kvn ! src/cpu/x86/vm/assembler_x86.cpp ! src/cpu/x86/vm/interp_masm_x86_32.cpp ! src/cpu/x86/vm/interp_masm_x86_64.cpp ! src/cpu/x86/vm/interp_masm_x86_64.hpp ! src/cpu/x86/vm/interpreter_x86_64.cpp ! src/cpu/x86/vm/methodHandles_x86.cpp ! src/cpu/x86/vm/stubGenerator_x86_64.cpp ! src/cpu/x86/vm/templateInterpreter_x86_64.cpp ! src/cpu/x86/vm/templateTable_x86_32.cpp ! src/cpu/x86/vm/templateTable_x86_64.cpp ! src/cpu/x86/vm/templateTable_x86_64.hpp ! src/share/vm/classfile/classFileParser.cpp Changeset: 032260830071 Author: never Date: 2009-12-16 22:15 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/032260830071 5057818: codecache full and compiler disabled in bigapps fastdebug run Reviewed-by: kvn ! src/share/vm/code/nmethod.cpp ! src/share/vm/code/nmethod.hpp Changeset: 1ea456c6f2b7 Author: iveresov Date: 2009-12-22 17:56 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1ea456c6f2b7 Merge Changeset: 44f61c24ddab Author: iveresov Date: 2009-12-16 15:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/44f61c24ddab 6862387: tune concurrent refinement further Summary: Reworked the concurrent refinement: threads activation, feedback-based threshold adjustment, other miscellaneous fixes. Reviewed-by: apetrusenko, tonyp ! src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp ! src/share/vm/gc_implementation/g1/concurrentG1Refine.hpp ! src/share/vm/gc_implementation/g1/concurrentG1RefineThread.cpp ! src/share/vm/gc_implementation/g1/concurrentG1RefineThread.hpp ! src/share/vm/gc_implementation/g1/concurrentMark.cpp ! src/share/vm/gc_implementation/g1/dirtyCardQueue.cpp ! src/share/vm/gc_implementation/g1/dirtyCardQueue.hpp ! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp ! src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp ! src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp ! src/share/vm/gc_implementation/g1/g1_globals.hpp ! src/share/vm/gc_implementation/g1/ptrQueue.cpp ! src/share/vm/gc_implementation/g1/ptrQueue.hpp ! src/share/vm/gc_implementation/g1/satbQueue.cpp ! src/share/vm/gc_implementation/g1/satbQueue.hpp ! src/share/vm/gc_implementation/includeDB_gc_g1 Changeset: cc0ca4f00e89 Author: jmasa Date: 2009-12-22 22:35 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/cc0ca4f00e89 Merge Changeset: 7ac7d558e895 Author: jmasa Date: 2009-12-23 00:47 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/7ac7d558e895 Merge Changeset: 9749fbc4859b Author: trims Date: 2009-12-23 02:57 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/9749fbc4859b Merge Changeset: 4b966d9946a3 Author: mchung Date: 2009-11-25 08:37 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/4b966d9946a3 6888880: JKernel VM to inject the sun.jkernel.DownloadManager as a boot classloader hook Summary: Call sun.jkernel.DownloadManager.setBootClassLoaderHook during the kernel VM initialization Reviewed-by: alanb, coleenp, acorn ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/runtime/thread.cpp Changeset: 0018cf203583 Author: coleenp Date: 2009-12-02 07:59 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/0018cf203583 Merge Changeset: 95e9083cf4a7 Author: dholmes Date: 2009-12-01 22:29 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/95e9083cf4a7 6822370: ReentrantReadWriteLock: threads hung when there are no threads holding onto the lock (Netra x4450) Summary: This day one bug is caused by missing memory barriers in various Parker::park() paths that can result in lost wakeups and hangs. Reviewed-by: dice, acorn ! src/os/linux/vm/os_linux.cpp ! src/os/solaris/vm/os_solaris.cpp Changeset: 3115100553b5 Author: dholmes Date: 2009-12-02 20:32 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/3115100553b5 Merge Changeset: 547f81740344 Author: minqi Date: 2009-12-11 11:09 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/547f81740344 6361589: Print out stack trace for target thread of GC crash Summary: If GC crashed with java thread involved, print out the java stack trace in error report Reviewed-by: never, ysr, coleenp, dholmes ! src/share/vm/runtime/frame.cpp ! src/share/vm/runtime/globals.hpp ! src/share/vm/runtime/thread.cpp ! src/share/vm/runtime/thread.hpp ! src/share/vm/runtime/vmStructs.cpp ! src/share/vm/runtime/vmThread.cpp ! src/share/vm/runtime/vmThread.hpp ! src/share/vm/utilities/vmError.cpp Changeset: 9127aa69352e Author: dcubed Date: 2009-12-14 09:51 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/9127aa69352e 6648438: 4/4 src/share/vm/prims/jvmtiEnv.cpp:457 assert(phase == JVMTI_PHASE_LIVE,"sanity check") Summary: Return error on invalid JVMTI_PHASE instead of asserting. Reviewed-by: dholmes, ohair ! src/share/vm/prims/jvmtiEnv.cpp Changeset: 98cd9901c161 Author: dcubed Date: 2009-12-14 10:05 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14 Summary: If a JVMTI agent asks for version 1.0, then it should get version 1.0 semantics. Reviewed-by: dholmes, ohair ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/prims/jvmtiEnvBase.cpp ! src/share/vm/prims/jvmtiEnvBase.hpp ! src/share/vm/prims/jvmtiExport.cpp ! src/share/vm/prims/jvmtiExport.hpp ! src/share/vm/prims/jvmtiHpp.xsl Changeset: dcb15a6f342d Author: dcubed Date: 2009-12-14 13:26 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/dcb15a6f342d Merge ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/prims/jvmtiEnvBase.cpp ! src/share/vm/prims/jvmtiEnvBase.hpp ! src/share/vm/prims/jvmtiExport.cpp Changeset: 167c2986d91b Author: phh Date: 2009-12-16 12:54 -0500 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/167c2986d91b 6843629: Make current hotspot build part of jdk5 control build Summary: Source changes for older compilers plus makefile changes. Reviewed-by: xlu ! make/linux/makefiles/debug.make ! make/linux/makefiles/fastdebug.make ! make/linux/makefiles/jsig.make ! make/linux/makefiles/jvmg.make ! make/linux/makefiles/launcher.make ! make/linux/makefiles/saproc.make ! make/linux/makefiles/vm.make ! make/solaris/makefiles/debug.make ! make/solaris/makefiles/dtrace.make ! make/solaris/makefiles/fastdebug.make ! make/solaris/makefiles/jsig.make ! make/solaris/makefiles/jvmg.make ! make/solaris/makefiles/launcher.make ! make/solaris/makefiles/saproc.make ! make/solaris/makefiles/sparcWorks.make ! make/solaris/makefiles/vm.make ! src/os/linux/vm/os_linux.cpp ! src/os/solaris/dtrace/libjvm_db.c ! src/os/solaris/vm/os_solaris.cpp ! src/os/windows/vm/os_windows.cpp ! src/share/vm/ci/bcEscapeAnalyzer.hpp ! src/share/vm/code/dependencies.cpp ! src/share/vm/code/dependencies.hpp ! src/share/vm/memory/heap.cpp ! src/share/vm/memory/referenceProcessor.cpp ! src/share/vm/oops/instanceRefKlass.cpp ! src/share/vm/oops/oop.hpp ! src/share/vm/runtime/os.hpp Changeset: 2e8bdfdd3ba2 Author: xlu Date: 2009-12-16 13:16 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/2e8bdfdd3ba2 6899467: System property java.class.version out-of-sync with VM for jdk 5.0 with HS 16 in nightly build Reviewed-by: kvn, never, dholmes, ysr ! src/share/vm/classfile/classFileParser.cpp Changeset: d48983315b71 Author: xlu Date: 2009-12-16 13:19 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/d48983315b71 Merge Changeset: 933a3e806ce6 Author: xlu Date: 2009-12-16 14:27 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/933a3e806ce6 6895168: JCK api/signaturetest/sigtest.basic.html#basic test fails for jdk 5.0 with HS 16 in nightly build Reviewed-by: dholmes, acorn, jrose ! src/share/vm/oops/instanceKlass.cpp ! src/share/vm/oops/instanceKlass.hpp ! src/share/vm/prims/jvm.cpp Changeset: ba60f0a5d714 Author: xlu Date: 2009-12-16 15:44 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/ba60f0a5d714 Merge Changeset: 6952ed8677bf Author: xlu Date: 2009-12-17 01:19 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/6952ed8677bf Merge Changeset: a5a6adfca6ec Author: trims Date: 2009-12-23 03:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a5a6adfca6ec Merge ! src/share/vm/classfile/classFileParser.cpp ! src/share/vm/classfile/vmSymbols.hpp Changeset: 1bc68593a110 Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1bc68593a110 Added tag jdk7-b79 for changeset a5a6adfca6ec ! .hgtags From lana.steuck at sun.com Fri Jan 15 16:42:16 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Sat, 16 Jan 2010 00:42:16 +0000 Subject: hg: jdk7/tl/jaxp: Added tag jdk7-b79 for changeset b1005c504358 Message-ID: <20100116004216.A2E9B417B2@hg.openjdk.java.net> Changeset: 9219574db593 Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/9219574db593 Added tag jdk7-b79 for changeset b1005c504358 ! .hgtags From lana.steuck at sun.com Fri Jan 15 16:42:22 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Sat, 16 Jan 2010 00:42:22 +0000 Subject: hg: jdk7/tl/jaxws: Added tag jdk7-b79 for changeset c08894f5b6e5 Message-ID: <20100116004222.80255417B3@hg.openjdk.java.net> Changeset: 447767dee56a Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/447767dee56a Added tag jdk7-b79 for changeset c08894f5b6e5 ! .hgtags From lana.steuck at sun.com Fri Jan 15 16:42:38 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Sat, 16 Jan 2010 00:42:38 +0000 Subject: hg: jdk7/tl/jdk: 7 new changesets Message-ID: <20100116004451.ACEFC417B4@hg.openjdk.java.net> Changeset: 9c352f7ed4a3 Author: jrose Date: 2009-10-21 23:19 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9c352f7ed4a3 6891770: JSR 292 API needs initial unit tests Summary: backport working mlvm regression test to M3 implementation of JSR 292; requires jtreg 4.1 Reviewed-by: twisti + test/java/dyn/MethodHandlesTest.java Changeset: fc3d21b50545 Author: jrose Date: 2010-01-06 16:50 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/fc3d21b50545 Merge Changeset: dbcf6cafa65c Author: jrose Date: 2010-01-07 16:16 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/dbcf6cafa65c 6914665: update jdk code for JSR 292 (post 6858164) Summary: Fill in missing API implementations, fix numerous bugs, adjust APIs towards EG design. Reviewed-by: twisti ! src/share/classes/java/dyn/CallSite.java ! src/share/classes/java/dyn/InvokeDynamic.java ! src/share/classes/java/dyn/InvokeDynamicBootstrapError.java ! src/share/classes/java/dyn/JavaMethodHandle.java ! src/share/classes/java/dyn/Linkage.java ! src/share/classes/java/dyn/LinkagePermission.java ! src/share/classes/java/dyn/MethodHandle.java ! src/share/classes/java/dyn/MethodHandles.java ! src/share/classes/java/dyn/MethodType.java ! src/share/classes/java/dyn/package-info.java ! src/share/classes/sun/dyn/AdapterMethodHandle.java ! src/share/classes/sun/dyn/BoundMethodHandle.java ! src/share/classes/sun/dyn/CallSiteImpl.java ! src/share/classes/sun/dyn/FilterGeneric.java ! src/share/classes/sun/dyn/FilterOneArgument.java ! src/share/classes/sun/dyn/FromGeneric.java ! src/share/classes/sun/dyn/Invokers.java ! src/share/classes/sun/dyn/MemberName.java ! src/share/classes/sun/dyn/MethodHandleImpl.java ! src/share/classes/sun/dyn/MethodHandleNatives.java ! src/share/classes/sun/dyn/MethodTypeImpl.java + src/share/classes/sun/dyn/SpreadGeneric.java ! src/share/classes/sun/dyn/ToGeneric.java ! src/share/classes/sun/dyn/empty/Empty.java + src/share/classes/sun/dyn/util/BytecodeDescriptor.java ! src/share/classes/sun/dyn/util/BytecodeName.java - src/share/classes/sun/dyn/util/BytecodeSignature.java ! src/share/classes/sun/dyn/util/ValueConversions.java ! src/share/classes/sun/dyn/util/VerifyAccess.java ! src/share/classes/sun/dyn/util/VerifyType.java ! src/share/classes/sun/dyn/util/Wrapper.java ! test/java/dyn/MethodHandlesTest.java Changeset: 918920710d65 Author: jcoomes Date: 2010-01-13 15:16 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/918920710d65 Merge - src/share/classes/sun/dyn/util/BytecodeSignature.java Changeset: 756ab2266ffb Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/756ab2266ffb Added tag jdk7-b79 for changeset 918920710d65 ! .hgtags Changeset: b428c8f80209 Author: jgodinez Date: 2010-01-15 09:06 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/b428c8f80209 6915906: tests in closed/javax/print/ should not be calling System.exit() Reviewed-by: igor, prr ! test/ProblemList.txt + test/javax/print/DialogMargins.java + test/javax/print/StreamPrintingOrientation.java + test/javax/print/attribute/AttributeTest.java + test/javax/print/attribute/ServiceDialogTest.java ! test/javax/print/attribute/SidesPageRangesTest.java Changeset: 64f7b789aecc Author: lana Date: 2010-01-15 15:36 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/64f7b789aecc Merge - src/share/classes/sun/dyn/util/BytecodeSignature.java From lana.steuck at sun.com Fri Jan 15 16:49:29 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Sat, 16 Jan 2010 00:49:29 +0000 Subject: hg: jdk7/tl/langtools: 2 new changesets Message-ID: <20100116004934.E6A48417B6@hg.openjdk.java.net> Changeset: f0074aa48d4e Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/f0074aa48d4e Added tag jdk7-b79 for changeset ac5b4c5644ce ! .hgtags Changeset: a84062774f0e Author: lana Date: 2010-01-15 15:37 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/a84062774f0e Merge From coleen.phillimore at sun.com Fri Jan 15 16:58:44 2010 From: coleen.phillimore at sun.com (coleen.phillimore at sun.com) Date: Sat, 16 Jan 2010 00:58:44 +0000 Subject: hg: jdk7/hotspot-rt/hotspot: 17 new changesets Message-ID: <20100116005938.3A264417B9@hg.openjdk.java.net> Changeset: e018e6884bd8 Author: ysr Date: 2009-12-23 09:23 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation Summary: Autonomic per-worker free block cache sizing, tunable coalition policies, fixes to per-size block statistics, retuned gain and bandwidth of some feedback loop filters to allow quicker reactivity to abrupt changes in ambient demand, and other heuristics to reduce fragmentation of the CMS old gen. Also tightened some assertions, including those related to locking. Reviewed-by: jmasa ! src/share/vm/gc_implementation/concurrentMarkSweep/binaryTreeDictionary.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/binaryTreeDictionary.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/cmsLockVerifier.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/cmsLockVerifier.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeBlockDictionary.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeList.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeList.hpp ! src/share/vm/gc_implementation/includeDB_gc_concurrentMarkSweep ! src/share/vm/gc_implementation/includeDB_gc_serial ! src/share/vm/gc_implementation/parNew/parNewGeneration.cpp ! src/share/vm/gc_implementation/parNew/parNewGeneration.hpp ! src/share/vm/gc_implementation/shared/allocationStats.hpp ! src/share/vm/gc_implementation/shared/gcUtil.cpp ! src/share/vm/gc_implementation/shared/gcUtil.hpp ! src/share/vm/includeDB_gc_parallel ! src/share/vm/memory/defNewGeneration.cpp ! src/share/vm/memory/generation.hpp ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/globals.hpp ! src/share/vm/services/classLoadingService.cpp Changeset: 504830073409 Author: jmasa Date: 2010-01-04 07:58 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/504830073409 Merge ! src/share/vm/runtime/globals.hpp Changeset: 75bd253e25dd Author: ysr Date: 2010-01-04 14:51 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/75bd253e25dd 6637203: Classunloading messages go to stdout rather than Xloggc file, causing hangs when stdout is closed Summary: Decoupled TraceClassUnloading from verbose:gc, JVMTI_VERBOSE_GC and PrintGC[Details], making it settable in a manner identical to TraceClassLoading. Reverted an inadvertent change of TraceClassUnloading output in a previous changeset from gclog back to tty. Reviewed-by: coleenp, dholmes, jmasa, poonam ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/runtime/arguments.cpp ! src/share/vm/services/classLoadingService.cpp Changeset: 05b775309e59 Author: jmasa Date: 2010-01-07 08:14 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/05b775309e59 6912018: CMS: guarantee(head() != 0,"The head of the list cannot be NULL") Summary: Block too small to split was not correctly putback to free lists. Reviewed-by: ysr ! src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp Changeset: 0579c695832f Author: ysr Date: 2010-01-09 09:01 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/0579c695832f Merge ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/runtime/arguments.cpp Changeset: f62a22282a47 Author: kvn Date: 2010-01-07 16:24 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/f62a22282a47 6914622: Print values of all flags for product VM Summary: Change the flag -XX:+PrintFlagsFinal to product and add new product flag -XX:+PrintFlagsInitial. Reviewed-by: phh, ysr Contributed-by: gbenson at redhat.com ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/globals.cpp ! src/share/vm/runtime/globals.hpp Changeset: 1271af4ec18c Author: kvn Date: 2010-01-07 16:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/1271af4ec18c 6912517: JIT bug compiles out (and stops running) code that needs to be run. Causes NPE. Summary: Add missing check that value is used in memory expression in instructions with embedded load. Reviewed-by: never, jrose ! src/share/vm/opto/lcm.cpp + test/compiler/6912517/Test.java Changeset: cd37471eaecc Author: twisti Date: 2010-01-08 11:09 +0100 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters Summary: Put generated MH adapter in InvokeDynamic/MethodHandle classes to be able to indentify them easily in the compiler. Reviewed-by: kvn, never, jrose ! src/share/vm/ci/ciMethod.cpp ! src/share/vm/ci/ciMethod.hpp ! src/share/vm/classfile/systemDictionary.hpp ! src/share/vm/includeDB_core ! src/share/vm/oops/methodOop.cpp ! src/share/vm/oops/methodOop.hpp ! src/share/vm/opto/library_call.cpp ! src/share/vm/prims/methodHandleWalk.cpp ! src/share/vm/prims/methodHandleWalk.hpp ! src/share/vm/runtime/reflection.cpp ! src/share/vm/runtime/vframe.cpp Changeset: bea7a22a6f79 Author: kvn Date: 2010-01-08 09:42 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/bea7a22a6f79 6915110: IfNode::up_one_dom moves beyond RootNode bug in src/share/vm/opto/ifnode.cpp Summary: Check RootNode before check Loop in IfNode::up_one_dom(). Reviewed-by: never Contributed-by: kevin.brown at sun.com ! src/share/vm/opto/ifnode.cpp Changeset: 174ade00803b Author: kvn Date: 2010-01-08 09:51 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/174ade00803b 6910484: incorrect integer optimization (loosing and op-r in a given example) Summary: Remove AND operation only if mask is equal to shift. Reviewed-by: never ! src/share/vm/opto/divnode.cpp + test/compiler/6910484/Test.java Changeset: 4e6abf09f540 Author: jrose Date: 2010-01-08 13:47 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode Summary: More informative disassembly in product mode. Also, a more consistent CompileCommand syntax. Reviewed-by: never ! src/share/vm/code/codeBlob.hpp ! src/share/vm/code/nmethod.cpp ! src/share/vm/code/nmethod.hpp ! src/share/vm/compiler/compilerOracle.cpp ! src/share/vm/compiler/disassembler.cpp ! src/share/vm/includeDB_core ! src/share/vm/memory/genCollectedHeap.cpp ! src/share/vm/oops/arrayKlassKlass.cpp ! src/share/vm/oops/arrayKlassKlass.hpp ! src/share/vm/oops/compiledICHolderKlass.cpp ! src/share/vm/oops/compiledICHolderKlass.hpp ! src/share/vm/oops/constMethodKlass.cpp ! src/share/vm/oops/constMethodKlass.hpp ! src/share/vm/oops/constantPoolKlass.cpp ! src/share/vm/oops/constantPoolKlass.hpp ! src/share/vm/oops/cpCacheKlass.cpp ! src/share/vm/oops/cpCacheKlass.hpp ! src/share/vm/oops/instanceKlass.cpp ! src/share/vm/oops/instanceKlass.hpp ! src/share/vm/oops/instanceKlassKlass.cpp ! src/share/vm/oops/instanceKlassKlass.hpp ! src/share/vm/oops/klass.cpp ! src/share/vm/oops/klass.hpp ! src/share/vm/oops/klassKlass.cpp ! src/share/vm/oops/klassKlass.hpp ! src/share/vm/oops/methodDataKlass.cpp ! src/share/vm/oops/methodDataKlass.hpp ! src/share/vm/oops/methodKlass.cpp ! src/share/vm/oops/methodKlass.hpp ! src/share/vm/oops/objArrayKlass.cpp ! src/share/vm/oops/objArrayKlass.hpp ! src/share/vm/oops/objArrayKlassKlass.cpp ! src/share/vm/oops/objArrayKlassKlass.hpp ! src/share/vm/oops/oop.cpp ! src/share/vm/oops/symbolKlass.cpp ! src/share/vm/oops/symbolKlass.hpp ! src/share/vm/oops/typeArrayKlassKlass.cpp ! src/share/vm/oops/typeArrayKlassKlass.hpp ! src/share/vm/runtime/arguments.cpp Changeset: 136ac23d6ded Author: jrose Date: 2010-01-08 15:17 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/136ac23d6ded Merge Changeset: c3b315a0d58a Author: jrose Date: 2010-01-08 13:58 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM Summary: Put all inline-related switches into product mode, to allow tuning by dynamic language implementors. Reviewed-by: twisti, kvn ! src/share/vm/opto/bytecodeInfo.cpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/parse.hpp ! src/share/vm/runtime/globals.hpp Changeset: f2e64cfc2020 Author: jrose Date: 2010-01-08 18:27 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/f2e64cfc2020 Merge Changeset: 5b06c5db3e89 Author: jrose Date: 2010-01-08 22:02 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/5b06c5db3e89 Merge Changeset: f24201449cac Author: never Date: 2010-01-09 00:59 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad Reviewed-by: kvn, jrose ! src/cpu/sparc/vm/sparc.ad + test/compiler/6909839/Test6909839.java Changeset: 1fc01a2425ce Author: iveresov Date: 2010-01-12 13:54 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/1fc01a2425ce Merge ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/globals.hpp From christopher.hegarty at sun.com Mon Jan 18 06:02:37 2010 From: christopher.hegarty at sun.com (christopher.hegarty at sun.com) Date: Mon, 18 Jan 2010 14:02:37 +0000 Subject: hg: jdk7/tl/jdk: 6916890: (sctp) SctpChannel.send may cause IAE if given a heap buffer with an offset Message-ID: <20100118140339.1638341B9C@hg.openjdk.java.net> Changeset: 680d7d312a30 Author: chegar Date: 2010-01-18 14:01 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/680d7d312a30 6916890: (sctp) SctpChannel.send may cause IAE if given a heap buffer with an offset Reviewed-by: alanb ! src/solaris/classes/sun/nio/ch/SctpChannelImpl.java ! src/solaris/classes/sun/nio/ch/SctpMultiChannelImpl.java ! test/com/sun/nio/sctp/SctpChannel/Send.java ! test/com/sun/nio/sctp/SctpMultiChannel/Send.java From christopher.hegarty at sun.com Mon Jan 18 06:56:49 2010 From: christopher.hegarty at sun.com (christopher.hegarty at sun.com) Date: Mon, 18 Jan 2010 14:56:49 +0000 Subject: hg: jdk7/tl/jdk: 6917317: (sctp) Remove dependency on handleSocketError Message-ID: <20100118145708.8291541BAE@hg.openjdk.java.net> Changeset: e0870a19b09e Author: chegar Date: 2010-01-18 14:56 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/e0870a19b09e 6917317: (sctp) Remove dependency on handleSocketError Reviewed-by: alanb ! src/solaris/native/sun/nio/ch/SctpNet.c ! test/com/sun/nio/sctp/SctpChannel/Connect.java From alan.bateman at sun.com Mon Jan 18 07:26:04 2010 From: alan.bateman at sun.com (alan.bateman at sun.com) Date: Mon, 18 Jan 2010 15:26:04 +0000 Subject: hg: jdk7/tl/jdk: 6917021: (file) copyTo/moveTo can overrwrite existing file when target associated with custom provider Message-ID: <20100118152623.49B9141BB8@hg.openjdk.java.net> Changeset: 42894ae6671c Author: alanb Date: 2010-01-18 15:21 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/42894ae6671c 6917021: (file) copyTo/moveTo can overrwrite existing file when target associated with custom provider Reviewed-by: chegar ! src/share/classes/sun/nio/fs/AbstractPath.java ! test/java/nio/file/Path/CopyAndMove.java + test/java/nio/file/Path/PassThroughFileSystem.java ! test/java/nio/file/TestUtil.java From ptisnovs at redhat.com Mon Jan 18 08:54:07 2010 From: ptisnovs at redhat.com (ptisnovs at redhat.com) Date: Mon, 18 Jan 2010 16:54:07 +0000 Subject: hg: jdk7/tl/jdk: 6917663: test/java/security/Provider/Turkish.java not samevm friendly Message-ID: <20100118165426.4B6B241BCF@hg.openjdk.java.net> Changeset: 7f2b99bd5123 Author: ptisnovs Date: 2010-01-18 17:53 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/7f2b99bd5123 6917663: test/java/security/Provider/Turkish.java not samevm friendly Summary: Added othervm flag to ensure that this test will run in isolation. Reviewed-by: alanb ! test/java/security/Provider/Turkish.java From mandy.chung at sun.com Mon Jan 18 15:24:16 2010 From: mandy.chung at sun.com (mandy.chung at sun.com) Date: Mon, 18 Jan 2010 23:24:16 +0000 Subject: hg: jdk7/tl/jdk: 6916217: make/modules/Makefile requires ALT_JDK_IMPORT_PATH Message-ID: <20100118232435.C6F1841C37@hg.openjdk.java.net> Changeset: 056d88d0f4d4 Author: mchung Date: 2010-01-18 15:23 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/056d88d0f4d4 6916217: make/modules/Makefile requires ALT_JDK_IMPORT_PATH Summary: build modules not depending on ALT_JDK_IMPORT_PATH being set Reviewed-by: alanb ! make/common/Defs.gmk ! make/common/Modules.gmk ! make/modules/Makefile ! make/modules/optional.depconfig ! make/modules/tools/Makefile From weijun.wang at sun.com Mon Jan 18 19:45:27 2010 From: weijun.wang at sun.com (weijun.wang at sun.com) Date: Tue, 19 Jan 2010 03:45:27 +0000 Subject: hg: jdk7/tl/jdk: 6917791: KeyTabEntry, when the byte value smaller then 16, the string drop '0' Message-ID: <20100119034546.1648241C7D@hg.openjdk.java.net> Changeset: 8339fd49bf6b Author: weijun Date: 2010-01-19 11:43 +0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/8339fd49bf6b 6917791: KeyTabEntry, when the byte value smaller then 16, the string drop '0' Reviewed-by: xuelei ! src/share/classes/sun/security/krb5/internal/ktab/KeyTabEntry.java + test/sun/security/krb5/ktab/KeyString.java From jonathan.gibbons at sun.com Tue Jan 19 14:29:49 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Tue, 19 Jan 2010 22:29:49 +0000 Subject: hg: jdk7/tl/langtools: 6917067: refactor type annotations code from TransTypes into new TypeAnnotations class Message-ID: <20100119222957.6AB1341DBA@hg.openjdk.java.net> Changeset: f23b985beb78 Author: jjg Date: 2010-01-19 14:28 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/f23b985beb78 6917067: refactor type annotations code from TransTypes into new TypeAnnotations class Reviewed-by: jjg, darcy Contributed-by: mali at csail.mit.edu, mernst at cs.washington.edu + src/share/classes/com/sun/tools/javac/code/TypeAnnotations.java ! src/share/classes/com/sun/tools/javac/comp/TransTypes.java From xuelei.fan at sun.com Wed Jan 20 05:44:32 2010 From: xuelei.fan at sun.com (xuelei.fan at sun.com) Date: Wed, 20 Jan 2010 13:44:32 +0000 Subject: hg: jdk7/tl/jdk: 6862064: incorrect implementation of PKIXParameters.clone() Message-ID: <20100120134513.2F5B541EB0@hg.openjdk.java.net> Changeset: dca3a251a001 Author: xuelei Date: 2010-01-20 21:38 +0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/dca3a251a001 6862064: incorrect implementation of PKIXParameters.clone() Reviewed-by: weijun, mullan ! src/share/classes/java/security/cert/PKIXParameters.java From daniel.daugherty at sun.com Wed Jan 20 13:10:36 2010 From: daniel.daugherty at sun.com (daniel.daugherty at sun.com) Date: Wed, 20 Jan 2010 21:10:36 +0000 Subject: hg: jdk7/hotspot-rt/hotspot: 2 new changesets Message-ID: <20100120211042.63F2B41F2C@hg.openjdk.java.net> Changeset: 7fbf850d87b7 Author: dcubed Date: 2010-01-13 09:39 -0700 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining Summary: Add support for additional implementation specific info to the JVM/TI CompiledMethodLoad event via the compile_info parameter. Reviewed-by: never, ohair, tbell, tdeneau Contributed-by: Vasanth Venkatachalam ! make/Makefile ! make/defs.make + src/share/vm/code/jvmticmlr.h ! src/share/vm/includeDB_core ! src/share/vm/prims/jvmtiExport.cpp Changeset: 3908ad124838 Author: dcubed Date: 2010-01-20 11:32 -0700 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/3908ad124838 Merge ! make/Makefile ! make/defs.make ! src/share/vm/includeDB_core ! src/share/vm/prims/jvmtiExport.cpp From daniel.daugherty at sun.com Wed Jan 20 15:19:50 2010 From: daniel.daugherty at sun.com (daniel.daugherty at sun.com) Date: Wed, 20 Jan 2010 23:19:50 +0000 Subject: hg: jdk7/tl/jdk: 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining Message-ID: <20100120232009.5BE3B41F53@hg.openjdk.java.net> Changeset: b19cd193245e Author: dcubed Date: 2010-01-20 12:09 -0700 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/b19cd193245e 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining Summary: Add support for additional implementation specific info to the JVM/TI CompiledMethodLoad event via the compile_info parameter. Reviewed-by: never, ohair, tbell, tdeneau Contributed-by: Vasanth Venkatachalam ! make/common/shared/Sanity.gmk ! make/java/jvm/Makefile ! make/mkdemo/jvmti/Makefile ! make/mkdemo/jvmti/README.txt + make/mkdemo/jvmti/compiledMethodLoad/Makefile + src/share/demo/jvmti/compiledMethodLoad/README.txt + src/share/demo/jvmti/compiledMethodLoad/compiledMethodLoad.c + src/share/demo/jvmti/compiledMethodLoad/sample.makefile.txt ! src/share/demo/jvmti/index.html + src/share/javavm/export/jvmticmlr.h + test/demo/jvmti/compiledMethodLoad/CompiledMethodLoadTest.java ! test/demo/jvmti/heapTracker/HeapTrackerTest.java ! test/demo/jvmti/hprof/CpuTimesDefineClassTest.java ! test/demo/jvmti/hprof/CpuTimesTest.java ! test/demo/jvmti/minst/MinstTest.java ! test/demo/jvmti/mtrace/TraceJFrame.java From jonathan.gibbons at sun.com Wed Jan 20 16:13:27 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Thu, 21 Jan 2010 00:13:27 +0000 Subject: hg: jdk7/tl/langtools: 6918127: improve handling of TypeAnnotationPosition fields Message-ID: <20100121001329.CEC7541F61@hg.openjdk.java.net> Changeset: 0eaf89e08564 Author: jjg Date: 2010-01-20 16:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/0eaf89e08564 6918127: improve handling of TypeAnnotationPosition fields Reviewed-by: jjg, darcy Contributed-by: mali at csail.mit.edu, mernst at cs.washington.edu ! src/share/classes/com/sun/tools/classfile/ExtendedAnnotation.java ! src/share/classes/com/sun/tools/javac/code/TypeAnnotationPosition.java ! src/share/classes/com/sun/tools/javac/jvm/Code.java ! src/share/classes/com/sun/tools/javac/jvm/Gen.java From Daniel.Daugherty at Sun.COM Wed Jan 20 17:30:32 2010 From: Daniel.Daugherty at Sun.COM (Daniel D. Daugherty) Date: Wed, 20 Jan 2010 18:30:32 -0700 Subject: code review request for JVM/TI CompiledMethodLoad event extension (6580131) In-Reply-To: <4B466100.6080402@sun.com> References: <4B466100.6080402@sun.com> Message-ID: <4B57AE38.1000300@sun.com> Greetings, The jvmticmlr.h stuff is in: - OpenJDK6 - JDK and HotSpot sides - JDK7 - JDK side - HSX17 - HotSpot side When HSX17-B08 pushes to JDK7, then the HotSpot side will be in JDK7 also. We'll be looking at the JDK6-Update train next... Dan Daniel D. Daugherty wrote: > Greetings, > > The folks at AMD Labs have been kind enough to provide an > extension to the JVM/TI CompileMethodLoad event in order > to provide additional information about in-lining. This > extension uses the existing (but previously unused) > compile_info paramter: > > http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#CompiledMethodLoad > > > Vasanth and company provided the HotSpot code changes and > the original demo program. I just did the Makefile changes > to export the new jvmticmlr.h file in the HotSpot repo and > the integration of the demo program into JAVA_HOME/demo/jvmti > in the JDK repo. > > Here is the webrev for the OpenJDK6 version of the changes: > > http://cr.openjdk.java.net/~dcubed/6580131-webrev/0/ > > The OpenJDK7 version of these changes are not expected to be > very different from this version. > > For the Sun folks, the CCC request for adding the jvmticmlr.h > is almost final. I'm waiting for the VM-SQE team to agree that > the latest version addresses their review concerns, but I > think the St Petersburg team is on holiday at the moment. > > Any reviews are appreciated. > > Dan > -------------- next part -------------- An embedded message was scrubbed... From: Daniel.Daugherty at Sun.COM Subject: hg: jdk6/jdk6/hotspot: 2 new changesets Date: Wed, 20 Jan 2010 20:14:48 +0000 Size: 5551 Url: http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20100120/5eabda09/attachment-0004.nws -------------- next part -------------- An embedded message was scrubbed... From: Daniel.Daugherty at Sun.COM Subject: hg: jdk7/hotspot-rt/hotspot: 2 new changesets Date: Wed, 20 Jan 2010 21:10:36 +0000 Size: 5856 Url: http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20100120/5eabda09/attachment-0005.nws -------------- next part -------------- An embedded message was scrubbed... From: Daniel.Daugherty at Sun.COM Subject: hg: jdk6/jdk6/jdk: 2 new changesets Date: Wed, 20 Jan 2010 22:10:34 +0000 Size: 6011 Url: http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20100120/5eabda09/attachment-0006.nws -------------- next part -------------- An embedded message was scrubbed... From: Daniel.Daugherty at Sun.COM Subject: hg: jdk7/tl/jdk: 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining Date: Wed, 20 Jan 2010 23:19:50 +0000 Size: 6318 Url: http://mail.openjdk.java.net/pipermail/serviceability-dev/attachments/20100120/5eabda09/attachment-0007.nws From vincent.ryan at sun.com Thu Jan 21 16:01:21 2010 From: vincent.ryan at sun.com (vincent.ryan at sun.com) Date: Fri, 22 Jan 2010 00:01:21 +0000 Subject: hg: jdk7/tl/jdk: 2 new changesets Message-ID: <20100122000247.BA6A341483@hg.openjdk.java.net> Changeset: 117b245b5bb9 Author: vinnie Date: 2010-01-21 23:59 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/117b245b5bb9 6763530: Cannot decode PublicKey (Proider SunPKCS11, curve prime256v1) Reviewed-by: andrew ! src/share/classes/sun/security/pkcs11/P11ECKeyFactory.java ! src/share/classes/sun/security/pkcs11/P11Key.java Changeset: c94ac5522d01 Author: vinnie Date: 2010-01-22 00:02 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/c94ac5522d01 Merge From john.coomes at sun.com Thu Jan 21 21:48:48 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 22 Jan 2010 05:48:48 +0000 Subject: hg: jdk7/hotspot-rt: 3 new changesets Message-ID: <20100122054848.635D241514@hg.openjdk.java.net> Changeset: 432cbbdc44bc Author: andrew Date: 2010-01-07 23:17 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/rev/432cbbdc44bc 6914986: Make sure openjdk doc generation not turned off with JDK_UPDATE_VERSION Summary: Only turn off documentation for updates when not building OpenJDK Reviewed-by: ohair ! make/Defs-internal.gmk Changeset: a3242906c774 Author: mikejwre Date: 2010-01-20 17:09 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/rev/a3242906c774 Merge Changeset: 8403096d1fe7 Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/rev/8403096d1fe7 Added tag jdk7-b80 for changeset a3242906c774 ! .hgtags From john.coomes at sun.com Thu Jan 21 21:48:55 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 22 Jan 2010 05:48:55 +0000 Subject: hg: jdk7/hotspot-rt/corba: 3 new changesets Message-ID: <20100122054902.0733641515@hg.openjdk.java.net> Changeset: d4c077d44a64 Author: andrew Date: 2010-01-16 01:04 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/corba/rev/d4c077d44a64 6917485: Corba doc warnings Summary: Fix warnings generated by javadoc Reviewed-by: darcy ! src/share/classes/com/sun/tools/corba/se/idl/constExpr/Expression.java ! src/share/classes/javax/rmi/PortableRemoteObject.java ! src/share/classes/org/omg/CORBA/SetOverrideType.java ! src/share/classes/org/omg/CORBA/TCKind.java ! src/share/classes/org/omg/CORBA/UnknownUserException.java ! src/share/classes/org/omg/CORBA/portable/ServantObject.java ! src/share/classes/org/omg/CosNaming/nameservice.idl ! src/share/classes/org/omg/PortableInterceptor/Interceptors.idl Changeset: 0336e70ca0ae Author: mikejwre Date: 2010-01-20 17:09 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/corba/rev/0336e70ca0ae Merge Changeset: e08a42a2a94d Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/corba/rev/e08a42a2a94d Added tag jdk7-b80 for changeset 0336e70ca0ae ! .hgtags From john.coomes at sun.com Thu Jan 21 21:55:54 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 22 Jan 2010 05:55:54 +0000 Subject: hg: jdk7/hotspot-rt/jaxp: Added tag jdk7-b80 for changeset 9219574db593 Message-ID: <20100122055555.7281241519@hg.openjdk.java.net> Changeset: 204e59d488cd Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jaxp/rev/204e59d488cd Added tag jdk7-b80 for changeset 9219574db593 ! .hgtags From john.coomes at sun.com Thu Jan 21 21:56:01 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 22 Jan 2010 05:56:01 +0000 Subject: hg: jdk7/hotspot-rt/jaxws: Added tag jdk7-b80 for changeset 447767dee56a Message-ID: <20100122055602.09FF84151A@hg.openjdk.java.net> Changeset: f051045fe94a Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jaxws/rev/f051045fe94a Added tag jdk7-b80 for changeset 447767dee56a ! .hgtags From john.coomes at sun.com Thu Jan 21 21:57:32 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 22 Jan 2010 05:57:32 +0000 Subject: hg: jdk7/hotspot-rt/jdk: 27 new changesets Message-ID: <20100122060634.3BB694151E@hg.openjdk.java.net> Changeset: b428c8f80209 Author: jgodinez Date: 2010-01-15 09:06 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/b428c8f80209 6915906: tests in closed/javax/print/ should not be calling System.exit() Reviewed-by: igor, prr ! test/ProblemList.txt + test/javax/print/DialogMargins.java + test/javax/print/StreamPrintingOrientation.java + test/javax/print/attribute/AttributeTest.java + test/javax/print/attribute/ServiceDialogTest.java ! test/javax/print/attribute/SidesPageRangesTest.java Changeset: 9956e8d71e06 Author: tbell Date: 2009-12-18 09:40 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/9956e8d71e06 6899737: JDK build fails in make/java/jli because of _vsnprintf macro redefinition Summary: Use stdio.h instead when building with Visual Studio 2008 or later Reviewed-by: art, ohair ! src/share/native/java/util/zip/zlib-1.2.3/zutil.h Changeset: 39b9564ff01c Author: ohair Date: 2010-01-05 15:17 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/39b9564ff01c Merge Changeset: 447c9e535234 Author: ohair Date: 2010-01-13 15:37 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/447c9e535234 Merge Changeset: e0905e36766a Author: yhuang Date: 2009-12-06 22:18 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/e0905e36766a 6868106: Ukrainian currency has wrong format Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_uk.java ! src/share/classes/sun/util/resources/CurrencyNames_uk_UA.properties ! test/sun/text/resources/LocaleData Changeset: d9080b33ba74 Author: yhuang Date: 2009-12-08 21:14 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/d9080b33ba74 6610748: Dateformat - AM-PM indicator in Finnish appears to be from English Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_fi.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: ac9e284db030 Author: yhuang Date: 2009-12-08 21:19 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/ac9e284db030 6645271: Wrong date format for Croatian (hr) locale Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_hr_HR.java Changeset: 3ab178316aa0 Author: yhuang Date: 2009-12-08 21:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/3ab178316aa0 6609737: DateFormat incorrect for German locale Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_de.java ! src/share/classes/sun/util/resources/TimeZoneNames_de.java Changeset: 4910b580a725 Author: yhuang Date: 2009-12-08 21:30 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/4910b580a725 6507067: TimeZone country/area message error Reviewed-by: peytoia ! src/share/classes/sun/util/resources/TimeZoneNames_zh_TW.java Changeset: 06df47459ecf Author: yhuang Date: 2009-12-10 17:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/06df47459ecf 6873931: New Turkish currency since 2009 Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/CurrencyNames_tr_TR.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: ddc4a80f25f4 Author: yhuang Date: 2009-12-17 02:00 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/ddc4a80f25f4 6450945: The week day for Saturday and the first week day in Romania locale are incorrect Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_ro.java ! src/share/classes/sun/util/resources/CalendarData_ro.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: cd5d46887546 Author: yhuang Date: 2009-12-17 02:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/cd5d46887546 6645268: Country/language names with locale fi_FI are incorrect for FRANCE/FRENCH Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/LocaleNames_fi.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java ! test/sun/util/resources/Locale/Bug4429024.java Changeset: 946a0a09a477 Author: yhuang Date: 2009-12-17 02:28 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/946a0a09a477 6646611: Incorrect spelling of month name in locale for Belarusian language ("be", "BY") Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_be.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: e8fa2b2cb1e8 Author: yhuang Date: 2009-12-17 22:24 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/e8fa2b2cb1e8 6650730: Lithuanian locale date and number formats mismatch. Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_lt.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: e9b09f76d281 Author: yhuang Date: 2009-12-17 22:25 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/e9b09f76d281 6645405: Errors in Hungarian local-specific formatting. (L10N part of 6609703) Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_hu_HU.java Changeset: 3b78f3769688 Author: yhuang Date: 2009-12-20 19:31 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/3b78f3769688 6910489: Slovenia Locale, wrong firstDayOfWeek number Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/CalendarData_sl.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: b09e582d09bd Author: yhuang Date: 2009-12-20 19:49 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/b09e582d09bd 6573250: Java.util.Currency.getSymbol(Locale) returns wrong value when locale is not US. Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/CurrencyNames_en_CA.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: 7bf839e2e9ce Author: yhuang Date: 2009-12-24 15:37 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/7bf839e2e9ce 6870908: reopen bug 4244752: month names in Estonian should be lowercase Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_et.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: 1397ae8dc558 Author: yhuang Date: 2009-12-24 16:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/1397ae8dc558 6541350: TimeZone display names localization Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/TimeZoneNames_de.java ! src/share/classes/sun/util/resources/TimeZoneNames_es.java ! src/share/classes/sun/util/resources/TimeZoneNames_fr.java ! src/share/classes/sun/util/resources/TimeZoneNames_it.java ! src/share/classes/sun/util/resources/TimeZoneNames_ja.java ! src/share/classes/sun/util/resources/TimeZoneNames_ko.java ! src/share/classes/sun/util/resources/TimeZoneNames_sv.java ! src/share/classes/sun/util/resources/TimeZoneNames_zh_CN.java ! src/share/classes/sun/util/resources/TimeZoneNames_zh_TW.java Changeset: 2886607f8bc3 Author: yhuang Date: 2009-12-28 14:58 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/2886607f8bc3 6585666: Spanish language names not compliant with CLDR Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/LocaleNames_es.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: 5ec5337c0298 Author: yhuang Date: 2010-01-05 18:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/5ec5337c0298 6716626: Integrate contributed language and country names for NL Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/LocaleNames_nl.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: 8bf6b2173e9f Author: yhuang Date: 2010-01-06 17:52 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/8bf6b2173e9f 6914413: abbreviation name for November is not correct in be_BY Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_be.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: eea1cc096889 Author: yhuang Date: 2010-01-06 19:32 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/eea1cc096889 6821191: Timezone display name localization Reviewed-by: yhuang, ogino ! src/share/classes/sun/util/resources/TimeZoneNames_de.java ! src/share/classes/sun/util/resources/TimeZoneNames_es.java ! src/share/classes/sun/util/resources/TimeZoneNames_fr.java ! src/share/classes/sun/util/resources/TimeZoneNames_it.java ! src/share/classes/sun/util/resources/TimeZoneNames_ja.java ! src/share/classes/sun/util/resources/TimeZoneNames_ko.java ! src/share/classes/sun/util/resources/TimeZoneNames_sv.java ! src/share/classes/sun/util/resources/TimeZoneNames_zh_CN.java ! src/share/classes/sun/util/resources/TimeZoneNames_zh_TW.java Changeset: eff93f451501 Author: yhuang Date: 2010-01-11 23:25 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/eff93f451501 Merge - make/tools/CharsetMapping/DoubleByte-X.java - make/tools/CharsetMapping/SingleByte-X.java - src/share/classes/javax/swing/plaf/synth/DefaultMenuLayout.java - src/share/classes/sun/awt/ComponentAccessor.java - src/share/classes/sun/awt/WindowAccessor.java - src/share/classes/sun/security/provider/IdentityDatabase.java - src/share/classes/sun/security/provider/SystemIdentity.java - src/share/classes/sun/security/provider/SystemSigner.java - src/share/classes/sun/security/x509/X500Signer.java - src/share/classes/sun/security/x509/X509Cert.java - src/share/classes/sun/swing/plaf/synth/SynthUI.java - src/share/classes/sun/tools/jar/JarVerifierStream.java - src/share/classes/sun/util/CoreResourceBundleControl-XLocales.java - src/share/classes/sun/util/LocaleDataMetaInfo-XLocales.java - test/java/util/Formatter/Basic-X.java - test/sun/tools/native2ascii/test2 - test/tools/launcher/SolarisDataModel.sh - test/tools/launcher/SolarisRunpath.sh - test/tools/launcher/libraryCaller.c - test/tools/launcher/libraryCaller.h - test/tools/launcher/libraryCaller.java Changeset: d91c6bdcc852 Author: yhuang Date: 2010-01-17 18:42 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/d91c6bdcc852 Merge Changeset: 049cfaaa9a73 Author: mikejwre Date: 2010-01-20 17:11 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/049cfaaa9a73 Merge Changeset: 15815a54d930 Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/15815a54d930 Added tag jdk7-b80 for changeset 049cfaaa9a73 ! .hgtags From john.coomes at sun.com Thu Jan 21 22:10:46 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 22 Jan 2010 06:10:46 +0000 Subject: hg: jdk7/hotspot-rt/langtools: Added tag jdk7-b80 for changeset f0074aa48d4e Message-ID: <20100122061055.EF06D41520@hg.openjdk.java.net> Changeset: 250a580ab046 Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/250a580ab046 Added tag jdk7-b80 for changeset f0074aa48d4e ! .hgtags From christopher.hegarty at sun.com Mon Jan 25 07:43:28 2010 From: christopher.hegarty at sun.com (christopher.hegarty at sun.com) Date: Mon, 25 Jan 2010 15:43:28 +0000 Subject: hg: jdk7/tl/jdk: 6707289: InterfaceAddress.getNetworkPrefixLength() does not conform to Javadoc Message-ID: <20100125154347.4C6CE41A8B@hg.openjdk.java.net> Changeset: e67bf9abc6a5 Author: chegar Date: 2010-01-25 15:41 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/e67bf9abc6a5 6707289: InterfaceAddress.getNetworkPrefixLength() does not conform to Javadoc Reviewed-by: michaelm ! src/windows/native/java/net/NetworkInterface_winXP.c + test/java/net/InterfaceAddress/NetworkPrefixLength.java From coleen.phillimore at sun.com Mon Jan 25 09:32:14 2010 From: coleen.phillimore at sun.com (coleen.phillimore at sun.com) Date: Mon, 25 Jan 2010 17:32:14 +0000 Subject: hg: jdk7/hotspot-rt/hotspot: 19 new changesets Message-ID: <20100125173313.6F90841AAA@hg.openjdk.java.net> Changeset: 2dd52dea6d28 Author: johnc Date: 2010-01-12 14:56 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/2dd52dea6d28 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint()) Summary: Remove invalid assert and mangle filler objects in TLABs that are being retired. Reviewed-by: ysr, jmasa ! src/share/vm/gc_interface/collectedHeap.cpp ! src/share/vm/gc_interface/collectedHeap.hpp ! src/share/vm/memory/threadLocalAllocBuffer.cpp ! src/share/vm/memory/threadLocalAllocBuffer.inline.hpp Changeset: 7b0e9cba0307 Author: ysr Date: 2010-01-13 15:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/7b0e9cba0307 6896647: card marks can be deferred too long Summary: Deferred card marks are now flushed during the gc prologue. Parallel[Scavege,OldGC] and SerialGC no longer defer card marks generated by COMPILER2 as a result of ReduceInitialCardMarks. For these cases, introduced a diagnostic option to defer the card marks, only for the purposes of testing and diagnostics. CMS and G1 continue to defer card marks. Potential performance concern related to single-threaded flushing of deferred card marks in the gc prologue will be addressed in the future. Reviewed-by: never, johnc ! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp ! src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp ! src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.cpp ! src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.hpp ! src/share/vm/gc_interface/collectedHeap.cpp ! src/share/vm/gc_interface/collectedHeap.hpp ! src/share/vm/memory/genCollectedHeap.cpp ! src/share/vm/memory/genCollectedHeap.hpp ! src/share/vm/opto/graphKit.cpp ! src/share/vm/opto/runtime.cpp ! src/share/vm/opto/runtime.hpp ! src/share/vm/runtime/globals.hpp ! src/share/vm/runtime/thread.cpp ! src/share/vm/runtime/vmStructs.cpp Changeset: 0c1bf505f7a2 Author: tonyp Date: 2010-01-13 15:46 -0500 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/0c1bf505f7a2 6916652: G1: remove +UseG1GC from under experimental options Summary: What the title says. Reviewed-by: ysr, jmasa ! src/share/vm/runtime/globals.hpp Changeset: 22e27cceb7d8 Author: tonyp Date: 2010-01-14 09:20 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/22e27cceb7d8 Merge ! src/share/vm/runtime/globals.hpp Changeset: 09646c4656ca Author: johnc Date: 2010-01-13 15:45 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/09646c4656ca 6915005: G1: Hang in PtrQueueSet::completed_buffers_list_length with gcl001 Summary: When enqueuing a completed PtrQueue buffer, cache a local pointer to the buffer and clear the field in the PtrQueue prior to unlocking the mutex referenced by the _lock field and pass the cached local value to the enqueuing routine. This will prevent the same completed buffer being enqueued multiple times, which causes the hang. Reviewed-by: ysr ! src/share/vm/gc_implementation/g1/ptrQueue.cpp - src/share/vm/gc_implementation/g1/ptrQueue.inline.hpp Changeset: c4d722788ed6 Author: ysr Date: 2010-01-16 23:51 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/c4d722788ed6 Merge - src/share/vm/gc_implementation/g1/ptrQueue.inline.hpp ! src/share/vm/memory/genCollectedHeap.cpp ! src/share/vm/runtime/globals.hpp Changeset: 1bc68593a110 Author: katleman Date: 2010-01-14 15:48 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/1bc68593a110 Added tag jdk7-b79 for changeset a5a6adfca6ec ! .hgtags Changeset: d749b1813f40 Author: trims Date: 2010-01-15 14:25 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/d749b1813f40 Merge Changeset: 3003ddd1d433 Author: trims Date: 2010-01-15 14:28 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/3003ddd1d433 6917463: Bump the HS17 build number to 07 Summary: Update the HS17 build number to 07 Reviewed-by: jcoomes ! make/hotspot_version Changeset: 5b00c9feb9ea Author: trims Date: 2010-01-19 14:23 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/5b00c9feb9ea Merge - src/share/vm/gc_implementation/g1/ptrQueue.inline.hpp Changeset: b2b6a9bf6238 Author: cfang Date: 2010-01-12 14:37 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/b2b6a9bf6238 6894779: Loop Predication for Loop Optimizer in C2 Summary: Loop predication implementation Reviewed-by: never, kvn ! src/share/vm/includeDB_compiler2 ! src/share/vm/opto/c2_globals.hpp ! src/share/vm/opto/compile.cpp ! src/share/vm/opto/compile.hpp ! src/share/vm/opto/loopTransform.cpp ! src/share/vm/opto/loopnode.cpp ! src/share/vm/opto/loopnode.hpp ! src/share/vm/opto/parse.hpp ! src/share/vm/opto/parse1.cpp ! src/share/vm/opto/parse2.cpp ! src/share/vm/opto/split_if.cpp ! src/share/vm/runtime/deoptimization.cpp ! src/share/vm/runtime/deoptimization.hpp Changeset: 73b22f919c34 Author: jrose Date: 2010-01-13 23:05 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/73b22f919c34 6912065: final fields in objects need to support inlining optimizations for JSR 292 Reviewed-by: twisti, kvn ! src/share/vm/ci/ciField.cpp ! src/share/vm/runtime/globals.hpp Changeset: ddb7834449d0 Author: never Date: 2010-01-15 11:53 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly Reviewed-by: kvn, twisti ! src/cpu/sparc/vm/interpreter_sparc.cpp ! src/cpu/sparc/vm/stubGenerator_sparc.cpp ! src/cpu/x86/vm/stubGenerator_x86_32.cpp ! src/cpu/x86/vm/stubGenerator_x86_64.cpp ! src/cpu/x86/vm/templateInterpreter_x86_32.cpp ! src/cpu/x86/vm/templateInterpreter_x86_64.cpp ! src/share/vm/interpreter/abstractInterpreter.hpp ! src/share/vm/opto/subnode.cpp ! src/share/vm/runtime/compilationPolicy.cpp ! src/share/vm/runtime/stubRoutines.cpp ! src/share/vm/runtime/stubRoutines.hpp Changeset: 614b7e3a9f48 Author: never Date: 2010-01-15 16:15 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/614b7e3a9f48 6879943: CTW failure jdk6_18/hotspot/src/share/vm/c1/c1_LIR.hpp:2029 Reviewed-by: kvn, cfang ! src/share/vm/c1/c1_LIR.hpp Changeset: d11ce1551e8d Author: twisti Date: 2010-01-18 05:02 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/d11ce1551e8d 6917698: os::is_allocatable Zero fix for 32-bit platforms Summary: Recent changes call os::is_allocatable which was not implemented in Zero. Reviewed-by: twisti Contributed-by: Edward Nevill ! src/os_cpu/linux_zero/vm/os_linux_zero.cpp Changeset: acebf2655d3a Author: kvn Date: 2010-01-19 10:25 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/acebf2655d3a 6917931: compiler/6895383/Test.java don't compile due missed imports Summary: Add missing imports. Reviewed-by: never, twisti ! test/compiler/6895383/Test.java Changeset: 648fe315b257 Author: kvn Date: 2010-01-19 15:54 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/648fe315b257 6893701: compiler/6877254/Test.java fails because it combines -XX:+UseConcMarkSweepGC with other GC Summary: Remove explicit GC flags in regression tests Reviewed-by: never, ysr ! test/compiler/6877254/Test.java ! test/compiler/6896727/Test.java Changeset: 3d6016e040d6 Author: iveresov Date: 2010-01-20 12:54 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/3d6016e040d6 Merge ! src/share/vm/runtime/globals.hpp Changeset: 2718ec34c699 Author: coleenp Date: 2010-01-22 15:06 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/hotspot/rev/2718ec34c699 Merge - src/share/vm/gc_implementation/g1/ptrQueue.inline.hpp From weijun.wang at sun.com Tue Jan 26 01:05:00 2010 From: weijun.wang at sun.com (weijun.wang at sun.com) Date: Tue, 26 Jan 2010 09:05:00 +0000 Subject: hg: jdk7/tl/jdk: 6919610: KeyTabInputStream uses static field for per-instance value Message-ID: <20100126090519.87BF541BA7@hg.openjdk.java.net> Changeset: 558f2a424bfa Author: weijun Date: 2010-01-26 17:03 +0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/558f2a424bfa 6919610: KeyTabInputStream uses static field for per-instance value Reviewed-by: mullan ! src/share/classes/sun/security/krb5/internal/ktab/KeyTabInputStream.java + test/sun/security/krb5/ktab/KeyTabIndex.java From jean-christophe.collet at sun.com Tue Jan 26 02:44:29 2010 From: jean-christophe.collet at sun.com (jean-christophe.collet at sun.com) Date: Tue, 26 Jan 2010 10:44:29 +0000 Subject: hg: jdk7/tl/jdk: 6919185: test/closed/sun/net/ftp/FtpTests fails to compile Message-ID: <20100126104532.DBD6541BC2@hg.openjdk.java.net> Changeset: f544825d0976 Author: jccollet Date: 2010-01-26 11:39 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/f544825d0976 6919185: test/closed/sun/net/ftp/FtpTests fails to compile Summary: Fixed a couple of regressions in FtpClient and updated the test. Reviewed-by: chegar ! src/share/classes/sun/net/ftp/impl/FtpClient.java From jonathan.gibbons at sun.com Tue Jan 26 11:16:57 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Tue, 26 Jan 2010 19:16:57 +0000 Subject: hg: jdk7/tl/langtools: 6919944: incorrect position given for duplicate annotation value error Message-ID: <20100126191701.B537541C4C@hg.openjdk.java.net> Changeset: da0e3e2dd3ef Author: jjg Date: 2010-01-26 11:15 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/da0e3e2dd3ef 6919944: incorrect position given for duplicate annotation value error Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/comp/Check.java ! test/tools/javac/typeAnnotations/failures/common/arrayclass/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/arrayclass/DuplicateAnnotationValue.out ! test/tools/javac/typeAnnotations/failures/common/arrays/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/arrays/DuplicateAnnotationValue.out ! test/tools/javac/typeAnnotations/failures/common/innertypeparams/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/innertypeparams/DuplicateAnnotationValue.out ! test/tools/javac/typeAnnotations/failures/common/newarray/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/newarray/DuplicateAnnotationValue.out ! test/tools/javac/typeAnnotations/failures/common/parambounds/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/parambounds/DuplicateAnnotationValue.out ! test/tools/javac/typeAnnotations/failures/common/receiver/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/receiver/DuplicateAnnotationValue.out ! test/tools/javac/typeAnnotations/failures/common/typeArgs/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/typeArgs/DuplicateAnnotationValue.out ! test/tools/javac/typeAnnotations/failures/common/typeparams/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/typeparams/DuplicateAnnotationValue.out ! test/tools/javac/typeAnnotations/failures/common/wildcards/DuplicateAnnotationValue.java ! test/tools/javac/typeAnnotations/failures/common/wildcards/DuplicateAnnotationValue.out From jonathan.gibbons at sun.com Tue Jan 26 11:25:05 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Tue, 26 Jan 2010 19:25:05 +0000 Subject: hg: jdk7/tl/langtools: 6917130: should test that annotations that have been optimized away are not emitted to classfile Message-ID: <20100126192512.0E31841C51@hg.openjdk.java.net> Changeset: 59167312ed4e Author: jjg Date: 2010-01-26 11:23 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/59167312ed4e 6917130: should test that annotations that have been optimized away are not emitted to classfile Reviewed-by: jjg, darcy Contributed-by: mali at csail.mit.edu, mernst at cs.washington.edu + test/tools/javac/typeAnnotations/classfile/DeadCode.java From christopher.hegarty at sun.com Wed Jan 27 08:29:18 2010 From: christopher.hegarty at sun.com (christopher.hegarty at sun.com) Date: Wed, 27 Jan 2010 16:29:18 +0000 Subject: hg: jdk7/tl/jdk: 6905552: libnet/nio portability issues Message-ID: <20100127163008.0B6E041DB1@hg.openjdk.java.net> Changeset: 8df0ffac7f4d Author: chegar Date: 2010-01-27 16:11 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/8df0ffac7f4d 6905552: libnet/nio portability issues Reviewed-by: alanb ! src/share/native/java/net/net_util.c ! src/solaris/native/java/net/Inet4AddressImpl.c ! src/solaris/native/java/net/Inet6AddressImpl.c ! src/solaris/native/java/net/NetworkInterface.c ! src/solaris/native/java/net/PlainDatagramSocketImpl.c ! src/solaris/native/java/net/net_util_md.c ! src/solaris/native/java/net/net_util_md.h ! src/solaris/native/sun/net/spi/SdpProvider.c ! src/solaris/native/sun/nio/ch/Net.c ! src/solaris/native/sun/nio/ch/SctpNet.c From ptisnovs at redhat.com Wed Jan 27 08:48:35 2010 From: ptisnovs at redhat.com (ptisnovs at redhat.com) Date: Wed, 27 Jan 2010 16:48:35 +0000 Subject: hg: jdk7/tl/jdk: 6920143: test/java/awt/TestArea/UsingWithMouse.java needs realSync() Message-ID: <20100127164854.6255941DBA@hg.openjdk.java.net> Changeset: 4192f6edbbf4 Author: ptisnovs Date: 2010-01-27 17:47 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/4192f6edbbf4 6920143: test/java/awt/TestArea/UsingWithMouse.java needs realSync() Summary: Added small delay to make sure that TextArea animation have finished Reviewed-by: anthony ! test/java/awt/TextArea/UsingWithMouse/SelectionAutoscrollTest.java From lana.steuck at sun.com Wed Jan 27 18:48:34 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Thu, 28 Jan 2010 02:48:34 +0000 Subject: hg: jdk7/tl: 3 new changesets Message-ID: <20100128024834.7ABE641E5A@hg.openjdk.java.net> Changeset: 432cbbdc44bc Author: andrew Date: 2010-01-07 23:17 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/rev/432cbbdc44bc 6914986: Make sure openjdk doc generation not turned off with JDK_UPDATE_VERSION Summary: Only turn off documentation for updates when not building OpenJDK Reviewed-by: ohair ! make/Defs-internal.gmk Changeset: a3242906c774 Author: mikejwre Date: 2010-01-20 17:09 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/rev/a3242906c774 Merge Changeset: 8403096d1fe7 Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/rev/8403096d1fe7 Added tag jdk7-b80 for changeset a3242906c774 ! .hgtags From lana.steuck at sun.com Wed Jan 27 18:48:42 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Thu, 28 Jan 2010 02:48:42 +0000 Subject: hg: jdk7/tl/corba: 3 new changesets Message-ID: <20100128024847.A2F4141E5B@hg.openjdk.java.net> Changeset: d4c077d44a64 Author: andrew Date: 2010-01-16 01:04 +0000 URL: http://hg.openjdk.java.net/jdk7/tl/corba/rev/d4c077d44a64 6917485: Corba doc warnings Summary: Fix warnings generated by javadoc Reviewed-by: darcy ! src/share/classes/com/sun/tools/corba/se/idl/constExpr/Expression.java ! src/share/classes/javax/rmi/PortableRemoteObject.java ! src/share/classes/org/omg/CORBA/SetOverrideType.java ! src/share/classes/org/omg/CORBA/TCKind.java ! src/share/classes/org/omg/CORBA/UnknownUserException.java ! src/share/classes/org/omg/CORBA/portable/ServantObject.java ! src/share/classes/org/omg/CosNaming/nameservice.idl ! src/share/classes/org/omg/PortableInterceptor/Interceptors.idl Changeset: 0336e70ca0ae Author: mikejwre Date: 2010-01-20 17:09 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/corba/rev/0336e70ca0ae Merge Changeset: e08a42a2a94d Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/corba/rev/e08a42a2a94d Added tag jdk7-b80 for changeset 0336e70ca0ae ! .hgtags From lana.steuck at sun.com Wed Jan 27 18:51:16 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Thu, 28 Jan 2010 02:51:16 +0000 Subject: hg: jdk7/tl/hotspot: 34 new changesets Message-ID: <20100128025307.314BA41E5D@hg.openjdk.java.net> Changeset: 40e7c1d24e4a Author: twisti Date: 2010-01-04 00:22 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/40e7c1d24e4a 6909153: Fix broken options on Zero Summary: Smaller fixes to ensure that Zero still works with non-standard options. Reviewed-by: twisti Contributed-by: Gary Benson ! src/share/vm/compiler/compileBroker.cpp ! src/share/vm/runtime/arguments.cpp Changeset: 896da934748c Author: twisti Date: 2010-01-04 03:34 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/896da934748c 6913869: Zero assert fix Summary: Zero currently won't build on zSeries or PowerPC machines with assertions turned on. Reviewed-by: twisti Contributed-by: Gary Benson ! src/share/vm/prims/jni.cpp Changeset: aa62b9388fce Author: twisti Date: 2010-01-04 15:52 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/aa62b9388fce 6894206: JVM needs a way to traverse method handle structures Summary: We need a way to walk chained method handles in the JVM to call the right methods and to generate required bytecode adapters for the compilers. Reviewed-by: kvn ! src/cpu/x86/vm/methodHandles_x86.cpp ! src/share/vm/classfile/javaClasses.cpp ! src/share/vm/classfile/javaClasses.hpp ! src/share/vm/classfile/vmSymbols.cpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/includeDB_core + src/share/vm/prims/methodHandleWalk.cpp + src/share/vm/prims/methodHandleWalk.hpp Changeset: 0910903272e5 Author: twisti Date: 2010-01-04 07:04 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/0910903272e5 Merge Changeset: e66fd840cb6b Author: twisti Date: 2010-01-04 18:38 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164) Summary: During the work for 6829187 we have fixed a number of basic bugs which are logically grouped with 6815692 and 6858164 but which must be reviewed and pushed separately. Reviewed-by: kvn, never ! src/cpu/x86/vm/frame_x86.cpp ! src/cpu/x86/vm/methodHandles_x86.cpp ! src/cpu/x86/vm/runtime_x86_32.cpp ! src/cpu/x86/vm/sharedRuntime_x86_64.cpp ! src/cpu/x86/vm/templateInterpreter_x86_32.cpp ! src/cpu/x86/vm/templateInterpreter_x86_64.cpp ! src/share/vm/c1/c1_IR.hpp ! src/share/vm/ci/ciStreams.cpp ! src/share/vm/classfile/javaClasses.hpp ! src/share/vm/classfile/systemDictionary.cpp ! src/share/vm/classfile/systemDictionary.hpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/code/codeBlob.hpp ! src/share/vm/code/debugInfoRec.cpp ! src/share/vm/code/debugInfoRec.hpp ! src/share/vm/code/nmethod.cpp ! src/share/vm/code/nmethod.hpp ! src/share/vm/code/pcDesc.hpp ! src/share/vm/compiler/methodLiveness.cpp ! src/share/vm/interpreter/bytecode.cpp ! src/share/vm/interpreter/bytecode.hpp ! src/share/vm/interpreter/bytecodes.cpp ! src/share/vm/interpreter/interpreter.cpp ! src/share/vm/interpreter/linkResolver.cpp ! src/share/vm/interpreter/linkResolver.hpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/output.cpp ! src/share/vm/opto/runtime.cpp ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/sharedRuntime.cpp ! src/share/vm/runtime/thread.cpp ! src/share/vm/runtime/thread.hpp Changeset: 4b84186a8248 Author: kvn Date: 2010-01-04 15:21 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/4b84186a8248 6913075: EA identifies escape state incorrectly after 6895383 fix Summary: EA incorrectly identifies escape state of an allocation passed as call argument. Reviewed-by: never ! src/share/vm/opto/escape.cpp Changeset: 97125851f396 Author: twisti Date: 2010-01-05 13:05 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/97125851f396 6829187: compiler optimizations required for JSR 292 Summary: C2 implementation for invokedynamic support. Reviewed-by: kvn, never ! src/cpu/sparc/vm/sparc.ad ! src/cpu/x86/vm/frame_x86.inline.hpp ! src/cpu/x86/vm/x86_32.ad ! src/cpu/x86/vm/x86_64.ad + src/share/vm/ci/ciCPCache.cpp + src/share/vm/ci/ciCPCache.hpp ! src/share/vm/ci/ciClassList.hpp ! src/share/vm/ci/ciEnv.cpp ! src/share/vm/ci/ciEnv.hpp ! src/share/vm/ci/ciMethod.cpp ! src/share/vm/ci/ciMethod.hpp ! src/share/vm/ci/ciObject.hpp ! src/share/vm/ci/ciObjectFactory.cpp ! src/share/vm/ci/ciStreams.cpp ! src/share/vm/ci/ciStreams.hpp ! src/share/vm/ci/ciTypeFlow.cpp ! src/share/vm/includeDB_compiler2 ! src/share/vm/includeDB_core ! src/share/vm/opto/bytecodeInfo.cpp ! src/share/vm/opto/callGenerator.cpp ! src/share/vm/opto/callGenerator.hpp ! src/share/vm/opto/callnode.hpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/graphKit.cpp ! src/share/vm/opto/lcm.cpp ! src/share/vm/opto/machnode.cpp ! src/share/vm/opto/machnode.hpp ! src/share/vm/opto/matcher.cpp ! src/share/vm/opto/matcher.hpp ! src/share/vm/opto/output.cpp ! src/share/vm/opto/type.cpp Changeset: dd57230ba8fe Author: twisti Date: 2010-01-05 15:21 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/dd57230ba8fe 6893268: additional dynamic language related optimizations in C2 Summary: C2 needs some additional optimizations to be able to handle MethodHandle invokes and invokedynamic instructions at the best performance. Reviewed-by: kvn, never ! src/share/vm/ci/ciCPCache.cpp + src/share/vm/ci/ciCallSite.cpp + src/share/vm/ci/ciCallSite.hpp ! src/share/vm/ci/ciClassList.hpp ! src/share/vm/ci/ciEnv.cpp ! src/share/vm/ci/ciEnv.hpp ! src/share/vm/ci/ciExceptionHandler.cpp ! src/share/vm/ci/ciField.cpp ! src/share/vm/ci/ciField.hpp ! src/share/vm/ci/ciInstanceKlass.cpp ! src/share/vm/ci/ciInstanceKlass.hpp ! src/share/vm/ci/ciKlass.cpp ! src/share/vm/ci/ciKlass.hpp ! src/share/vm/ci/ciMethod.hpp + src/share/vm/ci/ciMethodHandle.cpp + src/share/vm/ci/ciMethodHandle.hpp ! src/share/vm/ci/ciObject.hpp ! src/share/vm/ci/ciObjectFactory.cpp ! src/share/vm/ci/ciStreams.cpp ! src/share/vm/ci/ciStreams.hpp ! src/share/vm/ci/ciSymbol.cpp ! src/share/vm/ci/ciSymbol.hpp ! src/share/vm/classfile/classFileParser.cpp ! src/share/vm/classfile/vmSymbols.cpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/code/nmethod.cpp ! src/share/vm/includeDB_compiler2 ! src/share/vm/includeDB_core ! src/share/vm/interpreter/bytecode.hpp ! src/share/vm/interpreter/bytecodeTracer.cpp ! src/share/vm/interpreter/interpreterRuntime.cpp ! src/share/vm/interpreter/rewriter.cpp ! src/share/vm/interpreter/rewriter.hpp ! src/share/vm/oops/constMethodOop.hpp ! src/share/vm/oops/constantPoolOop.hpp ! src/share/vm/oops/generateOopMap.cpp ! src/share/vm/oops/methodOop.hpp ! src/share/vm/oops/symbolOop.cpp ! src/share/vm/oops/symbolOop.hpp ! src/share/vm/opto/bytecodeInfo.cpp ! src/share/vm/opto/callGenerator.cpp ! src/share/vm/opto/callGenerator.hpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/parse3.cpp ! src/share/vm/prims/methodHandleWalk.cpp ! src/share/vm/prims/methodHandleWalk.hpp ! src/share/vm/prims/methodHandles.cpp ! src/share/vm/runtime/frame.cpp ! src/share/vm/runtime/frame.hpp ! src/share/vm/runtime/sharedRuntime.cpp ! src/share/vm/runtime/sharedRuntime.hpp ! src/share/vm/utilities/constantTag.hpp Changeset: b6f06e395428 Author: never Date: 2010-01-05 11:14 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/b6f06e395428 6908267: Zero fails to unlock synchronized native methods on exception Reviewed-by: never Contributed-by: Gary Benson ! src/cpu/zero/vm/cppInterpreter_zero.cpp Changeset: 1f6d42899c3a Author: never Date: 2010-01-05 11:16 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1f6d42899c3a Merge Changeset: b1f619d38249 Author: never Date: 2010-01-05 16:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/b1f619d38249 6914002: unsigned compare problem after 5057818 Reviewed-by: kvn, twisti ! src/share/vm/code/nmethod.cpp ! src/share/vm/code/nmethod.hpp Changeset: 4ce7240d622c Author: never Date: 2010-01-06 14:22 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/4ce7240d622c 6914300: ciEnv should export all well known classes Reviewed-by: kvn, twisti ! agent/src/share/classes/sun/jvm/hotspot/memory/SystemDictionary.java ! src/share/vm/c1/c1_Runtime1.cpp ! src/share/vm/ci/ciEnv.cpp ! src/share/vm/ci/ciEnv.hpp ! src/share/vm/ci/ciField.cpp ! src/share/vm/ci/ciInstance.cpp ! src/share/vm/ci/ciInstanceKlass.cpp ! src/share/vm/ci/ciObjectFactory.cpp ! src/share/vm/ci/ciType.cpp ! src/share/vm/ci/ciUtilities.hpp ! src/share/vm/classfile/classFileParser.cpp ! src/share/vm/classfile/classLoader.cpp ! src/share/vm/classfile/javaAssertions.cpp ! src/share/vm/classfile/javaClasses.cpp ! src/share/vm/classfile/javaClasses.hpp ! src/share/vm/classfile/systemDictionary.cpp ! src/share/vm/classfile/systemDictionary.hpp ! src/share/vm/classfile/verifier.cpp ! src/share/vm/gc_interface/collectedHeap.cpp ! src/share/vm/interpreter/interpreterRuntime.cpp ! src/share/vm/interpreter/linkResolver.cpp ! src/share/vm/memory/classify.cpp ! src/share/vm/memory/dump.cpp ! src/share/vm/memory/referenceProcessor.cpp ! src/share/vm/memory/space.cpp ! src/share/vm/memory/universe.cpp ! src/share/vm/oops/arrayKlass.cpp ! src/share/vm/oops/arrayKlass.hpp ! src/share/vm/oops/constantPoolOop.cpp ! src/share/vm/oops/instanceKlass.cpp ! src/share/vm/oops/instanceRefKlass.cpp ! src/share/vm/oops/klass.cpp ! src/share/vm/oops/methodOop.cpp ! src/share/vm/oops/objArrayKlass.cpp ! src/share/vm/oops/objArrayKlassKlass.cpp ! src/share/vm/opto/runtime.cpp ! src/share/vm/prims/jni.cpp ! src/share/vm/prims/jniCheck.cpp ! src/share/vm/prims/jvm.cpp ! src/share/vm/prims/jvmtiEnter.xsl ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/prims/jvmtiEnvBase.cpp ! src/share/vm/prims/jvmtiExport.cpp ! src/share/vm/prims/jvmtiRedefineClasses.cpp ! src/share/vm/prims/jvmtiTagMap.cpp ! src/share/vm/prims/methodHandleWalk.cpp ! src/share/vm/prims/methodHandles.cpp ! src/share/vm/prims/nativeLookup.cpp ! src/share/vm/runtime/jniHandles.cpp ! src/share/vm/runtime/os.cpp ! src/share/vm/runtime/reflection.cpp ! src/share/vm/runtime/reflectionUtils.cpp ! src/share/vm/runtime/sharedRuntime.cpp ! src/share/vm/runtime/statSampler.cpp ! src/share/vm/runtime/thread.cpp ! src/share/vm/runtime/vframe.cpp ! src/share/vm/runtime/vmStructs.cpp ! src/share/vm/services/attachListener.cpp ! src/share/vm/services/heapDumper.cpp ! src/share/vm/services/lowMemoryDetector.cpp ! src/share/vm/services/management.cpp ! src/share/vm/services/serviceUtil.hpp ! src/share/vm/services/threadService.cpp ! src/share/vm/utilities/exceptions.cpp Changeset: aad340e07bc4 Author: never Date: 2010-01-06 14:25 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/aad340e07bc4 Merge Changeset: 9b9c1ee9b3f6 Author: iveresov Date: 2010-01-06 22:21 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/9b9c1ee9b3f6 Merge ! src/share/vm/classfile/classFileParser.cpp ! src/share/vm/classfile/vmSymbols.hpp ! src/share/vm/memory/referenceProcessor.cpp ! src/share/vm/oops/instanceKlass.cpp ! src/share/vm/oops/instanceRefKlass.cpp ! src/share/vm/prims/jvm.cpp ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/prims/jvmtiEnvBase.cpp ! src/share/vm/prims/jvmtiExport.cpp ! src/share/vm/runtime/frame.cpp ! src/share/vm/runtime/thread.cpp ! src/share/vm/runtime/thread.hpp ! src/share/vm/runtime/vmStructs.cpp Changeset: e018e6884bd8 Author: ysr Date: 2009-12-23 09:23 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation Summary: Autonomic per-worker free block cache sizing, tunable coalition policies, fixes to per-size block statistics, retuned gain and bandwidth of some feedback loop filters to allow quicker reactivity to abrupt changes in ambient demand, and other heuristics to reduce fragmentation of the CMS old gen. Also tightened some assertions, including those related to locking. Reviewed-by: jmasa ! src/share/vm/gc_implementation/concurrentMarkSweep/binaryTreeDictionary.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/binaryTreeDictionary.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/cmsLockVerifier.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/cmsLockVerifier.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeBlockDictionary.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.hpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeList.cpp ! src/share/vm/gc_implementation/concurrentMarkSweep/freeList.hpp ! src/share/vm/gc_implementation/includeDB_gc_concurrentMarkSweep ! src/share/vm/gc_implementation/includeDB_gc_serial ! src/share/vm/gc_implementation/parNew/parNewGeneration.cpp ! src/share/vm/gc_implementation/parNew/parNewGeneration.hpp ! src/share/vm/gc_implementation/shared/allocationStats.hpp ! src/share/vm/gc_implementation/shared/gcUtil.cpp ! src/share/vm/gc_implementation/shared/gcUtil.hpp ! src/share/vm/includeDB_gc_parallel ! src/share/vm/memory/defNewGeneration.cpp ! src/share/vm/memory/generation.hpp ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/globals.hpp ! src/share/vm/services/classLoadingService.cpp Changeset: 504830073409 Author: jmasa Date: 2010-01-04 07:58 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/504830073409 Merge ! src/share/vm/runtime/globals.hpp Changeset: 75bd253e25dd Author: ysr Date: 2010-01-04 14:51 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/75bd253e25dd 6637203: Classunloading messages go to stdout rather than Xloggc file, causing hangs when stdout is closed Summary: Decoupled TraceClassUnloading from verbose:gc, JVMTI_VERBOSE_GC and PrintGC[Details], making it settable in a manner identical to TraceClassLoading. Reverted an inadvertent change of TraceClassUnloading output in a previous changeset from gclog back to tty. Reviewed-by: coleenp, dholmes, jmasa, poonam ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/runtime/arguments.cpp ! src/share/vm/services/classLoadingService.cpp Changeset: 05b775309e59 Author: jmasa Date: 2010-01-07 08:14 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/05b775309e59 6912018: CMS: guarantee(head() != 0,"The head of the list cannot be NULL") Summary: Block too small to split was not correctly putback to free lists. Reviewed-by: ysr ! src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp Changeset: 0579c695832f Author: ysr Date: 2010-01-09 09:01 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/0579c695832f Merge ! src/share/vm/prims/jvmtiEnv.cpp ! src/share/vm/runtime/arguments.cpp Changeset: f62a22282a47 Author: kvn Date: 2010-01-07 16:24 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f62a22282a47 6914622: Print values of all flags for product VM Summary: Change the flag -XX:+PrintFlagsFinal to product and add new product flag -XX:+PrintFlagsInitial. Reviewed-by: phh, ysr Contributed-by: gbenson at redhat.com ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/globals.cpp ! src/share/vm/runtime/globals.hpp Changeset: 1271af4ec18c Author: kvn Date: 2010-01-07 16:26 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1271af4ec18c 6912517: JIT bug compiles out (and stops running) code that needs to be run. Causes NPE. Summary: Add missing check that value is used in memory expression in instructions with embedded load. Reviewed-by: never, jrose ! src/share/vm/opto/lcm.cpp + test/compiler/6912517/Test.java Changeset: cd37471eaecc Author: twisti Date: 2010-01-08 11:09 +0100 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters Summary: Put generated MH adapter in InvokeDynamic/MethodHandle classes to be able to indentify them easily in the compiler. Reviewed-by: kvn, never, jrose ! src/share/vm/ci/ciMethod.cpp ! src/share/vm/ci/ciMethod.hpp ! src/share/vm/classfile/systemDictionary.hpp ! src/share/vm/includeDB_core ! src/share/vm/oops/methodOop.cpp ! src/share/vm/oops/methodOop.hpp ! src/share/vm/opto/library_call.cpp ! src/share/vm/prims/methodHandleWalk.cpp ! src/share/vm/prims/methodHandleWalk.hpp ! src/share/vm/runtime/reflection.cpp ! src/share/vm/runtime/vframe.cpp Changeset: bea7a22a6f79 Author: kvn Date: 2010-01-08 09:42 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/bea7a22a6f79 6915110: IfNode::up_one_dom moves beyond RootNode bug in src/share/vm/opto/ifnode.cpp Summary: Check RootNode before check Loop in IfNode::up_one_dom(). Reviewed-by: never Contributed-by: kevin.brown at sun.com ! src/share/vm/opto/ifnode.cpp Changeset: 174ade00803b Author: kvn Date: 2010-01-08 09:51 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/174ade00803b 6910484: incorrect integer optimization (loosing and op-r in a given example) Summary: Remove AND operation only if mask is equal to shift. Reviewed-by: never ! src/share/vm/opto/divnode.cpp + test/compiler/6910484/Test.java Changeset: 4e6abf09f540 Author: jrose Date: 2010-01-08 13:47 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode Summary: More informative disassembly in product mode. Also, a more consistent CompileCommand syntax. Reviewed-by: never ! src/share/vm/code/codeBlob.hpp ! src/share/vm/code/nmethod.cpp ! src/share/vm/code/nmethod.hpp ! src/share/vm/compiler/compilerOracle.cpp ! src/share/vm/compiler/disassembler.cpp ! src/share/vm/includeDB_core ! src/share/vm/memory/genCollectedHeap.cpp ! src/share/vm/oops/arrayKlassKlass.cpp ! src/share/vm/oops/arrayKlassKlass.hpp ! src/share/vm/oops/compiledICHolderKlass.cpp ! src/share/vm/oops/compiledICHolderKlass.hpp ! src/share/vm/oops/constMethodKlass.cpp ! src/share/vm/oops/constMethodKlass.hpp ! src/share/vm/oops/constantPoolKlass.cpp ! src/share/vm/oops/constantPoolKlass.hpp ! src/share/vm/oops/cpCacheKlass.cpp ! src/share/vm/oops/cpCacheKlass.hpp ! src/share/vm/oops/instanceKlass.cpp ! src/share/vm/oops/instanceKlass.hpp ! src/share/vm/oops/instanceKlassKlass.cpp ! src/share/vm/oops/instanceKlassKlass.hpp ! src/share/vm/oops/klass.cpp ! src/share/vm/oops/klass.hpp ! src/share/vm/oops/klassKlass.cpp ! src/share/vm/oops/klassKlass.hpp ! src/share/vm/oops/methodDataKlass.cpp ! src/share/vm/oops/methodDataKlass.hpp ! src/share/vm/oops/methodKlass.cpp ! src/share/vm/oops/methodKlass.hpp ! src/share/vm/oops/objArrayKlass.cpp ! src/share/vm/oops/objArrayKlass.hpp ! src/share/vm/oops/objArrayKlassKlass.cpp ! src/share/vm/oops/objArrayKlassKlass.hpp ! src/share/vm/oops/oop.cpp ! src/share/vm/oops/symbolKlass.cpp ! src/share/vm/oops/symbolKlass.hpp ! src/share/vm/oops/typeArrayKlassKlass.cpp ! src/share/vm/oops/typeArrayKlassKlass.hpp ! src/share/vm/runtime/arguments.cpp Changeset: 136ac23d6ded Author: jrose Date: 2010-01-08 15:17 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/136ac23d6ded Merge Changeset: c3b315a0d58a Author: jrose Date: 2010-01-08 13:58 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM Summary: Put all inline-related switches into product mode, to allow tuning by dynamic language implementors. Reviewed-by: twisti, kvn ! src/share/vm/opto/bytecodeInfo.cpp ! src/share/vm/opto/doCall.cpp ! src/share/vm/opto/parse.hpp ! src/share/vm/runtime/globals.hpp Changeset: f2e64cfc2020 Author: jrose Date: 2010-01-08 18:27 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f2e64cfc2020 Merge Changeset: 5b06c5db3e89 Author: jrose Date: 2010-01-08 22:02 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/5b06c5db3e89 Merge Changeset: f24201449cac Author: never Date: 2010-01-09 00:59 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad Reviewed-by: kvn, jrose ! src/cpu/sparc/vm/sparc.ad + test/compiler/6909839/Test6909839.java Changeset: 1fc01a2425ce Author: iveresov Date: 2010-01-12 13:54 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1fc01a2425ce Merge ! src/share/vm/runtime/arguments.cpp ! src/share/vm/runtime/globals.hpp Changeset: d749b1813f40 Author: trims Date: 2010-01-15 14:25 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/d749b1813f40 Merge Changeset: 3003ddd1d433 Author: trims Date: 2010-01-15 14:28 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/3003ddd1d433 6917463: Bump the HS17 build number to 07 Summary: Update the HS17 build number to 07 Reviewed-by: jcoomes ! make/hotspot_version Changeset: 359445e739ac Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/359445e739ac Added tag jdk7-b80 for changeset 3003ddd1d433 ! .hgtags From lana.steuck at sun.com Wed Jan 27 18:57:05 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Thu, 28 Jan 2010 02:57:05 +0000 Subject: hg: jdk7/tl/jaxp: Added tag jdk7-b80 for changeset 9219574db593 Message-ID: <20100128025705.A71E641E5F@hg.openjdk.java.net> Changeset: 204e59d488cd Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/204e59d488cd Added tag jdk7-b80 for changeset 9219574db593 ! .hgtags From lana.steuck at sun.com Wed Jan 27 18:57:11 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Thu, 28 Jan 2010 02:57:11 +0000 Subject: hg: jdk7/tl/jaxws: Added tag jdk7-b80 for changeset 447767dee56a Message-ID: <20100128025711.E524941E60@hg.openjdk.java.net> Changeset: f051045fe94a Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/f051045fe94a Added tag jdk7-b80 for changeset 447767dee56a ! .hgtags From lana.steuck at sun.com Wed Jan 27 18:58:56 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Thu, 28 Jan 2010 02:58:56 +0000 Subject: hg: jdk7/tl/jdk: 28 new changesets Message-ID: <20100128030831.22EE741E65@hg.openjdk.java.net> Changeset: 9956e8d71e06 Author: tbell Date: 2009-12-18 09:40 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9956e8d71e06 6899737: JDK build fails in make/java/jli because of _vsnprintf macro redefinition Summary: Use stdio.h instead when building with Visual Studio 2008 or later Reviewed-by: art, ohair ! src/share/native/java/util/zip/zlib-1.2.3/zutil.h Changeset: 39b9564ff01c Author: ohair Date: 2010-01-05 15:17 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/39b9564ff01c Merge Changeset: 447c9e535234 Author: ohair Date: 2010-01-13 15:37 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/447c9e535234 Merge Changeset: e0905e36766a Author: yhuang Date: 2009-12-06 22:18 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/e0905e36766a 6868106: Ukrainian currency has wrong format Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_uk.java ! src/share/classes/sun/util/resources/CurrencyNames_uk_UA.properties ! test/sun/text/resources/LocaleData Changeset: d9080b33ba74 Author: yhuang Date: 2009-12-08 21:14 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/d9080b33ba74 6610748: Dateformat - AM-PM indicator in Finnish appears to be from English Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_fi.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: ac9e284db030 Author: yhuang Date: 2009-12-08 21:19 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/ac9e284db030 6645271: Wrong date format for Croatian (hr) locale Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_hr_HR.java Changeset: 3ab178316aa0 Author: yhuang Date: 2009-12-08 21:26 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/3ab178316aa0 6609737: DateFormat incorrect for German locale Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_de.java ! src/share/classes/sun/util/resources/TimeZoneNames_de.java Changeset: 4910b580a725 Author: yhuang Date: 2009-12-08 21:30 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/4910b580a725 6507067: TimeZone country/area message error Reviewed-by: peytoia ! src/share/classes/sun/util/resources/TimeZoneNames_zh_TW.java Changeset: 06df47459ecf Author: yhuang Date: 2009-12-10 17:26 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/06df47459ecf 6873931: New Turkish currency since 2009 Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/CurrencyNames_tr_TR.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: ddc4a80f25f4 Author: yhuang Date: 2009-12-17 02:00 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/ddc4a80f25f4 6450945: The week day for Saturday and the first week day in Romania locale are incorrect Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_ro.java ! src/share/classes/sun/util/resources/CalendarData_ro.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: cd5d46887546 Author: yhuang Date: 2009-12-17 02:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/cd5d46887546 6645268: Country/language names with locale fi_FI are incorrect for FRANCE/FRENCH Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/LocaleNames_fi.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java ! test/sun/util/resources/Locale/Bug4429024.java Changeset: 946a0a09a477 Author: yhuang Date: 2009-12-17 02:28 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/946a0a09a477 6646611: Incorrect spelling of month name in locale for Belarusian language ("be", "BY") Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_be.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: e8fa2b2cb1e8 Author: yhuang Date: 2009-12-17 22:24 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/e8fa2b2cb1e8 6650730: Lithuanian locale date and number formats mismatch. Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_lt.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: e9b09f76d281 Author: yhuang Date: 2009-12-17 22:25 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/e9b09f76d281 6645405: Errors in Hungarian local-specific formatting. (L10N part of 6609703) Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_hu_HU.java Changeset: 3b78f3769688 Author: yhuang Date: 2009-12-20 19:31 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/3b78f3769688 6910489: Slovenia Locale, wrong firstDayOfWeek number Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/CalendarData_sl.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: b09e582d09bd Author: yhuang Date: 2009-12-20 19:49 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/b09e582d09bd 6573250: Java.util.Currency.getSymbol(Locale) returns wrong value when locale is not US. Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/CurrencyNames_en_CA.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: 7bf839e2e9ce Author: yhuang Date: 2009-12-24 15:37 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/7bf839e2e9ce 6870908: reopen bug 4244752: month names in Estonian should be lowercase Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_et.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: 1397ae8dc558 Author: yhuang Date: 2009-12-24 16:26 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/1397ae8dc558 6541350: TimeZone display names localization Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/TimeZoneNames_de.java ! src/share/classes/sun/util/resources/TimeZoneNames_es.java ! src/share/classes/sun/util/resources/TimeZoneNames_fr.java ! src/share/classes/sun/util/resources/TimeZoneNames_it.java ! src/share/classes/sun/util/resources/TimeZoneNames_ja.java ! src/share/classes/sun/util/resources/TimeZoneNames_ko.java ! src/share/classes/sun/util/resources/TimeZoneNames_sv.java ! src/share/classes/sun/util/resources/TimeZoneNames_zh_CN.java ! src/share/classes/sun/util/resources/TimeZoneNames_zh_TW.java Changeset: 2886607f8bc3 Author: yhuang Date: 2009-12-28 14:58 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/2886607f8bc3 6585666: Spanish language names not compliant with CLDR Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/LocaleNames_es.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: 5ec5337c0298 Author: yhuang Date: 2010-01-05 18:26 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/5ec5337c0298 6716626: Integrate contributed language and country names for NL Reviewed-by: yhuang, peytoia ! src/share/classes/sun/util/resources/LocaleNames_nl.properties ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: 8bf6b2173e9f Author: yhuang Date: 2010-01-06 17:52 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/8bf6b2173e9f 6914413: abbreviation name for November is not correct in be_BY Reviewed-by: yhuang, peytoia ! src/share/classes/sun/text/resources/FormatData_be.java ! test/sun/text/resources/LocaleData ! test/sun/text/resources/LocaleDataTest.java Changeset: eea1cc096889 Author: yhuang Date: 2010-01-06 19:32 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/eea1cc096889 6821191: Timezone display name localization Reviewed-by: yhuang, ogino ! src/share/classes/sun/util/resources/TimeZoneNames_de.java ! src/share/classes/sun/util/resources/TimeZoneNames_es.java ! src/share/classes/sun/util/resources/TimeZoneNames_fr.java ! src/share/classes/sun/util/resources/TimeZoneNames_it.java ! src/share/classes/sun/util/resources/TimeZoneNames_ja.java ! src/share/classes/sun/util/resources/TimeZoneNames_ko.java ! src/share/classes/sun/util/resources/TimeZoneNames_sv.java ! src/share/classes/sun/util/resources/TimeZoneNames_zh_CN.java ! src/share/classes/sun/util/resources/TimeZoneNames_zh_TW.java Changeset: eff93f451501 Author: yhuang Date: 2010-01-11 23:25 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/eff93f451501 Merge - make/tools/CharsetMapping/DoubleByte-X.java - make/tools/CharsetMapping/SingleByte-X.java - src/share/classes/javax/swing/plaf/synth/DefaultMenuLayout.java - src/share/classes/sun/awt/ComponentAccessor.java - src/share/classes/sun/awt/WindowAccessor.java - src/share/classes/sun/security/provider/IdentityDatabase.java - src/share/classes/sun/security/provider/SystemIdentity.java - src/share/classes/sun/security/provider/SystemSigner.java - src/share/classes/sun/security/x509/X500Signer.java - src/share/classes/sun/security/x509/X509Cert.java - src/share/classes/sun/swing/plaf/synth/SynthUI.java - src/share/classes/sun/tools/jar/JarVerifierStream.java - src/share/classes/sun/util/CoreResourceBundleControl-XLocales.java - src/share/classes/sun/util/LocaleDataMetaInfo-XLocales.java - test/java/util/Formatter/Basic-X.java - test/sun/tools/native2ascii/test2 - test/tools/launcher/SolarisDataModel.sh - test/tools/launcher/SolarisRunpath.sh - test/tools/launcher/libraryCaller.c - test/tools/launcher/libraryCaller.h - test/tools/launcher/libraryCaller.java Changeset: d91c6bdcc852 Author: yhuang Date: 2010-01-17 18:42 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/d91c6bdcc852 Merge Changeset: 049cfaaa9a73 Author: mikejwre Date: 2010-01-20 17:11 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/049cfaaa9a73 Merge Changeset: 15815a54d930 Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/15815a54d930 Added tag jdk7-b80 for changeset 049cfaaa9a73 ! .hgtags Changeset: 10b993d417fc Author: lana Date: 2010-01-22 09:34 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/10b993d417fc Merge - make/java/redist/FILES.gmk - make/sun/nio/FILES_java.gmk - src/solaris/classes/sun/nio/ch/SctpSocketDispatcher.java Changeset: 0126effcc249 Author: lana Date: 2010-01-27 14:46 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/0126effcc249 Merge From lana.steuck at sun.com Wed Jan 27 19:19:32 2010 From: lana.steuck at sun.com (lana.steuck at sun.com) Date: Thu, 28 Jan 2010 03:19:32 +0000 Subject: hg: jdk7/tl/langtools: 3 new changesets Message-ID: <20100128031943.B5BF041E6D@hg.openjdk.java.net> Changeset: 250a580ab046 Author: mikejwre Date: 2010-01-21 11:12 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/250a580ab046 Added tag jdk7-b80 for changeset f0074aa48d4e ! .hgtags Changeset: cfabfcf9f110 Author: lana Date: 2010-01-22 09:34 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/cfabfcf9f110 Merge Changeset: ff7a01f9eff3 Author: lana Date: 2010-01-27 14:46 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/ff7a01f9eff3 Merge From xueming.shen at sun.com Wed Jan 27 19:43:24 2010 From: xueming.shen at sun.com (xueming.shen at sun.com) Date: Thu, 28 Jan 2010 03:43:24 +0000 Subject: hg: jdk7/tl/jdk: 6920732: opensource test/java/nio/charset Message-ID: <20100128034343.4671241E77@hg.openjdk.java.net> Changeset: 946b30073247 Author: sherman Date: 2010-01-27 19:39 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/946b30073247 6920732: opensource test/java/nio/charset Summary: move the test cases to openjdk Reviewed-by: martin + test/java/nio/charset/Charset/AvailableCharsetNames.java + test/java/nio/charset/Charset/CharsetContainmentTest.java + test/java/nio/charset/Charset/Contains.java + test/java/nio/charset/Charset/Default.java + test/java/nio/charset/Charset/EmptyCharsetName.java + test/java/nio/charset/Charset/EncDec.java + test/java/nio/charset/Charset/IllegalCharsetName.java + test/java/nio/charset/Charset/NIOCharsetAvailabilityTest.java + test/java/nio/charset/Charset/NullCharsetName.java + test/java/nio/charset/Charset/RegisteredCharsets.java + test/java/nio/charset/Charset/default.sh + test/java/nio/charset/CharsetDecoder/AverageMax.java + test/java/nio/charset/CharsetDecoder/EmptyInput.java + test/java/nio/charset/CharsetEncoder/CanEncode.java + test/java/nio/charset/CharsetEncoder/Flush.java + test/java/nio/charset/RemovingSunIO/SunioAlias.java + test/java/nio/charset/RemovingSunIO/TestCOMP.java + test/java/nio/charset/RemovingSunIO/TestUnmappableForLength.java + test/java/nio/charset/coders/BashCache.java + test/java/nio/charset/coders/BashStreams.java + test/java/nio/charset/coders/Check.java + test/java/nio/charset/coders/CheckSJISMappingProp.sh + test/java/nio/charset/coders/Errors.java + test/java/nio/charset/coders/FullRead.java + test/java/nio/charset/coders/IOCoders.java + test/java/nio/charset/coders/IsLegalReplacement.java + test/java/nio/charset/coders/ResetISO2022JP.java + test/java/nio/charset/coders/SJISPropTest.java + test/java/nio/charset/coders/StreamTimeout.java + test/java/nio/charset/coders/Surrogate.java + test/java/nio/charset/coders/Surrogates.java + test/java/nio/charset/coders/Util.java + test/java/nio/charset/coders/ref.shift_jis + test/java/nio/charset/coders/ref.windows-31j + test/java/nio/charset/spi/FooCharset.java + test/java/nio/charset/spi/FooProvider.java + test/java/nio/charset/spi/Test.java + test/java/nio/charset/spi/basic.sh + test/java/nio/charset/spi/charsetProvider.sp + test/java/nio/charset/spi/default-pol From john.coomes at sun.com Fri Jan 29 02:31:42 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 29 Jan 2010 10:31:42 +0000 Subject: hg: jdk7/hotspot-rt: Added tag jdk7-b81 for changeset 8403096d1fe7 Message-ID: <20100129103143.10FBB4142F@hg.openjdk.java.net> Changeset: e1176f86805f Author: mikejwre Date: 2010-01-28 11:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/rev/e1176f86805f Added tag jdk7-b81 for changeset 8403096d1fe7 ! .hgtags From john.coomes at sun.com Fri Jan 29 02:31:50 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 29 Jan 2010 10:31:50 +0000 Subject: hg: jdk7/hotspot-rt/corba: Added tag jdk7-b81 for changeset e08a42a2a94d Message-ID: <20100129103153.C98D641430@hg.openjdk.java.net> Changeset: 1e8c1bfad1ab Author: mikejwre Date: 2010-01-28 11:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/corba/rev/1e8c1bfad1ab Added tag jdk7-b81 for changeset e08a42a2a94d ! .hgtags From john.coomes at sun.com Fri Jan 29 02:36:21 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 29 Jan 2010 10:36:21 +0000 Subject: hg: jdk7/hotspot-rt/jaxp: Added tag jdk7-b81 for changeset 204e59d488cd Message-ID: <20100129103621.92EC041433@hg.openjdk.java.net> Changeset: c876ad22e4bf Author: mikejwre Date: 2010-01-28 11:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jaxp/rev/c876ad22e4bf Added tag jdk7-b81 for changeset 204e59d488cd ! .hgtags From john.coomes at sun.com Fri Jan 29 02:36:28 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 29 Jan 2010 10:36:28 +0000 Subject: hg: jdk7/hotspot-rt/jaxws: Added tag jdk7-b81 for changeset f051045fe94a Message-ID: <20100129103628.F1E6D41434@hg.openjdk.java.net> Changeset: 31573ae8eed1 Author: mikejwre Date: 2010-01-28 11:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jaxws/rev/31573ae8eed1 Added tag jdk7-b81 for changeset f051045fe94a ! .hgtags From john.coomes at sun.com Fri Jan 29 02:37:12 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 29 Jan 2010 10:37:12 +0000 Subject: hg: jdk7/hotspot-rt/jdk: 30 new changesets Message-ID: <20100129104719.1CE1941439@hg.openjdk.java.net> Changeset: 7e116fd3a724 Author: ohair Date: 2010-01-04 15:30 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/7e116fd3a724 6910834: TEST: java/io/File/Basic.java fails on Windows CYGWIN environment Reviewed-by: tbell, alanb ! test/java/io/File/Basic.java ! test/java/io/File/basic.sh Changeset: ad19f61a0fa6 Author: ohair Date: 2010-01-04 15:33 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/ad19f61a0fa6 6910835: TESTS: 3 java/io run.sh tests fail when run on Windows XP CYGWIN Reviewed-by: tbell, alanb ! test/java/io/Serializable/evolution/RenamePackage/run.sh ! test/java/io/Serializable/serialver/classpath/run.sh ! test/java/io/Serializable/serialver/nested/run.sh Changeset: f9aa7e58974d Author: ohair Date: 2010-01-04 15:36 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/f9aa7e58974d 6911113: These tests do not work with CYGWIN: java/nio Reviewed-by: tbell, alanb ! test/java/nio/channels/Selector/lots_of_updates.sh ! test/java/nio/channels/spi/AsynchronousChannelProvider/custom_provider.sh ! test/java/nio/file/Files/walk_file_tree.sh ! test/java/nio/file/Path/delete_on_close.sh Changeset: 7595c6a198d3 Author: ohair Date: 2010-01-04 15:38 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/7595c6a198d3 6911117: These tests do not work with CYGWIN: com/sun/jdi Reviewed-by: tbell, alanb ! test/com/sun/jdi/ProcessAttachTest.sh ! test/com/sun/jdi/connect/spi/JdiLoadedByCustomLoader.sh Changeset: caf27afcae8d Author: ohair Date: 2010-01-04 15:41 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/caf27afcae8d 6911131: Test does not work with CYGWIN: sun/management/jmxremote/bootstrap/RmiSslNoKeyStoreTest.sh Reviewed-by: tbell, alanb ! test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh Changeset: f86db0646421 Author: ohair Date: 2010-01-04 15:45 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/f86db0646421 6911112: Tests do not work with CYGWIN: javax/imageio/, javax/script/, and sun/misc/ Reviewed-by: tbell, alanb ! test/javax/imageio/stream/StreamCloserLeak/run_test.sh ! test/javax/script/CommonSetup.sh ! test/javax/script/ProviderTest.sh ! test/sun/misc/URLClassPath/ClassnameCharTest.sh Changeset: 07fdd926aaea Author: ohair Date: 2010-01-04 15:49 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/07fdd926aaea 6911129: These tests do not work with CYGWIN: java/lang Reviewed-by: tbell, alanb ! test/java/beans/Introspector/Test5102804.java ! test/java/lang/ClassLoader/deadlock/TestOneWayDelegate.sh ! test/java/lang/StringCoding/CheckEncodings.sh ! test/java/lang/System/finalization/FinExit.sh ! test/java/lang/annotation/loaderLeak/LoaderLeak.sh ! test/java/lang/instrument/appendToClassLoaderSearch/CommonSetup.sh Changeset: 1d6f315e42f1 Author: ohair Date: 2010-01-04 15:52 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/1d6f315e42f1 6911108: These tests do not work with CYGWIN: java/util Reviewed-by: tbell, alanb ! test/java/util/Currency/PropertiesTest.sh ! test/java/util/PluggableLocale/ExecTest.sh ! test/java/util/ResourceBundle/Bug6299235Test.sh ! test/java/util/ResourceBundle/Control/ExpirationTest.sh ! test/java/util/ServiceLoader/basic.sh Changeset: 6f2a5912f5be Author: ohair Date: 2010-01-04 15:56 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/6f2a5912f5be 6911104: Tests do not work with CYGWIN: tools, sun/tools, and com/sun/tools Reviewed-by: tbell, alanb ! test/com/sun/tools/attach/ApplicationSetup.sh ! test/com/sun/tools/attach/BasicTests.sh ! test/com/sun/tools/attach/CommonSetup.sh ! test/com/sun/tools/attach/PermissionTests.sh ! test/com/sun/tools/attach/ProviderTests.sh ! test/sun/jvmstat/testlibrary/utils.sh ! test/sun/tools/common/ApplicationSetup.sh ! test/sun/tools/common/CommonSetup.sh ! test/sun/tools/jps/jps-help.sh ! test/sun/tools/jstat/jstatHelp.sh ! test/sun/tools/jstat/jstatOptions1.sh ! test/sun/tools/jstatd/jstatdUsage1.sh ! test/sun/tools/native2ascii/Native2AsciiTests.sh ! test/tools/launcher/ChangeDataModel.sh ! test/tools/launcher/ClassPathWildCard.sh ! test/tools/launcher/DefaultLocaleTest.sh ! test/tools/launcher/UnicodeTest.sh Changeset: b7cf91e43c67 Author: ohair Date: 2010-01-05 13:44 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/b7cf91e43c67 Merge Changeset: d30f2e22fffd Author: mchung Date: 2010-01-07 08:14 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/d30f2e22fffd 6911737: Module build: generate modules with native libraries and any other files not in jar Summary: create modules under OUTPUTDIR/modules directory containing resources, native libraries Reviewed-by: alanb, ohair ! make/com/sun/crypto/provider/Makefile ! make/com/sun/java/pack/Makefile ! make/com/sun/java/pack/prop/Makefile ! make/com/sun/jndi/cosnaming/Makefile ! make/com/sun/jndi/dns/Makefile ! make/com/sun/jndi/ldap/Makefile ! make/com/sun/jndi/rmi/registry/Makefile ! make/com/sun/nio/sctp/Makefile ! make/com/sun/org/apache/xml/Makefile ! make/com/sun/rowset/Makefile ! make/com/sun/script/Makefile ! make/com/sun/security/auth/module/Makefile ! make/com/sun/servicetag/Makefile ! make/com/sun/tools/attach/Makefile ! make/common/Defs.gmk ! make/common/Demo.gmk ! make/common/Library.gmk ! make/common/Modules.gmk ! make/common/Program.gmk ! make/common/internal/BinaryPlugs.gmk ! make/common/internal/Resources.gmk ! make/common/shared/Sanity.gmk ! make/java/awt/Makefile ! make/java/fdlibm/Makefile ! make/java/hpi/native/Makefile ! make/java/hpi/windows/Makefile ! make/java/instrument/Makefile ! make/java/java/Makefile ! make/java/java_crw_demo/Makefile ! make/java/java_hprof_demo/Makefile ! make/java/jli/Makefile ! make/java/jvm/Makefile ! make/java/logging/Makefile ! make/java/main/java/Makefile ! make/java/main/javaw/Makefile ! make/java/management/Makefile ! make/java/net/Makefile ! make/java/nio/Makefile ! make/java/npt/Makefile - make/java/redist/FILES.gmk ! make/java/redist/Makefile + make/java/redist/fonts/Makefile + make/java/redist/sajdi/Makefile ! make/java/security/Makefile ! make/java/sql/Makefile ! make/java/text/Makefile ! make/java/verify/Makefile ! make/java/zip/Makefile ! make/javax/crypto/Makefile ! make/javax/imageio/Makefile ! make/javax/print/Makefile ! make/javax/sound/Makefile ! make/javax/sound/jsoundalsa/Makefile ! make/javax/sound/jsoundds/Makefile ! make/javax/sql/Makefile ! make/javax/swing/Makefile ! make/javax/swing/plaf/Makefile ! make/jpda/back/Makefile ! make/jpda/transport/Makefile ! make/jpda/transport/shmem/Makefile ! make/jpda/transport/socket/Makefile ! make/jpda/tty/Makefile ! make/launchers/Makefile ! make/mkdemo/jvmti/Makefile ! make/mkdemo/management/Makefile ! make/mksample/dtrace/Makefile ! make/mksample/jmx/jmx-scandir/Makefile ! make/mksample/nbproject/Makefile ! make/mksample/nio/file/Makefile ! make/mksample/nio/multicast/Makefile ! make/mksample/nio/server/Makefile ! make/mksample/scripting/scriptpad/Makefile ! make/mksample/webservices/EbayClient/Makefile ! make/mksample/webservices/EbayServer/Makefile ! make/modules/Makefile ! make/modules/modules.config ! make/modules/tools/nbproject/project.xml ! make/modules/tools/src/com/sun/classanalyzer/Module.java ! make/sun/applet/Makefile ! make/sun/awt/Makefile ! make/sun/cmm/Makefile ! make/sun/cmm/kcms/Makefile ! make/sun/cmm/lcms/Makefile ! make/sun/dcpr/Makefile ! make/sun/font/Makefile ! make/sun/font/t2k/Makefile ! make/sun/headless/Makefile ! make/sun/image/generic/Makefile ! make/sun/image/vis/Makefile ! make/sun/jar/Makefile ! make/sun/javazic/Makefile ! make/sun/jawt/Makefile ! make/sun/jconsole/Makefile ! make/sun/jdbc/Makefile ! make/sun/jdga/Makefile ! make/sun/jkernel/Makefile ! make/sun/jpeg/Makefile ! make/sun/launcher/Makefile ! make/sun/management/Makefile ! make/sun/native2ascii/Makefile ! make/sun/net/others/Makefile ! make/sun/net/spi/nameservice/dns/Makefile - make/sun/nio/FILES_java.gmk ! make/sun/nio/Makefile + make/sun/nio/cs/FILES_java.gmk + make/sun/nio/cs/Makefile ! make/sun/org/mozilla/javascript/Makefile ! make/sun/pisces/Makefile ! make/sun/rmi/cgi/Makefile ! make/sun/rmi/oldtools/Makefile ! make/sun/rmi/registry/Makefile ! make/sun/rmi/rmi/Makefile ! make/sun/rmi/rmic/Makefile ! make/sun/rmi/rmid/Makefile ! make/sun/security/ec/Makefile ! make/sun/security/jgss/wrapper/Makefile ! make/sun/security/krb5/Makefile ! make/sun/security/mscapi/Makefile ! make/sun/security/pkcs11/Makefile ! make/sun/security/smartcardio/Makefile ! make/sun/security/tools/Makefile ! make/sun/serialver/Makefile ! make/sun/splashscreen/Makefile ! make/sun/text/Makefile ! make/sun/tools/Makefile ! make/sun/tracing/dtrace/Makefile ! make/sun/xawt/Makefile Changeset: d36fa10de3cb Author: darcy Date: 2010-01-07 19:42 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/d36fa10de3cb 6915171: Clarify checked/unchecked status of Throwable and its subclasses Reviewed-by: dholmes ! src/share/classes/java/lang/Error.java ! src/share/classes/java/lang/Exception.java ! src/share/classes/java/lang/RuntimeException.java ! src/share/classes/java/lang/Throwable.java Changeset: 755dd6bdccca Author: alanb Date: 2010-01-09 19:32 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/755dd6bdccca 6907760: (file) OVERFLOW event should cause pending events to be purged Reviewed-by: chegar ! src/share/classes/sun/nio/fs/AbstractWatchKey.java + test/java/nio/file/WatchService/OverflowEventIsLoner.java Changeset: 0f0aee89e282 Author: alanb Date: 2010-01-10 12:29 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/0f0aee89e282 6913877: (fs) AsynchronousFileChannel.write can return wrong result under load [win] Reviewed-by: chegar ! src/windows/classes/sun/nio/ch/WindowsAsynchronousFileChannelImpl.java ! src/windows/native/sun/nio/ch/WindowsAsynchronousFileChannelImpl.c + test/java/nio/channels/AsynchronousFileChannel/LotsOfWrites.java Changeset: fc5578368a0c Author: chegar Date: 2010-01-11 16:04 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/fc5578368a0c 6915313: Reorganize implementation to make it more feasible to port to JDK6 Summary: This makes the SCTP implementation easier to run with Suns JDK6. Reviewed-by: alanb ! make/com/sun/nio/sctp/FILES_java.gmk ! make/com/sun/nio/sctp/mapfile-vers ! src/solaris/classes/sun/nio/ch/SctpChannelImpl.java ! src/solaris/classes/sun/nio/ch/SctpMultiChannelImpl.java ! src/solaris/classes/sun/nio/ch/SctpNet.java ! src/solaris/classes/sun/nio/ch/SctpServerChannelImpl.java - src/solaris/classes/sun/nio/ch/SctpSocketDispatcher.java ! src/solaris/native/sun/nio/ch/SctpNet.c Changeset: 9d38ab65acff Author: darcy Date: 2010-01-11 15:35 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/9d38ab65acff 6828204: NavigableSet.subSet() documentation refers to nonexistent parameters Reviewed-by: martin ! src/share/classes/java/util/NavigableMap.java ! src/share/classes/java/util/NavigableSet.java Changeset: ba74184a952c Author: mchung Date: 2010-01-12 15:19 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/ba74184a952c 6915502: Legal notice repairs needed in jdk/make/modules/tools Summary: Fix the legal notice in jdk/make/modules/tools Reviewed-by: tbell ! make/modules/tools/build.xml ! make/modules/tools/nbproject/project.properties ! make/modules/tools/nbproject/project.xml Changeset: fa0cb25202d8 Author: darcy Date: 2010-01-14 20:05 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/fa0cb25202d8 6908218: java.lang.Deprecated should have explicit @Target meta-annotation. Reviewed-by: mernst ! src/share/classes/java/lang/Deprecated.java ! src/share/classes/java/lang/SuppressWarnings.java Changeset: 51d62db10c93 Author: mullan Date: 2010-01-15 09:48 -0500 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/51d62db10c93 6915939: Exception should be thrown if OCSP SingleResponses contain unresolved critical extensions Reviewed-by: xuelei ! src/share/classes/sun/security/provider/certpath/OCSPResponse.java Changeset: 074f79397dda Author: mullan Date: 2010-01-15 09:58 -0500 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/074f79397dda Merge Changeset: b019cdae32dd Author: chegar Date: 2010-01-15 16:31 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/b019cdae32dd 6916922: (sctp) SO_RCVBUF & SO_SNDBUF returns twice the value set Reviewed-by: alanb ! src/solaris/native/sun/nio/ch/SctpNet.c ! test/com/sun/nio/sctp/SctpChannel/SocketOptionTests.java Changeset: 64f7b789aecc Author: lana Date: 2010-01-15 15:36 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/64f7b789aecc Merge - src/share/classes/sun/dyn/util/BytecodeSignature.java Changeset: 680d7d312a30 Author: chegar Date: 2010-01-18 14:01 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/680d7d312a30 6916890: (sctp) SctpChannel.send may cause IAE if given a heap buffer with an offset Reviewed-by: alanb ! src/solaris/classes/sun/nio/ch/SctpChannelImpl.java ! src/solaris/classes/sun/nio/ch/SctpMultiChannelImpl.java ! test/com/sun/nio/sctp/SctpChannel/Send.java ! test/com/sun/nio/sctp/SctpMultiChannel/Send.java Changeset: e0870a19b09e Author: chegar Date: 2010-01-18 14:56 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/e0870a19b09e 6917317: (sctp) Remove dependency on handleSocketError Reviewed-by: alanb ! src/solaris/native/sun/nio/ch/SctpNet.c ! test/com/sun/nio/sctp/SctpChannel/Connect.java Changeset: 42894ae6671c Author: alanb Date: 2010-01-18 15:21 +0000 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/42894ae6671c 6917021: (file) copyTo/moveTo can overrwrite existing file when target associated with custom provider Reviewed-by: chegar ! src/share/classes/sun/nio/fs/AbstractPath.java ! test/java/nio/file/Path/CopyAndMove.java + test/java/nio/file/Path/PassThroughFileSystem.java ! test/java/nio/file/TestUtil.java Changeset: 7f2b99bd5123 Author: ptisnovs Date: 2010-01-18 17:53 +0100 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/7f2b99bd5123 6917663: test/java/security/Provider/Turkish.java not samevm friendly Summary: Added othervm flag to ensure that this test will run in isolation. Reviewed-by: alanb ! test/java/security/Provider/Turkish.java Changeset: 056d88d0f4d4 Author: mchung Date: 2010-01-18 15:23 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/056d88d0f4d4 6916217: make/modules/Makefile requires ALT_JDK_IMPORT_PATH Summary: build modules not depending on ALT_JDK_IMPORT_PATH being set Reviewed-by: alanb ! make/common/Defs.gmk ! make/common/Modules.gmk ! make/modules/Makefile ! make/modules/optional.depconfig ! make/modules/tools/Makefile Changeset: 8339fd49bf6b Author: weijun Date: 2010-01-19 11:43 +0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/8339fd49bf6b 6917791: KeyTabEntry, when the byte value smaller then 16, the string drop '0' Reviewed-by: xuelei ! src/share/classes/sun/security/krb5/internal/ktab/KeyTabEntry.java + test/sun/security/krb5/ktab/KeyString.java Changeset: 10b993d417fc Author: lana Date: 2010-01-22 09:34 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/10b993d417fc Merge - make/java/redist/FILES.gmk - make/sun/nio/FILES_java.gmk - src/solaris/classes/sun/nio/ch/SctpSocketDispatcher.java Changeset: 31ed4132f345 Author: mikejwre Date: 2010-01-28 11:26 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/jdk/rev/31ed4132f345 Added tag jdk7-b81 for changeset 10b993d417fc ! .hgtags From john.coomes at sun.com Fri Jan 29 02:54:13 2010 From: john.coomes at sun.com (john.coomes at sun.com) Date: Fri, 29 Jan 2010 10:54:13 +0000 Subject: hg: jdk7/hotspot-rt/langtools: 18 new changesets Message-ID: <20100129105516.31F5D4143B@hg.openjdk.java.net> Changeset: 0220a3ab1a40 Author: jjg Date: 2010-01-06 13:09 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/0220a3ab1a40 6307206: missing lint control for pkg-info Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/resources/compiler.properties Changeset: d4e0ae9b4ecb Author: jjg Date: 2010-01-06 13:16 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/d4e0ae9b4ecb 6855236: Compiler Tree API TreePath class generates NullPointerException from Iterator Reviewed-by: darcy + test/tools/javac/T6855236.java Changeset: c315df443ff2 Author: jjg Date: 2010-01-08 11:11 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/c315df443ff2 6878147: Keywords.log is declared and initialized but unused Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/parser/Keywords.java Changeset: 2d15bf467aea Author: jjg Date: 2010-01-08 11:16 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/2d15bf467aea 6878146: incorrect unused value should be deleted Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/util/LayoutCharacters.java Changeset: 0e75f9f6d1d4 Author: jjg Date: 2010-01-08 11:28 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/0e75f9f6d1d4 6665791: com.sun.source.tree.MethodTree.toString() does not output default values Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/tree/Pretty.java + test/tools/javac/T6665791.java Changeset: aa06467be3a2 Author: jjg Date: 2010-01-08 11:32 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/aa06467be3a2 6915078: ALT_JDK_IMPORT_PATH typo in langtools/make/Makefile Reviewed-by: tbell ! make/Makefile Changeset: 96c56220dcc2 Author: jjg Date: 2010-01-08 13:14 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/96c56220dcc2 6915152: langtools build failures with import.jdk on Windows Reviewed-by: ohair ! make/build.xml Changeset: d02e99d31cc0 Author: jjg Date: 2010-01-11 14:05 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/d02e99d31cc0 6326754: Compiler will fail to handle -Xmaxerrs with -ve numbers Reviewed-by: ksrini ! src/share/classes/com/sun/tools/javac/util/Log.java + test/tools/javac/T6326754.java + test/tools/javac/T6326754.out Changeset: f983c1dca202 Author: jjg Date: 2010-01-11 14:09 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/f983c1dca202 6764569: [PATCH] Fix unused imports in list resource bundles Reviewed-by: ksrini Contributed-by: jesse.glick at sun.com ! make/tools/CompileProperties/CompileProperties.java ! make/tools/CompileProperties/CompilePropertiesTask.java Changeset: ca6bc36b2305 Author: jjg Date: 2010-01-11 14:12 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/ca6bc36b2305 6915476: java.util.regex.PatternSyntaxException in com.sun.tools.javac.nio.PathFileObject Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/nio/PathFileObject.java ! test/tools/javac/nio/compileTest/CompileTest.java Changeset: 14a4c45ef734 Author: jjg Date: 2010-01-11 14:17 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/14a4c45ef734 6915497: test test/tools/javac/nio/compileTest/CompileTest.java fails under Hudson Reviewed-by: darcy ! test/tools/javac/nio/compileTest/CompileTest.java Changeset: 51011e02c02f Author: jjg Date: 2010-01-11 16:18 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/51011e02c02f 6909470: langtools stub generator should prune unnecessary imports Reviewed-by: darcy ! make/tools/GenStubs/GenStubs.java Changeset: ccd51af119b4 Author: jjg Date: 2010-01-13 17:39 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/ccd51af119b4 6472751: SourcePositions.getStartPos returns incorrect value for enum constants 6567414: javac compiler reports no source file or line on enum constant declaration error Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/parser/JavacParser.java + test/tools/javac/T6472751.java + test/tools/javac/T6567414.java + test/tools/javac/T6567414.out Changeset: b96ad32c004a Author: jjg Date: 2010-01-14 17:18 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/b96ad32c004a 6917122: provide utility method to find the inner most type of a type tree Reviewed-by: darcy, jjg Contributed-by: mali at csail.mit.edu, mernst at cs.washington.edu ! src/share/classes/com/sun/tools/javac/tree/Pretty.java ! src/share/classes/com/sun/tools/javac/tree/TreeInfo.java Changeset: 2d0f4e7b44b2 Author: jjg Date: 2010-01-14 17:23 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/2d0f4e7b44b2 6916986: handle spaces in langtools launcher path Reviewed-by: darcy, jjg Contributed-by: mali at csail.mit.edu, mernst at cs.washington.edu ! src/share/bin/launcher.sh-template Changeset: a84062774f0e Author: lana Date: 2010-01-15 15:37 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/a84062774f0e Merge Changeset: cfabfcf9f110 Author: lana Date: 2010-01-22 09:34 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/cfabfcf9f110 Merge Changeset: 47003a3622f6 Author: mikejwre Date: 2010-01-28 11:27 -0800 URL: http://hg.openjdk.java.net/jdk7/hotspot-rt/langtools/rev/47003a3622f6 Added tag jdk7-b81 for changeset cfabfcf9f110 ! .hgtags From jonathan.gibbons at sun.com Fri Jan 29 16:07:56 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Sat, 30 Jan 2010 00:07:56 +0000 Subject: hg: jdk7/tl/langtools: 6919889: assorted position errors in compiler syntax trees Message-ID: <20100130000759.E314C4152E@hg.openjdk.java.net> Changeset: 699ecefbdd4e Author: jjg Date: 2010-01-29 16:06 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/699ecefbdd4e 6919889: assorted position errors in compiler syntax trees Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/code/Flags.java ! src/share/classes/com/sun/tools/javac/parser/JavacParser.java ! src/share/classes/com/sun/tools/javac/tree/TreeInfo.java ! src/share/classes/com/sun/tools/javac/tree/TreeMaker.java + test/tools/javac/T6654037.java ! test/tools/javac/generics/diamond/neg/Neg01.out ! test/tools/javac/generics/diamond/neg/Neg02.out ! test/tools/javac/generics/diamond/neg/Neg03.out ! test/tools/javac/generics/diamond/neg/Neg04.out + test/tools/javac/treepostests/TreePosTest.java From jonathan.gibbons at sun.com Fri Jan 29 16:55:59 2010 From: jonathan.gibbons at sun.com (jonathan.gibbons at sun.com) Date: Sat, 30 Jan 2010 00:55:59 +0000 Subject: hg: jdk7/tl/langtools: 6499119: Created package-info class file modeled improperly; ... Message-ID: <20100130005605.A81D141542@hg.openjdk.java.net> Changeset: 8e638442522a Author: jjg Date: 2010-01-29 16:54 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/8e638442522a 6499119: Created package-info class file modeled improperly 6920317: package-info.java file has to be specified on the javac cmdline, else it will not be avail. Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/code/Symbol.java ! src/share/classes/com/sun/tools/javac/comp/Enter.java ! src/share/classes/com/sun/tools/javac/comp/Lower.java ! src/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java + test/tools/javac/processing/6499119/ClassProcessor.java + test/tools/javac/processing/6499119/package-info.java + test/tools/javac/processing/T6920317.java