Re: RFR(xs): JDK-8214460 fix broken macOS build

2018-11-28 Thread Tim Bell

On 11/28/18 18:18, Stuart Marks wrote:


https://bugs.openjdk.java.net/browse/JDK-8214460

Please review this small fix to correct broken macOS build caused by the
fix for JDK-8214014. Patch appended below.




-cf_socksHost = NULL,
+cf_socksHost = NULL;
  int
  httpPort = 80, // Default proxy port values
  httpsPort = 443,
  ftpPort = 21,
-socksPort = 1080,
+socksPort = 1080;


Looks good, Stuart

Tim



Re: RFR: JDK-8207243: Fix translation filtering to also support zh_HK and zh_TW

2018-07-16 Thread Tim Bell

Erik:


The zh_HK translation is mostly generated by copying the zh_TW
translation. Because of this, there are different types of rules defined
for generating those and the recently added filtering mechanism won't
work for it. This patch fixes that as well as adds those translations to
the Oracle filter list. It also further modifies the
logging/LocalizedLevelName test to only use translations provided by
Oracle.

Webrev: http://cr.openjdk.java.net/~erikj/8207243/webrev.01/index.html

Bug: https://bugs.openjdk.java.net/browse/JDK-8207243


Looks good.

/Tim




Re: RFR: JDK-8066474: Remove the lib/$ARCH directory from Linux and Solaris images

2016-11-18 Thread Tim Bell

Erik:


Please review this change which removes the $ARCH sub directory in the
lib directory of the runtime images, which is an outstanding issue from
the new runtime images. Most of the changes are in the build, but there
are some in hotspot and launcher source. I have verified -testset
hotspot and default in JPRT as well as tried to run as many jtreg tests
as possible locally. I could only really find two tests that needed to
be adjusted.

Bug: https://bugs.openjdk.java.net/browse/JDK-8066474

Webrev: http://cr.openjdk.java.net/~erikj/8066474/webrev.01



hotspot/test/runtime/ThreadSignalMask/exeThreadSignalMask.c
jdk/make/copy/Copy-java.desktop.gmk
jdk/src/java.base/unix/classes/java/lang/ProcessImpl.java

These legal notices need to be updated for 2016.  No need to redo the 
webrev if this is all the feedback you get.


Looks fine otherwise.

Tim



Re: RFR: JDK-8166648,,jib make run-test for langtools results in intermittent failures on windows-x86

2016-10-07 Thread Tim Bell

Again with the review link .. see below:

On 10/07/16 06:40, Tim Bell wrote:

Hello

The change of HotSpot runtimes on 32-bit Windows [1] has been a source
of langtools test failures due to memory space exhaustion.

On our Windows build/test clients, the combination of the C2 runtime and
parallel GC causes about 20 extra threads to be started in each VM.
These added thread stacks, plus heap management in C2, result in too
much memory pressure to fit the workload into 32-bit VMs.

This fix will run langtools jtreg tests using the serial garbage
collector instead of using the default collector (parallel GC).


http://cr.openjdk.java.net/~tbell/8166648/



Testing:
   -5 out of 5 jobs (with the fix) passed langtools testing
   -4 out of 5 control jobs (without the fix) failed testing in
windows_i586_6.3-product-c2-langtools_jtreg


Thanks in advance-

Tim

[1] JDK-8154209 "Remove client VM from default JIB profile on
windows-x86 and linux-x86"
https://bugs.openjdk.java.net/browse/JDK-8154209




RFR: JDK-8166648,,jib make run-test for langtools results in intermittent failures on windows-x86

2016-10-07 Thread Tim Bell

Hello

The change of HotSpot runtimes on 32-bit Windows [1] has been a source 
of langtools test failures due to memory space exhaustion.


On our Windows build/test clients, the combination of the C2 runtime and 
parallel GC causes about 20 extra threads to be started in each VM. 
These added thread stacks, plus heap management in C2, result in too 
much memory pressure to fit the workload into 32-bit VMs.


This fix will run langtools jtreg tests using the serial garbage 
collector instead of using the default collector (parallel GC).


Testing:
   -5 out of 5 jobs (with the fix) passed langtools testing
   -4 out of 5 control jobs (without the fix) failed testing in 
windows_i586_6.3-product-c2-langtools_jtreg



Thanks in advance-

Tim

[1] JDK-8154209 "Remove client VM from default JIB profile on 
windows-x86 and linux-x86"

https://bugs.openjdk.java.net/browse/JDK-8154209


Re: JDK 9 RFR of JDK-8162746: VersionCheck.java failure after change for JDK-8160921

2016-07-28 Thread Tim Bell

Hi Joe:

When the binary p2launcher was renamed to jweblauncher (JDK-8160921), 
the test


tools/launcher/VersionCheck.java

did not get the corresponding update and started failing.

Please review the patch below to address this.


Looks good to me.

Thanks-

Tim


Thanks,

-Joe

--- a/test/tools/launcher/VersionCheck.javaThu Jul 28 12:09:07 
2016 -0700
+++ b/test/tools/launcher/VersionCheck.javaThu Jul 28 15:11:02 
2016 -0700

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights 
reserved.
+ * Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights 
reserved.

  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,7 @@

 /**
  * @test
- * @bug 6545058 6611182 8016209 8139986
+ * @bug 6545058 6611182 8016209 8139986 8162746
  * @summary validate and test -version, -fullversion, and internal, 
as well as

  *  sanity checks if a tool can be launched.
  * @compile VersionCheck.java
@@ -56,7 +56,7 @@
 "jcontrol",
 "jmc",
 "jmc.ini",
-"jp2launcher",
+"jweblauncher",
 "jvisualvm",
 "packager",
 "ssvagent",
@@ -93,11 +93,11 @@
 "jps",
 "jrunscript",
 "jjs",
-"jp2launcher",
 "jsadebugd",
 "jstack",
 "jstat",
 "jstatd",
+"jweblauncher",
 "jvisualvm",
 "keytool",
 "kinit",





Re: RFR: JDK-8076583: move jdk.Exported from langtools to jdk

2015-04-03 Thread Tim Bell

@Build folk:
There is a trivial change to a makefile in the langtools repo.


Looks good to me.

Tim


On 04/02/15 16:52, Jonathan Gibbons wrote:

Sorry for the relatively wide distribution.

JDK-8076583 is a conceptually simple cleanup, to move the source file 
for the jdk.Exported class from the langtools repo (where it is a 
singleton outlier) to the jdk repo (alongside most of the rest of the 
classes in the jdk package hierarchy). The class was originally placed 
in the langtools repo for bootstrapping reasons that no longer apply.


As a result of moving the source file, references to java.base in a 
number of places in the langtools repo can be cleaned up.


@Build folk:
There is a trivial change to a makefile in the langtools repo.

@Core-libs folk:
The source file gets moved into the jdk/ repo.

@Compiler-dev folk:
We can remove references to the java.base folder from the private Ant 
build, and from IDE support files.


JBS: https://bugs.openjdk.java.net/browse/JDK-8076583
Webrev: http://cr.openjdk.java.net/~jjg/8076583/webrev.00/

-- Jon




Re: RFR: JDK-8074096 Disable (most) native warnings in JDK on a per-library basis

2015-03-04 Thread Tim Bell

Magnus:

Looks good to me as well.

Tim

On 03/04/15 05:31, Erik Joelsson wrote:

Hello,

Really nice to finally see this patch getting done!

Only one comment:

flags.m4:
In the grep expression, could you move the extra [] outside of the 
actual command line options to grep so that the command line could be 
copied to the shell for debugging in the future? Also, how hard would 
it be to instead do AC_COMPILE_IFELSE with a dummy warning to instead 
test for capability?


/Erik

On 2015-03-04 14:17, Magnus Ihse Bursie wrote:
When building the native code in the jdk repo, a lot of warnings are 
generated. So many that it's hard to spot any new issues.


While the ultimate goal must be to address and fix these warnings 
individually, this bug is about disabling these warnings where they 
occur, so that it is easier to spot new warnings, and that the 
existing warnings can be addressed one at a time.


Disabling warnings instead of fixing them can be problematic. If you 
are too broad with disabling warnings, you might hide future 
problems. On the other hand, there have been a lot of warnings that 
indicate serious problems that has been hidden in plain sight for a 
very long time in the code base anyway.


I have opted to disable warnings at the library level. Disabling 
warnings globally would be too broad. Disabling per file would have 
been too tedious. Many warnings also tend to repeat across multiple 
files in the same library, due to e.g. less well-suited programming 
style or design choice. A library also seems like a suitable chunk of 
work to address later on, in trying to get rid of the source of the 
warnings.


This fix will not get rid of all warnings, but the bulk of them. It 
will make the remaining warnings stick out more. The few warnings 
that remain are either:

* Not possible to disable.
* Not resulting from native compilation (but from linking, or 
javadoc, etc).
* Not possible to disable with this framework (this goes for builds 
on pre-4.4 gcc, which Oracle currently does as default on macosx), 
and libfontmanager on Solaris, which mixes C and C++ code. (While the 
solstudio C compiler does not fail on requests to disable C++ 
warnings, the converse is unfortunately not true). It did not seem 
worth the trouble to build a more extensible framework to handle 
this, compared to actually fixing these warnings.


Note that the current JPRT build environment in Oracle uses a pre-4.4 
gcc for macosx by default, so the default macosx build will still 
contain warnings. When building with --with-toolchain-type=clang, the 
clang warning disabling kicks in. (This will be the default in JPRT 
later on this year.)


I intend to file individual bugs to handle these remaining warnings, 
so the net result will be a completely warning free build.


I also intend to file individual bugs on all the libraries that has 
had warnings disabled. I expect the outcome of these bugs to be either:


A) The code modified so it does not trigger warnings, and the 
warnings re-enabled, or


B) The warnings (or a subset of them) kept disabled, but a comment 
added to the makefile describing why this is the proper course of 
action.


Not all bugs might be worth fixing. For instance, the GCC warnings 
type-limits, sign-compare, pointer-to-int-cast, conversion-null, 
deprecated-declarations, clobbered, int-to-pointer-cast and 
type-limits are all more or less benign, and is possibly the result 
of a false positive.


On the other hands, warnings such as format-nonliteral, 
unused-result, maybe-uninitialized, format, format-security, 
int-to-pointer-cast, reorder and delete-non-virtual-dtor are more 
likely to actually point to real issues. I recommend anyone finding 
these warnings on a library they care about to try and fix them as 
soon as possible.


Here is a summary of the libraries and binaries that have gotten 
warnings disabled. I'm not sure about what group owns all these 
libraries; if I missed sending this mail to the correct list, please 
help me and forward it.


* libunpack
* libfdlibm
* libverify
* libjava
* libzip
* libjli/libjli_static
* libj2gss
* libsunec
* libj2pkcs11
* libnet
* libnio
* libosxkrb5
* libosxapp
* libosx
* libapplescriptengine
* libjsound
* libjsoundalsa
* libmlib_image
* libawt
* libawt_xawt
* libawt_lwawt
* liblcms
* libjavajpeg
* libawt_headless
* libfontmanager
* libsplashscreen
* unpack200
* The JVMTI demos compiledMethodLoad and waiters

Bug: https://bugs.openjdk.java.net/browse/JDK-8074096

WebRev: 
http://cr.openjdk.java.net/~ihse/JDK-8074096-disable-native-warnings/webrev.01


/Magnus







Re: RFR: JDK-8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)

2015-01-12 Thread Tim Bell

Erik:

Looks good to me.  Thanks for picking this up - I struggled with the 
problem for months.


Tim

Please review this patch, which adds support for building with 
different versions of Visual Studio and in particular adds support for 
VS2013. In order to control which version to use, I've introduced a 
new configure parameter --with-toolchain-version. On windows, this 
parameter will have the valid values 2010, 2012 and 2013. The default 
is still 2010. Note that 2012 was added for convenience, but has not 
been tested to actually work. The longer term goal is to switch the 
official compiler used for JDK 9 to VS2013. This is just the first step.


The main difference that needed to be addressed was that 
_STATIC_CPPLIB is no longer supported since VS2012, so we will now 
have to bundle another runtime dll (MSVCP). Also, since the build 
needs to be compatible with multiple versions of VS, we can no longer 
hard code the name msvcr100.dll. I changed the names of the dlls into 
macros that get added to the preprocessor command line. Note that the 
implementation for msvcp*.dll in java_md.c could perhaps be more 
elegant. I'm not familiar enough with the APIs, but if someone would 
like to improve on it, please do.


Bug: https://bugs.openjdk.java.net/browse/JDK-8042707
Webrevs:
http://cr.openjdk.java.net/~erikj/8042707/webrev.root.01/
http://cr.openjdk.java.net/~erikj/8042707/webrev.jdk.01/

Here is a patch for make/jprt.properties that adds new build and test 
platforms using the new compilers for windows and macosx. If you apply 
this and run JPRT, windows and mac platforms will be built and tested 
with both the old and the new compilers. I would like to commit this 
change too, but will do it separately later.


diff -r ef5c7075496d make/jprt.properties
--- a/make/jprt.properties
+++ b/make/jprt.properties
@@ -115,6 +115,12 @@
 ${my.i586.default.build.configure.args}\
 ${jprt.productOpen.build.configure.args}

+jprt.windows_i586_6.2.build.configure.args= \
+ --with-toolchain-version=2013 \
+${jprt.i586.build.configure.args}
+jprt.windows_x64_6.2.build.configure.args= \
+--with-toolchain-version=2013
+
 
 #
 # Build targets and options (default/jdk)
@@ -130,8 +136,11 @@
 linux_i586_2.6-{product|fastdebug},\
 linux_x64_2.6-{product|fastdebug},\
 macosx_x64_10.7-{product|fastdebug},\
-windows_i586_6.1-{product|fastdebug},\
-windows_x64_6.1-{product|fastdebug}
+macosx_x64_10.9-{product|fastdebug},\
+windows_i586_6.1-{product|fastdebug}, \
+ windows_x64_6.1-{product|fastdebug}, \
+ windows_i586_6.2-{product|fastdebug}, \
+windows_x64_6.2-{product|fastdebug}

 # Test target list (no fastdebug  limited c2 testing)
 my.test.target.set=\
@@ -140,8 +149,11 @@
 linux_i586_2.6-product-{c1|c2}-TESTNAME,\
 linux_x64_2.6-product-c2-TESTNAME,\
 macosx_x64_10.7-product-c2-TESTNAME,\
+macosx_x64_10.9-product-c2-TESTNAME,\
 windows_i586_6.1-product-c1-TESTNAME,\
-windows_x64_6.1-product-c2-TESTNAME
+windows_x64_6.1-product-c2-TESTNAME,\
+windows_i586_6.2-product-c1-TESTNAME,\
+windows_x64_6.2-product-c2-TESTNAME

 # Default vm test targets (testset=default)
 my.test.targets.default=\

/Erik




Re: JDK 9 RFR of 8058664: Bad fonts in BigIntegerTest

2014-09-17 Thread Tim Bell

On 09/17/14 10:46, Alan Bateman wrote:

On 17/09/2014 18:43, Brian Burkhalter wrote:

Hello,

Issue:https://bugs.openjdk.java.net/browse/JDK-8058664
Webrev:http://cr.openjdk.java.net/~bpb/8058664/webrev.00/

Somehow some bad fonts got in to the line prefixes of some comments 
and none of the tools caught it.


Too bad - this is a weakness in the tools we use...




    Looks good :-)



Looks good to me as well - sorry for the DUP bug report JDK-8058669

Tim



Re: JDK 9 RFR of 8039474: sun.misc.CharacterDecoder.decodeBuffer should use getBytes(iso8859-1)

2014-04-15 Thread Tim Bell

On 04/15/14 16:47, Ulf Zibis wrote:

But where are the original attachments e.g. webrevs, patches ?
Are they lost forever ? 


No, they are there on the new JBS bug reports.  For some reason they are 
not visible to users outside Oracle.


I will see if that can be changed.

Regards-

Tim



Re: JDK 9 RFR of 8039474: sun.misc.CharacterDecoder.decodeBuffer should use getBytes(iso8859-1)

2014-04-10 Thread Tim Bell

On 04/10/14 19:26, Ulf Zibis wrote:

BTW, where are these links gone:


This part of the question I can handle.

The six digit Bug numbers came from the legacy OpenJDK bugzilla instance.

Before it was shut down, those bug reports were transferred to JBS. In 
the process, they were assigned new JDK-nnn bug numbers, so you will 
be able to view them on the new system:


Bug 100092 -- Speed-up FastCharsetProvider 
https://bugs.openjdk.java.net/show_bug.cgi?id=100092


New URL: https://bugs.openjdk.java.net/browse/JDK-6790402

Bug 100095 -- Avoid 2-step lookup in sun.nio.cs charset providers 
https://bugs.openjdk.java.net/show_bug.cgi?id=100095


New URL: https://bugs.openjdk.java.net/browse/JDK-6850361

Bug 100098 -- Make sun.nio.cs.* charset objects light-weight 
https://bugs.openjdk.java.net/show_bug.cgi?id=100098 


New URL: https://bugs.openjdk.java.net/browse/JDK-6862158

In general, if you saved an old Bugzilla ID (six digits, for example 
100092), you should be able to find it in JBS by visiting this URL:


  https://bugs.openjdk.java.net/issues/?jql=

And doing a simple search for the string id=100092


Hope this helps-

Tim Bell



Re: RFR: jdk9: 8029997: [infra] remove Solaris ISA directories and the links

2013-12-20 Thread Tim Bell

Hi Kumar:

Please review the removal of  ISA (Instruction Specific Architecture) 
directories namely sparcv9, amd64
and the symlinks in these directories,   this was provided to aid 
transition to jdk8, where solaris 32-bit was

removed, and the 32-bit binaries were replaced with 64-bit versions.

http://cr.openjdk.java.net/~ksrini/8029997/webrev.0/


Three cheers for code deletion!  Looks good to me.

Tim



Re: 8029805/8029806: Remove XXX addPropertyChangeListener and removePropertyChangeListener methods

2013-12-10 Thread Tim Bell

Hi Alan:



(This one is for the jdk9-dev forest once it is created)

The addPropertyChangeListener and removePropertyChangeListener methods 
defined by Pack200.{Packer,Unpacker} and LogManager methods are 
deprecated and flagged with a warning that they will be removed in a 
future release. This is highlighted in the EDR and Public Review of 
JSR 337 and also flagged in JEP 162.


I'd like to swing the axe early in JDK 9 so as to give every 
opportunity for anything that might have a dependency. There are a few 
other modularity related changes that need to go in early too but this 
is the only one that involves the removal of methods.


The webrev with the changes is here:

http://cr.openjdk.java.net/~alanb/8029805%2b8029806/webrev/

I've cc'ed build-dev as there are make file changes to remove the 
de-beaning rules (these methods do not exist in subset Profiles of 
Java SE and were removed as part of the build).


The code deletions in the make files look good.


Tim



Re: RFR: Changes to disable and/or remove Solaris 32-bit from JDK8

2013-09-08 Thread Tim Bell

Kumar - the makefile changes look good to me.

Tim

On 09/ 7/13 03:50 AM, Staffan Larsen wrote:

This is a welcome change. I've looked at the serviceability test and the 
changes look good except:

test/demo/jvmti/DemoRun.java
test/sun/tools/jhat/HatRun.java
   - Looks like there are still some -d64 remnants that I wasn't expecting.

Thanks,
/Staffan

On 6 sep 2013, at 22:17, Kumar Srinivasan kumar.x.sriniva...@oracle.com wrote:


On 9/6/2013 12:21 PM, Alan Bateman wrote:

On 06/09/2013 17:47, Kumar Srinivasan wrote:

Hello,

Please review the changes to remove Solaris 32-bit binaries from JDK8 distros,
at this time the dual mode support in the launcher is being disabled.

Message regarding this:
http://mail.openjdk.java.net/pipermail/jdk8-dev/2013-September/003159.html

The jdk changes are here:
http://cr.openjdk.java.net/~ksrini/8020552/webrev.jdk.0/

The top forest changes are here:
http://cr.openjdk.java.net/~ksrini/8020552/webrev.jdk8.0/

I haven't studied the changes yet but I see you've updated 
test/java/nio/channels/spi/SelectorProvider/inheritedChannel/run_tests.sh. I don't think 
you need the changes at L42-48, instead you can just hg rm the 32-bit 
libraries that are in test/java/nio/channels/spi/SelectorProvider/inheritedChannel/lib.

Will do, I was wondering about those libraries.


You might want to bring the changes to serviceability-dev because of the change 
to the JDI launching connector and the JDI tests.

cc'ed.

Thanks

Kumar


-Alan.






Re: Please review changes for JDK-8012975: Remove rhino from jdk8

2013-05-10 Thread Tim Bell

Hi Sundar

Looks like you have resolved the subtleties of profiles with Alan.

The rest looks good to me.

Tim


On 05/10/13 05:47 AM, A. Sundararajan wrote:
Okay, thanks. com.sun.script.util is not supported API (no CCC done 
for it in the past). I'll remove it as suggested and run make 
profiles to check


Thanks
-Sundar

On Friday 10 May 2013 04:09 PM, Alan Bateman wrote:

On 10/05/2013 11:23, A. Sundararajan wrote:
com/sun/script/util is generic utility package for script engine 
implementations. Only com/sun/script/javascript package is being 
removed. Since we include javax/script for profile 3, should we also 
include com/sun/script/util ?
Is com.sun.script.util meant to be a supported/documented API? Do you 
know if anything outside of the JDK is using it? Is Nashorn using it? 
The only usage I see is in com.sun.script.javascript so this is why I 
assumed that com.sun.script.** would go away.


As you know, we moved javax.script to compact1. It doesn't require 
com.sun.script.util of course but if this is used by 3rd party 
scripting engines then it may have to be added to compact1 builds to 
get them working.




On refs.allowed, I'll remove it. How should I check this?
make profiles on Linux should be fine. As part of the profiles 
build it will run a dependency analyzer that checks for references to 
types that do not exist (this is catch configuration issues).


-Alan






Re: Please review changes for JDK-8012975: Remove rhino from jdk8

2013-05-03 Thread Tim Bell

On 05/ 2/13 01:24 PM, I wrote:

Hi Sundar:

Oracle JDK includes Rhino based javax.script implementation (which 
lives mostly in closed code). Rhino is being removed from Oracle 
JDK builds and there are the changes to the jdk open repository as 
well like com.sun.script.javascript package, makefiles etc. Please 
review the open jdk changes here:


http://cr.openjdk.java.net/~sundar/8012975/


This looks good.  Approved.

Tim


Sundar - we have had some breakage in the build forest recently, so to 
be extra careful I created a forest and then added your changes. I also 
did some blasting away with 'find ... -print | xargs egrep ...' commands 
to look for traces of rhino or javascript.


I think you need to look at removing these files as well:

jdk/make/com/sun/script/Makefile
jdk/make/sun/org/mozilla/javascript/Makefile

Tim



Re: Please review changes for JDK-8012975: Remove rhino from jdk8

2013-05-02 Thread Tim Bell

Hi Sundar:

Oracle JDK includes Rhino based javax.script implementation (which 
lives mostly in closed code). Rhino is being removed from Oracle JDK 
builds and there are the changes to the jdk open repository as well 
like com.sun.script.javascript package, makefiles etc. Please review 
the open jdk changes here:


http://cr.openjdk.java.net/~sundar/8012975/


This looks good.  Approved.

Tim



Re: RFR 8010280: jvm.cfg needs updating for non-server builds

2013-04-26 Thread Tim Bell

Hi David

Looks good to me.

Tim

On 04/26/13 12:27 AM, David Holmes wrote:

Here is the final form of this after CCC approval.

http://cr.openjdk.java.net/~dholmes/8010280/webrev.v3/

For the traditional build of client+server we continue to use the 
platform specific jvm.cfg files committed into the source repository. 
Consequently no product builds (SE or Embedded) are altered by this 
proposal. (Those files already contain -minimal KNOWN if applicable 
to that platform.)


Otherwise we define a jvm.cfg file where:
- the default VM is the dominant VM (server  client  minimal)
- a missing client/server is aliased to the default VM
- the minimal VM is only present in the jvm.cfg file if it is built

Further, as a target of opportunity we stop generating, and delete 
from the existing jvm.cfg files the legacy entries for hotspot, 
classic, native and green


Thanks,
David

Generated jvm.cfg contents based on selected JVM variants:

::
client
::
-client KNOWN
-server ALIASED_TO -client

::
minimal+client
::
-client KNOWN
-server ALIASED_TO -client
-minimal KNOWN

::
minimal
::
-minimal KNOWN
-server ALIASED_TO -minimal
-client ALIASED_TO -minimal

::
minimal+server
::
-server KNOWN
-client ALIASED_TO -server
-minimal KNOWN

::
server
::
-server KNOWN
-client ALIASED_TO -server


On 15/04/2013 10:18 AM, David Holmes wrote:

Some background.

The jvm.cfg file, for which there is a per-architecture committed file
in the repository, controls which VM's (client, server, minimal) are
known, which is the default, whether there are other aliases and whether
ergonomic selection is used.

Historically things were simple:
- 64-bit platforms had server only
- 32-bit platforms had client and server

then we acknowledged that some platforms may be client only and we added
some support (originally in the old build then converted to the new
build) for dynamically creating a jvm.cfg for the case of building
client only.

Then the minimal VM was introduced and we potentially have three VMs to
handle. To address this we initially added -minimal KNOWN to all the
jvm.cfg files for platforms known to support the minimal VM - this was
done under JDK-7198815 (and those changes are now reversed by this
changeset.)

The problem after minimal was introduced was that the logic for
building client only didn't account for building minimal (only or
combined with client) and we need support for not-building-server. And
that is what this changeset does.

This only affects 32-bit builds as there is no client nor minimal VM on
64-bit. The basic operation is as follows:

- If building client+server then we use the committed jvm.cfg (which
handles ergonomics if applicable), adding a -minimal KNOWN line if
minimal is also selected;
- Otherwise we dynamically generate a jvm.cfg for the set of VMs being
built, using these simple rules:
   - if client or server are present they are default
   - if client and/or server is absent then the absent VM is aliased to
the default VM in that config
   - if minimal is not selected then it is absent from the jvm.cfg (we
do not add any aliases for minimal**).

** The alias mechanism is useful for deprecating legacy VM names, and
has also made testing more convenient. However I think it is a flawed
mechanism for testing and our internal test infrastructure is moving
away from arbitrarily using -client/-server when actually running
server/client. If you ask for the minimal VM and it is not available I
think you should get an error not silent use of a different VM. (Note:
this selection doesn't affect SE Embedded as it defines jvm.cfg files
using it's own rules/preferences.)

webrev:

http://cr.openjdk.java.net/~dholmes/8010280/webrev/

Thanks,
David




Re: RFR JDK-8010267 JDK-8010268 : Makefile maintenance for test targets

2013-03-28 Thread Tim Bell

Mike -

Looks good to me.

Tim

On 03/28/13 01:11, Erik Joelsson wrote:

Both of these look good to me, but you still need a jdk8 reviewer.

/Erik

On 2013-03-27 17:27, Mike Duigou wrote:

I still need a review for both of these changes.

Mike

On Mar 18 2013, at 22:48 , Mike Duigou wrote:


A two small changes to review:

If approved I will commit to TL (or someone else can commit to build 
for me)


Mike

JDK-8010267 : Add test-clean for cleaning of testoutput directory 
from output directory.


diff --git a/common/makefiles/Main.gmk b/common/makefiles/Main.gmk
--- a/common/makefiles/Main.gmk
+++ b/common/makefiles/Main.gmk
@@ -191,7 +191,7 @@ source-tips: $(OUTPUT_ROOT)/source_tips


# Remove everything, except the output from configure.
-clean: clean-langtools clean-corba clean-jaxp clean-jaxws 
clean-hotspot clean-jdk clean-images clean-overlay-images 
clean-bootcycle-build clean-docs
+clean: clean-langtools clean-corba clean-jaxp clean-jaxws 
clean-hotspot clean-jdk clean-images clean-overlay-images 
clean-bootcycle-build clean-docs clean-test
@($(CD) $(OUTPUT_ROOT)  $(RM) -r tmp source_tips 
build.log* build-trace*.log*)

@$(ECHO) Cleaned all build artifacts.

@@ -230,6 +230,8 @@ clean-bootcycle-build:
clean-docs:
$(call CleanComponent,docs)
$(call CleanComponent,docstemp)
+clean-test:
+   $(call CleanComponent,testoutput)

.PHONY: langtools corba jaxp jaxws hotspot jdk images overlay-images 
install
.PHONY: langtools-only corba-only jaxp-only jaxws-only hotspot-only 
jdk-only images-only overlay-images-only install-only



JDK-8010268 : Remove dependence upon clean target from 
jdk/test/Makefile prep target


None of the current users seem to depend upon the clean behaviour of 
prep


diff --git a/test/Makefile b/test/Makefile
--- a/test/Makefile
+++ b/test/Makefile
@@ -336,7 +336,7 @@ all: jdk_default
@$(ECHO) Testing completed successfully

# Prep for output
-prep: clean
+prep:
@$(MKDIR) -p $(ABS_TEST_OUTPUT_DIR)
@$(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`







hg: jdk8/tl: 8009019: Updates to generated-configure.sh required for 8008914

2013-03-06 Thread tim . bell
Changeset: cb0ac8979caa
Author:tbell
Date:  2013-02-26 09:25 -0800
URL:   http://hg.openjdk.java.net/jdk8/tl/rev/cb0ac8979caa

8009019: Updates to generated-configure.sh required for 8008914
Reviewed-by: sundar, jlaskey, jjg

! common/autoconf/generated-configure.sh



hg: jdk7/tl: 5 new changesets

2009-12-20 Thread tim . bell
Changeset: 721c1696c124
Author:mikejwre
Date:  2009-12-03 12:52 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/721c1696c124

Added tag jdk7-b77 for changeset 1f17ca8353ba

! .hgtags

Changeset: 80161484b6b1
Author:tbell
Date:  2009-12-08 09:14 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/80161484b6b1

Merge


Changeset: ea77a8b9b028
Author:ohair
Date:  2009-12-16 12:51 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/ea77a8b9b028

6909462: Fix nbproject/private references in .hgignore
Summary: See bugzilla issue 100097
Reviewed-by: tbell
Contributed-by: Jesse Glick jesse.gl...@sun.com

! .hgignore

Changeset: ab4ae8f45146
Author:mikejwre
Date:  2009-12-16 23:38 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/ab4ae8f45146

Merge


Changeset: 20aeeb517139
Author:mikejwre
Date:  2009-12-17 14:10 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/20aeeb517139

Added tag jdk7-b78 for changeset ab4ae8f45146

! .hgtags



hg: jdk7/tl/corba: 5 new changesets

2009-12-20 Thread tim . bell
Changeset: 28b983e5bb5f
Author:gbenson
Date:  2009-11-23 10:04 +
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/28b983e5bb5f

6903453: Zero build on ARM and IA-64
Summary: Correctly set uname on ARM, and correctly build fdlibm on IA-64
Reviewed-by: ohair

! make/common/shared/Platform.gmk

Changeset: 6881f0383f62
Author:ohair
Date:  2009-11-25 11:05 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/6881f0383f62

Merge


Changeset: 6977ccc8827e
Author:mikejwre
Date:  2009-12-03 12:52 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/6977ccc8827e

Added tag jdk7-b77 for changeset 6881f0383f62

! .hgtags

Changeset: a7f7276b48cd
Author:ohair
Date:  2009-12-16 12:51 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/a7f7276b48cd

6909462: Fix nbproject/private references in .hgignore
Summary: See bugzilla issue 100097
Reviewed-by: tbell
Contributed-by: Jesse Glick jesse.gl...@sun.com

! .hgignore

Changeset: ec0421b5703b
Author:mikejwre
Date:  2009-12-17 14:10 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/ec0421b5703b

Added tag jdk7-b78 for changeset a7f7276b48cd

! .hgtags



hg: jdk7/tl/jaxp: 3 new changesets

2009-12-20 Thread tim . bell
Changeset: 90bbdc1a6258
Author:mikejwre
Date:  2009-12-03 12:52 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/90bbdc1a6258

Added tag jdk7-b77 for changeset bfadab8c7b1b

! .hgtags

Changeset: 7a12d3789e1b
Author:ohair
Date:  2009-12-16 12:52 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/7a12d3789e1b

6909462: Fix nbproject/private references in .hgignore
Summary: See bugzilla issue 100097
Reviewed-by: tbell
Contributed-by: Jesse Glick jesse.gl...@sun.com

! .hgignore

Changeset: b1005c504358
Author:mikejwre
Date:  2009-12-17 14:10 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/b1005c504358

Added tag jdk7-b78 for changeset 7a12d3789e1b

! .hgtags



hg: jdk7/tl/langtools: 6 new changesets

2009-12-20 Thread tim . bell
Changeset: 45bd41dcb614
Author:mikejwre
Date:  2009-12-03 12:53 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/45bd41dcb614

Added tag jdk7-b77 for changeset 0398ae15b90a

! .hgtags

Changeset: ceb2857fce7d
Author:tbell
Date:  2009-12-08 09:16 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/ceb2857fce7d

Merge


Changeset: 381399872958
Author:ohair
Date:  2009-12-16 12:52 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/381399872958

6909462: Fix nbproject/private references in .hgignore
Summary: See bugzilla issue 100097
Reviewed-by: tbell
Contributed-by: Jesse Glick jesse.gl...@sun.com

! .hgignore

Changeset: acc1e40a5874
Author:mikejwre
Date:  2009-12-16 23:39 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/acc1e40a5874

Merge


Changeset: 44022ba69c2f
Author:mikejwre
Date:  2009-12-17 14:10 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/44022ba69c2f

Added tag jdk7-b78 for changeset acc1e40a5874

! .hgtags

Changeset: ac5b4c5644ce
Author:tbell
Date:  2009-12-19 10:26 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/ac5b4c5644ce

Merge

- src/share/classes/com/sun/tools/javac/file/CloseableURLClassLoader.java



Re: Need reviewers, jdk7 testing changes

2009-12-07 Thread Tim Bell
Hi Kelly


See below:

 Need reviewer for JDK7 testing changes, e.g. testing via:
cd jdk/make  gmake all images  cd ../test  gmake jdk_all
 
 6906210: Fix another minor typo in test/Makefile
 http://cr.openjdk.java.net/~ohair/openjdk7/jdk7-tl-test-changes4/webrev/
 
 Dan had pointed out my typo in the jdk/test/Makefile ($-$$)
 but when I started running and re-running the tests I ran into
 more unstable tests. This webrev includes fixes to 3 tests
 and unfortuntately more additions to the ProblemList file.
 
 Tests added to the ProblemList:
javax/management/remote/mandatory/connection/ReconnectTest.java
sun/net/www/protocol/http/DigestTest.java
java/net/ProxySelector/B6737819.java
java/io/File/SetLastModified.java
java/nio/channels/DatagramChannel/SRTest.java
java/nio/channels/DatagramChannel/Sender.java
java/nio/channels/Selector/SelectWrite.java
java/nio/channels/DatagramChannel/EmptyBuffer.java
java/nio/channels/DatagramChannel/MulticastSendReceiveTests.java
java/util/Collection/MOAT.java

It is a shame we have to exclude Martin's MOAT.java (Mother Of All Tests)
The comment shows the test failing on Solaris 10 x86, but you exclude
it on generic-all

Would it be a separate project to go through the excluded tests
and tighten up the exclusions by (for example) moving MOAT.java
to solaris-x64?

Approved otherwise.

Tim



java/nio/channels/AsynchronousSocketChannel/Basic.java
java/nio/channels/AsynchronousChannelGroup/Unbounded.java
java/nio/channels/FileChannel/Transfer.java
sun/security/krb5/auto/HttpNegotiateServer.java
sun/security/util/Oid/S11N.sh
sun/security/krb5/auto/NonMutualSpnego.java
sun/security/krb5/auto/ok-as-delegate.sh
sun/security/krb5/auto/ok-as-delegate-xrealm.sh
sun/security/mscapi/AccessKeyStore.sh
sun/security/pkcs11/KeyAgreement/TestDH.java
sun/security/pkcs11/fips/ClientJSSEServerJSSE.java
sun/security/krb5/auto/basic.sh
sun/security/pkcs11/KeyAgreement/TestDH.java
sun/tools/jstatd/jstatdDefaults.sh
sun/tools/jstatd/jstatdExternalRegistry.sh
sun/tools/jps/jps-v_1.sh
java/util/concurrent/ThreadPoolExecutor/CoreThreadTimeOut.java
java/util/concurrent/BlockingQueue/CancelledProducerConsumerLoops.java
 
 Some of this is 'as expected' in that the testcases may rely on
 using the same filename or port number, and until two tests using
 the same filename or port collide at runtime, you just don't know.
 
 If I got it wrong, let me know, I will correct the list.
 
 -kto
 



hg: jdk7/tl/jdk: 44 new changesets

2009-11-29 Thread tim . bell
Changeset: 31e68419715e
Author:igor
Date:  2009-10-02 10:15 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/31e68419715e

6887292: memory leak in freetypeScaler.c
Reviewed-by: bae, prr

! src/share/native/sun/font/freetypeScaler.c

Changeset: ccc36189f2a7
Author:rkennke
Date:  2009-10-05 23:12 +0200
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/ccc36189f2a7

6887494: NPE in pisces Renderer
Summary: Only recreate crossings array, if there actually exists one before.
Reviewed-by: flar, tdv

! src/share/classes/sun/java2d/pisces/Renderer.java
+ test/sun/java2d/pisces/Renderer/TestNPE.java

Changeset: c58000722db0
Author:jgodinez
Date:  2009-10-14 10:44 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/c58000722db0

6890945: Typo in sentence about thread safety
Reviewed-by: prr

! src/share/classes/javax/print/attribute/standard/PrinterStateReasons.java

Changeset: fa2b3627e59c
Author:jgodinez
Date:  2009-10-16 09:32 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/fa2b3627e59c

6680634: Printing: Collate is ignored under Windows Vista x64
Reviewed-by: campbell, prr

! src/windows/native/sun/windows/awt_PrintControl.cpp

Changeset: c579f8307707
Author:lana
Date:  2009-10-16 18:02 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/c579f8307707

Merge

- src/share/native/sun/security/ec/ec.h
- src/share/native/sun/security/ec/ec2.h
- src/share/native/sun/security/ec/ec2_163.c
- src/share/native/sun/security/ec/ec2_193.c
- src/share/native/sun/security/ec/ec2_233.c
- src/share/native/sun/security/ec/ec2_aff.c
- src/share/native/sun/security/ec/ec2_mont.c
- src/share/native/sun/security/ec/ec_naf.c
- src/share/native/sun/security/ec/ecc_impl.h
- src/share/native/sun/security/ec/ecdecode.c
- src/share/native/sun/security/ec/ecl-curve.h
- src/share/native/sun/security/ec/ecl-exp.h
- src/share/native/sun/security/ec/ecl-priv.h
- src/share/native/sun/security/ec/ecl.c
- src/share/native/sun/security/ec/ecl.h
- src/share/native/sun/security/ec/ecl_curve.c
- src/share/native/sun/security/ec/ecl_gf.c
- src/share/native/sun/security/ec/ecl_mult.c
- src/share/native/sun/security/ec/ecp.h
- src/share/native/sun/security/ec/ecp_192.c
- src/share/native/sun/security/ec/ecp_224.c
- src/share/native/sun/security/ec/ecp_256.c
- src/share/native/sun/security/ec/ecp_384.c
- src/share/native/sun/security/ec/ecp_521.c
- src/share/native/sun/security/ec/ecp_aff.c
- src/share/native/sun/security/ec/ecp_jac.c
- src/share/native/sun/security/ec/ecp_jm.c
- src/share/native/sun/security/ec/ecp_mont.c
- src/share/native/sun/security/ec/logtab.h
- src/share/native/sun/security/ec/mp_gf2m-priv.h
- src/share/native/sun/security/ec/mp_gf2m.c
- src/share/native/sun/security/ec/mp_gf2m.h
- src/share/native/sun/security/ec/mpi-config.h
- src/share/native/sun/security/ec/mpi-priv.h
- src/share/native/sun/security/ec/mpi.c
- src/share/native/sun/security/ec/mpi.h
- src/share/native/sun/security/ec/mplogic.c
- src/share/native/sun/security/ec/mplogic.h
- src/share/native/sun/security/ec/mpmontg.c
- src/share/native/sun/security/ec/mpprime.h
- src/share/native/sun/security/ec/oid.c
- src/share/native/sun/security/ec/secitem.c
- src/share/native/sun/security/ec/secoidt.h

Changeset: 5fc5d3243a5c
Author:bae
Date:  2009-10-23 15:59 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/5fc5d3243a5c

6888215: memory leak in jpeg plugin
Reviewed-by: igor, prr

! src/share/native/sun/awt/image/jpeg/imageioJPEG.c

Changeset: 1f2ef3a7d7c0
Author:bae
Date:  2009-10-23 16:21 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/1f2ef3a7d7c0

6888167: memory leaks in the medialib glue code
Reviewed-by: igor, prr

! src/share/native/sun/awt/medialib/awt_ImagingLib.c

Changeset: 634221297c37
Author:neugens
Date:  2009-10-30 19:19 +0100
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/634221297c37

6896068: SunGraphics2D exposes a reference to itself while non fully 
initialised.
Summary: Introduce a new Interface to mark the Loops based pipes and initialise 
the loops accordingly.
Reviewed-by: flar, rkennke

! src/share/classes/sun/java2d/SunGraphics2D.java
! src/share/classes/sun/java2d/SurfaceData.java
! src/share/classes/sun/java2d/pipe/AATextRenderer.java
! src/share/classes/sun/java2d/pipe/GlyphListLoopPipe.java
+ src/share/classes/sun/java2d/pipe/LoopBasedPipe.java
! src/share/classes/sun/java2d/pipe/LoopPipe.java
! src/share/classes/sun/java2d/pipe/SolidTextRenderer.java
! src/share/classes/sun/java2d/pipe/SpanShapeRenderer.java
! src/solaris/classes/sun/java2d/x11/X11SurfaceData.java
! src/windows/classes/sun/java2d/windows/GDIWindowSurfaceData.java

Changeset: 90bdc961b3cb
Author:andrew
Date:  2009-11-03 23:23 +
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/90bdc961b3cb

6897844: Fix broken build on newer versions of X11 (libXext = 1.1.0)
Summary: Recent changes to X11's header structure break the build

hg: jdk7/tl/corba: 3 new changesets

2009-11-23 Thread tim . bell
Changeset: 6995f81e3b53
Author:ohair
Date:  2009-11-04 11:19 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/6995f81e3b53

Merge


Changeset: 937144222e22
Author:ohair
Date:  2009-11-08 14:49 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/937144222e22

Merge


Changeset: 086bf925ee95
Author:katleman
Date:  2009-11-12 15:35 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/086bf925ee95

Added tag jdk7-b76 for changeset 937144222e22

! .hgtags




hg: jdk7/tl/hotspot: 20 new changesets

2009-11-23 Thread tim . bell
Changeset: 08780c8a9f04
Author:kamg
Date:  2009-10-20 16:34 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/08780c8a9f04

6893483: DTrace probe return values for a couple JNI methods are wrong
Summary: Fix the shadowing and incorrect macro usages
Reviewed-by: coleenp

! src/share/vm/prims/jni.cpp

Changeset: a3b9e96881fe
Author:xlu
Date:  2009-10-23 18:44 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a3b9e96881fe

Merge


Changeset: d912f17c1ae4
Author:xlu
Date:  2009-10-28 10:37 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/d912f17c1ae4

Merge


Changeset: 0a46d0c5dccb
Author:never
Date:  2009-10-15 11:47 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/0a46d0c5dccb

6891750: deopt blob kills values in O5
Reviewed-by: kvn, twisti

! src/cpu/sparc/vm/sharedRuntime_sparc.cpp
+ test/compiler/6891750/Test6891750.java

Changeset: 71fdc5052e49
Author:cfang
Date:  2009-10-16 16:14 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/71fdc5052e49

Merge


Changeset: 987e948ebbc8
Author:jrose
Date:  2009-10-17 19:51 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/987e948ebbc8

6815692: method handle code needs some cleanup (post-6655638)
Summary: correctly raise exceptions, support safe bitwise raw conversions, 
fix bugs revealed by VerifyMethodHandles, remove dead code, improve debugging 
support
Reviewed-by: never, twisti

! src/cpu/x86/vm/methodHandles_x86.cpp
! src/cpu/x86/vm/templateInterpreter_x86_32.cpp
! src/share/vm/classfile/javaClasses.hpp
! src/share/vm/classfile/systemDictionary.cpp
! src/share/vm/oops/instanceKlass.cpp
! src/share/vm/oops/instanceKlass.hpp
! src/share/vm/oops/klass.cpp
! src/share/vm/oops/klass.hpp
! src/share/vm/oops/markOop.cpp
! src/share/vm/oops/methodOop.cpp
! src/share/vm/prims/methodHandles.cpp
! src/share/vm/prims/methodHandles.hpp

Changeset: 873ec3787992
Author:kvn
Date:  2009-10-21 09:15 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/873ec3787992

6892186: SA does not dump debug info for scalar replaced objects
Summary: Implement scalar replaced objects debug info dump in SA.
Reviewed-by: twisti

! agent/make/saenv.sh
! agent/make/saenv64.sh
! agent/src/share/classes/sun/jvm/hotspot/CommandProcessor.java
! agent/src/share/classes/sun/jvm/hotspot/code/CodeCache.java
! agent/src/share/classes/sun/jvm/hotspot/code/NMethod.java
! agent/src/share/classes/sun/jvm/hotspot/code/PCDesc.java
! agent/src/share/classes/sun/jvm/hotspot/code/ScopeDesc.java
! agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java
! agent/src/share/classes/sun/jvm/hotspot/utilities/soql/sa.js
! src/share/vm/opto/callnode.cpp
! src/share/vm/runtime/vmStructs.cpp

Changeset: f875b4f472f7
Author:twisti
Date:  2009-10-27 03:00 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f875b4f472f7

6893554: SPECjvm2008 mpegaudio fails with SecurityException
Summary: The problem occurs with negative numbers, as the 32-bit input values 
are sign extended into the 64-bit registers.
Reviewed-by: kvn

! src/cpu/sparc/vm/sparc.ad

Changeset: 4926bf2d292f
Author:cfang
Date:  2009-10-29 08:49 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/4926bf2d292f

Merge


Changeset: fc06cd9b42c7
Author:tonyp
Date:  2009-10-23 14:34 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/fc06cd9b42c7

6886024: G1: assert(recent_avg_pause_time_ratio()  1.00,All GC?)
Summary: the assert is incorrect and can fire incorrectly due to floating point 
inaccuracy.
Reviewed-by: apetrusenko, ysr, jcoomes

! src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp

Changeset: 6270f80a7331
Author:tonyp
Date:  2009-09-30 14:50 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/6270f80a7331

6890137: G1: revamp reachable object dump
Summary: Revamp the reachable object dump debugging facility.
Reviewed-by: jmasa, apetrusenko

! src/share/vm/gc_implementation/g1/concurrentMark.cpp
! src/share/vm/gc_implementation/g1/concurrentMark.hpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
! src/share/vm/gc_implementation/g1/g1_globals.hpp

Changeset: fa2f65ebeb08
Author:apetrusenko
Date:  2009-10-27 02:42 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/fa2f65ebeb08

6870843: G1: G1 GC memory leak
Summary: The fix addresses two memory leaks in G1 code: (1) 
_evac_failure_scan_stack - a resource object allocated on the C heap was not 
freed; (2) RSHashTable were linked into deleted list which was only cleared at 
full GC.
Reviewed-by: tonyp, iveresov

! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
! src/share/vm/gc_implementation/g1/sparsePRT.cpp
! src/share/vm/gc_implementation/g1/sparsePRT.hpp

Changeset: 72a6752ac432
Author:ysr
Date:  2009-10-28 11:16 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/72a6752ac432

6818264: Heap 

hg: jdk7/tl/jdk: 5 new changesets

2009-11-23 Thread tim . bell
Changeset: 7916c43cc007
Author:ohair
Date:  2009-11-04 11:19 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/7916c43cc007

Merge

! make/java/redist/Makefile

Changeset: 8fb602395be0
Author:ohair
Date:  2009-11-08 14:49 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/8fb602395be0

Merge


Changeset: 941b3fd6c22b
Author:katleman
Date:  2009-11-12 15:35 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/941b3fd6c22b

Added tag jdk7-b76 for changeset 8fb602395be0

! .hgtags

Changeset: c56b9022a4f3
Author:tbell
Date:  2009-11-17 10:25 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/c56b9022a4f3

Merge

- src/share/classes/com/sun/jmx/event/DaemonThreadFactory.java
- src/share/classes/com/sun/jmx/event/EventBuffer.java
- src/share/classes/com/sun/jmx/event/EventClientFactory.java
- src/share/classes/com/sun/jmx/event/EventConnection.java
- src/share/classes/com/sun/jmx/event/EventParams.java
- src/share/classes/com/sun/jmx/event/LeaseManager.java
- src/share/classes/com/sun/jmx/event/LeaseRenewer.java
- src/share/classes/com/sun/jmx/event/ReceiverBuffer.java
- src/share/classes/com/sun/jmx/event/RepeatedSingletonJob.java
- src/share/classes/com/sun/jmx/interceptor/DispatchInterceptor.java
- src/share/classes/com/sun/jmx/interceptor/DomainDispatchInterceptor.java
- src/share/classes/com/sun/jmx/interceptor/MBeanServerInterceptorSupport.java
- src/share/classes/com/sun/jmx/interceptor/NamespaceDispatchInterceptor.java
- src/share/classes/com/sun/jmx/interceptor/SingleMBeanForwarder.java
- src/share/classes/com/sun/jmx/mbeanserver/MBeanInjector.java
- src/share/classes/com/sun/jmx/mbeanserver/NotificationMBeanSupport.java
- src/share/classes/com/sun/jmx/mbeanserver/NotifySupport.java
- src/share/classes/com/sun/jmx/mbeanserver/PerThreadGroupPool.java
- src/share/classes/com/sun/jmx/namespace/DomainInterceptor.java
- src/share/classes/com/sun/jmx/namespace/HandlerInterceptor.java
- src/share/classes/com/sun/jmx/namespace/NamespaceInterceptor.java
- src/share/classes/com/sun/jmx/namespace/ObjectNameRouter.java
- src/share/classes/com/sun/jmx/namespace/RoutingConnectionProxy.java
- src/share/classes/com/sun/jmx/namespace/RoutingMBeanServerConnection.java
- src/share/classes/com/sun/jmx/namespace/RoutingProxy.java
- src/share/classes/com/sun/jmx/namespace/RoutingServerProxy.java
- src/share/classes/com/sun/jmx/namespace/package.html
- src/share/classes/com/sun/jmx/namespace/serial/DefaultRewritingProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/IdentityProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/JMXNamespaceContext.java
- src/share/classes/com/sun/jmx/namespace/serial/RewritingProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/RoutingOnlyProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/SerialRewritingProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/package.html
- src/share/classes/com/sun/jmx/remote/internal/ProxyInputStream.java
- src/share/classes/com/sun/jmx/remote/util/EventClientConnection.java
- src/share/classes/javax/management/ClientContext.java
- src/share/classes/javax/management/Description.java
- src/share/classes/javax/management/DescriptorFields.java
- src/share/classes/javax/management/DynamicWrapperMBean.java
- src/share/classes/javax/management/GenericMBeanException.java
- src/share/classes/javax/management/Impact.java
- src/share/classes/javax/management/MBean.java
- src/share/classes/javax/management/ManagedAttribute.java
- src/share/classes/javax/management/ManagedOperation.java
- src/share/classes/javax/management/NotificationInfo.java
- src/share/classes/javax/management/NotificationInfos.java
- src/share/classes/javax/management/ObjectNameTemplate.java
- src/share/classes/javax/management/QueryNotificationFilter.java
- src/share/classes/javax/management/QueryParser.java
- src/share/classes/javax/management/SendNotification.java
- src/share/classes/javax/management/event/EventClient.java
- src/share/classes/javax/management/event/EventClientDelegate.java
- src/share/classes/javax/management/event/EventClientDelegateMBean.java
- src/share/classes/javax/management/event/EventClientNotFoundException.java
- src/share/classes/javax/management/event/EventConsumer.java
- src/share/classes/javax/management/event/EventForwarder.java
- src/share/classes/javax/management/event/EventReceiver.java
- src/share/classes/javax/management/event/EventRelay.java
- src/share/classes/javax/management/event/EventSubscriber.java
- src/share/classes/javax/management/event/FetchingEventForwarder.java
- src/share/classes/javax/management/event/FetchingEventRelay.java
- src/share/classes/javax/management/event/ListenerInfo.java
- src/share/classes/javax/management/event/NotificationManager.java
- src/share/classes/javax/management/event/RMIPushEventForwarder.java
- src/share/classes/javax/management/event/RMIPushEventRelay.java
- 

hg: jdk7/tl/langtools: 3 new changesets

2009-11-23 Thread tim . bell
Changeset: 4c8c6159159c
Author:katleman
Date:  2009-11-12 15:36 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/4c8c6159159c

Added tag jdk7-b76 for changeset 8fb9b4be3cb1

! .hgtags

Changeset: 0398ae15b90a
Author:tbell
Date:  2009-11-17 10:35 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/0398ae15b90a

Merge

- src/share/classes/com/sun/tools/classfile/ModuleExportTable_attribute.java
- src/share/classes/com/sun/tools/classfile/ModuleMemberTable_attribute.java
- src/share/classes/com/sun/tools/classfile/Module_attribute.java

Changeset: b1508b6affd8
Author:tbell
Date:  2009-11-23 19:58 -0800
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/b1508b6affd8

Merge




hg: jdk7/tl/jdk: 3 new changesets

2009-10-30 Thread tim . bell
Changeset: 8885b2256507
Author:ohair
Date:  2009-10-29 11:17 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/8885b2256507

6896472: Missing libjsig.so causes jdk build failure
Reviewed-by: tbell, kvn, phh

! make/java/redist/Makefile

Changeset: 9618f9a100e4
Author:tbell
Date:  2009-10-30 09:06 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9618f9a100e4

Merge

- src/share/classes/com/sun/jmx/event/DaemonThreadFactory.java
- src/share/classes/com/sun/jmx/event/EventBuffer.java
- src/share/classes/com/sun/jmx/event/EventClientFactory.java
- src/share/classes/com/sun/jmx/event/EventConnection.java
- src/share/classes/com/sun/jmx/event/EventParams.java
- src/share/classes/com/sun/jmx/event/LeaseManager.java
- src/share/classes/com/sun/jmx/event/LeaseRenewer.java
- src/share/classes/com/sun/jmx/event/ReceiverBuffer.java
- src/share/classes/com/sun/jmx/event/RepeatedSingletonJob.java
- src/share/classes/com/sun/jmx/interceptor/DispatchInterceptor.java
- src/share/classes/com/sun/jmx/interceptor/DomainDispatchInterceptor.java
- src/share/classes/com/sun/jmx/interceptor/MBeanServerInterceptorSupport.java
- src/share/classes/com/sun/jmx/interceptor/NamespaceDispatchInterceptor.java
- src/share/classes/com/sun/jmx/interceptor/SingleMBeanForwarder.java
- src/share/classes/com/sun/jmx/mbeanserver/MBeanInjector.java
- src/share/classes/com/sun/jmx/mbeanserver/NotificationMBeanSupport.java
- src/share/classes/com/sun/jmx/mbeanserver/NotifySupport.java
- src/share/classes/com/sun/jmx/mbeanserver/PerThreadGroupPool.java
- src/share/classes/com/sun/jmx/namespace/DomainInterceptor.java
- src/share/classes/com/sun/jmx/namespace/HandlerInterceptor.java
- src/share/classes/com/sun/jmx/namespace/NamespaceInterceptor.java
- src/share/classes/com/sun/jmx/namespace/ObjectNameRouter.java
- src/share/classes/com/sun/jmx/namespace/RoutingConnectionProxy.java
- src/share/classes/com/sun/jmx/namespace/RoutingMBeanServerConnection.java
- src/share/classes/com/sun/jmx/namespace/RoutingProxy.java
- src/share/classes/com/sun/jmx/namespace/RoutingServerProxy.java
- src/share/classes/com/sun/jmx/namespace/package.html
- src/share/classes/com/sun/jmx/namespace/serial/DefaultRewritingProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/IdentityProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/JMXNamespaceContext.java
- src/share/classes/com/sun/jmx/namespace/serial/RewritingProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/RoutingOnlyProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/SerialRewritingProcessor.java
- src/share/classes/com/sun/jmx/namespace/serial/package.html
- src/share/classes/com/sun/jmx/remote/internal/ProxyInputStream.java
- src/share/classes/com/sun/jmx/remote/util/EventClientConnection.java
- src/share/classes/javax/management/ClientContext.java
- src/share/classes/javax/management/Description.java
- src/share/classes/javax/management/DescriptorFields.java
- src/share/classes/javax/management/DynamicWrapperMBean.java
- src/share/classes/javax/management/GenericMBeanException.java
- src/share/classes/javax/management/Impact.java
- src/share/classes/javax/management/MBean.java
- src/share/classes/javax/management/ManagedAttribute.java
- src/share/classes/javax/management/ManagedOperation.java
- src/share/classes/javax/management/NotificationInfo.java
- src/share/classes/javax/management/NotificationInfos.java
- src/share/classes/javax/management/ObjectNameTemplate.java
- src/share/classes/javax/management/QueryNotificationFilter.java
- src/share/classes/javax/management/QueryParser.java
- src/share/classes/javax/management/SendNotification.java
- src/share/classes/javax/management/event/EventClient.java
- src/share/classes/javax/management/event/EventClientDelegate.java
- src/share/classes/javax/management/event/EventClientDelegateMBean.java
- src/share/classes/javax/management/event/EventClientNotFoundException.java
- src/share/classes/javax/management/event/EventConsumer.java
- src/share/classes/javax/management/event/EventForwarder.java
- src/share/classes/javax/management/event/EventReceiver.java
- src/share/classes/javax/management/event/EventRelay.java
- src/share/classes/javax/management/event/EventSubscriber.java
- src/share/classes/javax/management/event/FetchingEventForwarder.java
- src/share/classes/javax/management/event/FetchingEventRelay.java
- src/share/classes/javax/management/event/ListenerInfo.java
- src/share/classes/javax/management/event/NotificationManager.java
- src/share/classes/javax/management/event/RMIPushEventForwarder.java
- src/share/classes/javax/management/event/RMIPushEventRelay.java
- src/share/classes/javax/management/event/RMIPushServer.java
- src/share/classes/javax/management/event/package-info.java
- src/share/classes/javax/management/namespace/JMXDomain.java
- src/share/classes/javax/management/namespace/JMXNamespace.java
- src/share/classes/javax/management/namespace/JMXNamespaceMBean.java

hg: jdk7/tl/jdk: 6893426: ShellScaffold.sh fails on Solaris 10 update releases: /usr/bin/id: illegal option -- u

2009-10-21 Thread tim . bell
Changeset: b0433598e26d
Author:tbell
Date:  2009-10-21 00:12 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/b0433598e26d

6893426: ShellScaffold.sh fails on Solaris 10 update releases: /usr/bin/id: 
illegal option -- u
Reviewed-by: ohair, dcubed

! test/com/sun/jdi/ShellScaffold.sh



hg: jdk7/tl: 2 new changesets

2009-10-16 Thread tim . bell
Changeset: 2c88089b6e1c
Author:xdono
Date:  2009-10-02 11:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/2c88089b6e1c

Added tag jdk7-b73 for changeset 3ac6dcf78232

! .hgtags

Changeset: d1516b9f2395
Author:xdono
Date:  2009-10-15 16:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/d1516b9f2395

Added tag jdk7-b74 for changeset 2c88089b6e1c

! .hgtags



hg: jdk7/tl/corba: 2 new changesets

2009-10-16 Thread tim . bell
Changeset: 5d0cf59a3203
Author:xdono
Date:  2009-10-02 11:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/5d0cf59a3203

Added tag jdk7-b73 for changeset b751c528c555

! .hgtags

Changeset: 0fb137085952
Author:xdono
Date:  2009-10-15 16:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/0fb137085952

Added tag jdk7-b74 for changeset 5d0cf59a3203

! .hgtags



hg: jdk7/tl/hotspot: 54 new changesets

2009-10-16 Thread tim . bell
Changeset: 489a4f8dcd0f
Author:twisti
Date:  2009-08-27 06:17 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/489a4f8dcd0f

6865583: Verbose CIPrintMethodCodes asserts when ldc an empty String
Summary: ldc seems to load an empty String and that leads to an assert on 
offset  length, which are both zero.
Reviewed-by: kvn, never

! src/share/vm/classfile/javaClasses.cpp

Changeset: 8fe1963e3964
Author:kvn
Date:  2009-08-28 11:19 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/8fe1963e3964

6875577: CTW fails with /hotspot/src/share/vm/opto/memnode.cpp
Summary: Fix do_null_check to check for unloaded klass for all oop pointers.
Reviewed-by: never, cfang

! src/share/vm/opto/graphKit.cpp
! src/share/vm/opto/library_call.cpp

Changeset: 1fbd5d696bf4
Author:twisti
Date:  2009-08-31 02:24 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1fbd5d696bf4

6875967: CTW fails with./generated/adfiles/ad_sparc.cpp:6711
Reviewed-by: cfang, never

! src/cpu/sparc/vm/sparc.ad

Changeset: ace8397c8563
Author:cfang
Date:  2009-08-31 08:31 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/ace8397c8563

6876276: assert(!is_visited,visit only once)
Summary: schedule the superword loads based on dependence constraints
Reviewed-by: kvn, never

! src/share/vm/opto/superword.cpp
! test/compiler/6636138/Test1.java
! test/compiler/6636138/Test2.java

Changeset: ff1a29907b6c
Author:never
Date:  2009-08-31 17:07 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/ff1a29907b6c

6855215: Calculation error (NaN) after about 1500 calculations
Reviewed-by: kvn

! src/cpu/x86/vm/c1_LIRGenerator_x86.cpp
! src/cpu/x86/vm/c1_LinearScan_x86.cpp
! src/share/vm/c1/c1_LIR.cpp
! src/share/vm/c1/c1_LIR.hpp
+ test/compiler/6855215/Test6855215.java

Changeset: 0f1c19b7a52d
Author:kvn
Date:  2009-09-08 10:42 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/0f1c19b7a52d

6875619: CTW fails with /hotspot/src/share/vm/opto/type.hpp
Summary: In load_array_length() cast array's type to TypeOopPtr when calling 
make_ideal_length() method.
Reviewed-by: never

! src/share/vm/opto/graphKit.cpp

Changeset: 26fbe81d30cf
Author:kvn
Date:  2009-09-08 16:56 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/26fbe81d30cf

6880052: SIGSEGV in GraphKit::null_check_common()
Summary: Check that a klass is not NULL before the is_loaded() call.
Reviewed-by: never

! src/share/vm/opto/graphKit.cpp

Changeset: 9a4e87ba1a90
Author:kvn
Date:  2009-09-09 16:28 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/9a4e87ba1a90

6880533: test/compiler/6865031/Test.java miss -XX:+IgnoreUnrecognizedVMOptions
Summary: Add missing test option -XX:+IgnoreUnrecognizedVMOptions.
Reviewed-by: never

! test/compiler/6865031/Test.java

Changeset: 159d56b94894
Author:kvn
Date:  2009-09-10 10:36 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/159d56b94894

6880574: C2 assert in escape.cpp:445 on linux-amd64
Summary: Look through chained AddP nodes in get_addp_base().
Reviewed-by: jrose

! src/share/vm/opto/escape.cpp

Changeset: c7e94e8fff43
Author:kvn
Date:  2009-09-10 18:18 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c7e94e8fff43

6880053: assert(alloc_obj-as_CheckCastPP()-type() != TypeInstPtr::NOTNULL)
Summary: Removed second CheckCastPP and use MembarCPUOrder after arraycopy to 
cloned object.
Reviewed-by: never

! src/share/vm/opto/library_call.cpp
! src/share/vm/opto/type.cpp
! src/share/vm/opto/type.hpp

Changeset: a6f533fc33e0
Author:kvn
Date:  2009-09-14 11:45 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a6f533fc33e0

Merge


Changeset: eb058abd0562
Author:ysr
Date:  2009-09-15 16:50 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/eb058abd0562

6861557: G1: assert(top() == bottom() || zfs == Allocated,Region must be 
empty, or ...)
Summary: Druing heap shrinking, check for emptiness of a region before 
modifying its ZF status.
Reviewed-by: tonyp

! src/share/vm/gc_implementation/g1/heapRegionSeq.cpp

Changeset: d7c9544cc141
Author:apetrusenko
Date:  2009-09-18 06:02 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/d7c9544cc141

Merge


Changeset: aafa4232dfd7
Author:asaha
Date:  2009-08-28 08:54 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/aafa4232dfd7

6821003: Update hotspot windows os_win32 for windows 7
Reviewed-by: xlu

! src/os/windows/vm/os_windows.cpp

Changeset: 9601152ccfc1
Author:dcubed
Date:  2009-08-28 12:25 -0600
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/9601152ccfc1

6875393: 2/3 JNI itable index cache is broken
Summary: Add missing initialization of cache size.
Reviewed-by: tbell

! src/share/vm/oops/instanceKlass.cpp

Changeset: 75e30968ebe1
Author:dcubed
Date:  2009-08-28 12:32 -0600
URL:   

hg: jdk7/tl/jaxp: 3 new changesets

2009-10-16 Thread tim . bell
Changeset: feb05980f9f2
Author:ohair
Date:  2009-09-28 19:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/feb05980f9f2

6886359: Missing jaxws property files and missing changes in jaxp/jaxws drop 
bundles
Reviewed-by: jjg, tbell

! build-defs.xml
! jaxp.properties

Changeset: ea7b88c676dd
Author:xdono
Date:  2009-10-02 11:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/ea7b88c676dd

Added tag jdk7-b73 for changeset feb05980f9f2

! .hgtags

Changeset: 555fb78ee4ce
Author:xdono
Date:  2009-10-15 16:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/555fb78ee4ce

Added tag jdk7-b74 for changeset ea7b88c676dd

! .hgtags



hg: jdk7/tl/jaxws: 3 new changesets

2009-10-16 Thread tim . bell
Changeset: 558985e26fe1
Author:ohair
Date:  2009-09-28 19:38 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/558985e26fe1

6886359: Missing jaxws property files and missing changes in jaxp/jaxws drop 
bundles
Reviewed-by: jjg, tbell

! build-defs.xml
! jaxws.properties

Changeset: f4466e1b6080
Author:xdono
Date:  2009-10-02 11:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/f4466e1b6080

Added tag jdk7-b73 for changeset 558985e26fe1

! .hgtags

Changeset: fcf2b8b5d606
Author:xdono
Date:  2009-10-15 16:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/fcf2b8b5d606

Added tag jdk7-b74 for changeset f4466e1b6080

! .hgtags



hg: jdk7/tl/jdk: 42 new changesets

2009-10-16 Thread tim . bell
Changeset: 59b45d636384
Author:xdono
Date:  2009-10-02 11:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/59b45d636384

Added tag jdk7-b73 for changeset f708138c9aca

! .hgtags

Changeset: 8e5d45fc8d1e
Author:jgodinez
Date:  2009-07-01 12:07 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/8e5d45fc8d1e

6848799: Reg-test java/awt/print/PageFormat/PageFormatFromAttributes.java fails 
on Rhel_5
Reviewed-by: tdv, prr

! src/solaris/classes/sun/print/IPPPrintService.java
+ test/java/awt/print/PageFormat/PageFormatFromAttributes.java

Changeset: 837bb8760bad
Author:yan
Date:  2009-07-13 09:37 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/837bb8760bad

Merge

- src/share/classes/java/nio/file/DirectoryStreamFilters.java
- src/share/classes/java/nio/file/FileAction.java
- src/share/classes/java/nio/file/spi/AbstractPath.java
- src/share/classes/sun/io/ByteToCharMS932DB.java
- src/share/classes/sun/io/CharToByteMS932DB.java
- src/share/classes/sun/nio/cs/ext/EUC_CN.java
- src/share/classes/sun/nio/cs/ext/EUC_KR.java
- src/share/classes/sun/nio/cs/ext/GBK.java
- src/share/classes/sun/nio/cs/ext/Johab.java
- src/share/classes/sun/nio/cs/ext/MS932.java
- src/share/classes/sun/nio/cs/ext/MS932DB.java
- src/share/classes/sun/nio/cs/ext/MS936.java
- src/share/classes/sun/nio/cs/ext/MS949.java
- src/share/classes/sun/nio/cs/ext/MS950.java
- src/share/classes/sun/nio/fs/AbstractFileStoreSpaceAttributeView.java
- src/share/classes/sun/nio/fs/MimeType.java
- src/share/classes/sun/swing/AccessibleMethod.java
- test/java/nio/file/DirectoryStream/Filters.java
- test/java/nio/file/Files/content_type.sh
- test/java/nio/file/Path/temporary_files.sh
- test/java/nio/file/attribute/Attributes/Basic.java

Changeset: a0b315ecdc78
Author:rkennke
Date:  2009-07-22 15:52 +0200
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/a0b315ecdc78

6857358: Two testcases are failing in jdk7 b64 pit build with 
java.security.AccessControlException
Summary: Try to load GraphicsEnvironment with bootclassloader first, only then 
try app classloader.
Reviewed-by: prr, tdv, igor

! src/share/classes/java/awt/GraphicsEnvironment.java

Changeset: 9fa696ed1f38
Author:jgodinez
Date:  2009-07-30 12:25 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9fa696ed1f38

Merge


Changeset: 7fe0497ee5b5
Author:jgodinez
Date:  2009-08-04 17:25 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/7fe0497ee5b5

6829673: ThinLineTest: A line  1 pixel disappears.
Reviewed-by: igor, prr
Contributed-by: rkennke roman.ken...@sun.com

! src/share/classes/sun/java2d/pisces/PiscesRenderingEngine.java
+ test/sun/pisces/ThinLineTest.java

Changeset: 64b0c953635d
Author:rkennke
Date:  2009-08-07 18:31 +0200
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/64b0c953635d

6795908: Refactor FontManager
Reviewed-by: prr, igor

! make/sun/awt/FILES_export_windows.gmk
! make/sun/awt/make.depend
! make/sun/awt/mapfile-mawt-vers
! make/sun/awt/mapfile-vers-linux
! make/sun/font/mapfile-vers
! make/sun/font/mapfile-vers.openjdk
! make/sun/headless/mapfile-vers
! make/sun/xawt/mapfile-vers
! src/share/classes/com/sun/java/swing/plaf/gtk/PangoFonts.java
! src/share/classes/com/sun/java/swing/plaf/windows/WindowsLookAndFeel.java
! src/share/classes/java/awt/Component.java
! src/share/classes/java/awt/Font.java
! src/share/classes/java/awt/GraphicsEnvironment.java
! src/share/classes/javax/swing/plaf/nimbus/Defaults.template
! src/share/classes/javax/swing/text/StyleContext.java
! src/share/classes/sun/awt/FontConfiguration.java
! src/share/classes/sun/font/CMap.java
! src/share/classes/sun/font/CompositeFont.java
! src/share/classes/sun/font/CompositeGlyphMapper.java
! src/share/classes/sun/font/FileFont.java
! src/share/classes/sun/font/FileFontStrike.java
! src/share/classes/sun/font/FontDesignMetrics.java
! src/share/classes/sun/font/FontFamily.java
! src/share/classes/sun/font/FontManager.java
! src/share/classes/sun/font/FontManagerNativeLibrary.java
! src/share/classes/sun/font/FontResolver.java
! src/share/classes/sun/font/FontScaler.java
! src/share/classes/sun/font/FreetypeFontScaler.java
! src/share/classes/sun/font/GlyphLayout.java
! src/share/classes/sun/font/PhysicalStrike.java
! src/share/classes/sun/font/StandardGlyphVector.java
! src/share/classes/sun/font/StrikeCache.java
! src/share/classes/sun/font/TrueTypeFont.java
! src/share/classes/sun/font/TrueTypeGlyphMapper.java
! src/share/classes/sun/font/Type1Font.java
! src/share/classes/sun/font/Type1GlyphMapper.java
! src/share/classes/sun/java2d/SunGraphics2D.java
! src/share/classes/sun/java2d/SunGraphicsEnvironment.java
! src/share/classes/sun/print/PSPrinterJob.java
! src/share/classes/sun/print/PathGraphics.java
! src/share/classes/sun/swing/SwingUtilities2.java
! src/share/native/sun/font/sunFont.c
! src/share/native/sun/font/sunfontids.h
! src/solaris/classes/sun/awt/X11/XToolkit.java
! 

hg: jdk7/tl/langtools: 4 new changesets

2009-10-16 Thread tim . bell
Changeset: d498d6ef9c6c
Author:xdono
Date:  2009-10-02 11:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/d498d6ef9c6c

Added tag jdk7-b73 for changeset 9596dff46093

! .hgtags

Changeset: 1a66b08deed0
Author:tbell
Date:  2009-10-07 14:14 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/1a66b08deed0

Merge

- src/share/classes/com/sun/tools/javac/file/Old199.java
- src/share/classes/com/sun/tools/javah/MainDoclet.java
- src/share/classes/com/sun/tools/javah/resources/Linux_ppc.properties
- src/share/classes/com/sun/tools/javah/resources/Linux_sparc.properties
- src/share/classes/com/sun/tools/javah/resources/SunOS_sparc.properties
- src/share/classes/com/sun/tools/javah/resources/SunOS_sparcv9.properties
- src/share/classes/com/sun/tools/javah/resources/win32_x86.properties

Changeset: 79c13af9217e
Author:xdono
Date:  2009-10-15 16:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/79c13af9217e

Added tag jdk7-b74 for changeset 1a66b08deed0

! .hgtags

Changeset: d1e62f78c48b
Author:tbell
Date:  2009-10-15 22:48 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/d1e62f78c48b

Merge




hg: jdk7/tl/jdk: 6787605: OpenSolaris doesn't have /usr/ucb/ps so ShellScaffold fails

2009-10-02 Thread tim . bell
Changeset: 9fcca0aae3da
Author:tbell
Date:  2009-10-02 08:49 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9fcca0aae3da

6787605: OpenSolaris doesn't have /usr/ucb/ps so ShellScaffold fails
Reviewed-by: dcubed

! test/com/sun/jdi/ShellScaffold.sh



hg: jdk7/tl: 5 new changesets

2009-09-26 Thread tim . bell
Changeset: e76b72562a98
Author:ohair
Date:  2009-09-03 17:44 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/e76b72562a98

6855174: Improve log output when builds transition from one workspace to another
Reviewed-by: jjg

! make/Defs-internal.gmk
! make/corba-rules.gmk
! make/deploy-rules.gmk
! make/hotspot-rules.gmk
! make/install-rules.gmk
! make/jaxp-rules.gmk
! make/jaxws-rules.gmk
! make/jdk-rules.gmk
! make/langtools-rules.gmk
! make/sponsors-rules.gmk

Changeset: 931f7f7501da
Author:ohair
Date:  2009-09-17 13:17 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/931f7f7501da

Merge


Changeset: 76f6380ac0b4
Author:xdono
Date:  2009-09-18 09:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/76f6380ac0b4

Merge


Changeset: d70b157f6407
Author:xdono
Date:  2009-09-22 14:06 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/d70b157f6407

6884624: Update copyright year
Summary: Update copyright for files that have been modified in 2009 through 
Septermber
Reviewed-by: tbell, ohair

! make/corba-rules.gmk
! make/hotspot-rules.gmk
! make/install-rules.gmk
! make/jaxp-rules.gmk
! make/jaxws-rules.gmk
! make/langtools-rules.gmk
! make/sponsors-rules.gmk

Changeset: 3ac6dcf78232
Author:robilad
Date:  2009-09-23 20:06 +0200
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/3ac6dcf78232

6872735: Further update build readme for new platforms
6641691: Bring build readme's up-to-date
Summary: Added build instructions for Debian, Ubuntu 8.04, 8.10, 9.04, Fedora 
10, 11, OpenSolaris 2009.06, OpenSUSE and Mandriva
Reviewed-by: ohair, andrew

! README-builds.html



hg: jdk7/tl/corba: 6 new changesets

2009-09-26 Thread tim . bell
Changeset: 1c130e7b7a2e
Author:ohair
Date:  2009-09-02 09:20 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/1c130e7b7a2e

6875240: Reduce Makefile build time by limiting repeated exec's (mostly for 
cygwin building)
Reviewed-by: jjg, iris

! make/Makefile
! make/common/BuildToolJar.gmk
! make/common/CancelImplicits.gmk
! make/common/Defs.gmk
! make/common/Rules.gmk
! make/common/shared/Compiler-msvc.gmk
! make/common/shared/Defs-utils.gmk
! make/common/shared/Defs-windows.gmk
! make/common/shared/Defs.gmk
! make/common/shared/Platform.gmk
! make/jprt.properties

Changeset: 085333867e39
Author:xdono
Date:  2009-09-14 10:57 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/085333867e39

Merge


Changeset: 546970b224ca
Author:xdono
Date:  2009-09-18 09:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/546970b224ca

Merge


Changeset: 31ce3cac3cc1
Author:ohair
Date:  2009-09-18 16:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/31ce3cac3cc1

6883790: corba build problem related to wildcard and vpath, regression
Reviewed-by: tbell

! make/common/Rules.gmk

Changeset: 2aa5665d86a5
Author:ohair
Date:  2009-09-18 17:10 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/2aa5665d86a5

6883816: corba fix for missing javax/transaction/xa classes (the real fix)
Reviewed-by: tbell

! make/common/Rules.gmk

Changeset: b751c528c555
Author:xdono
Date:  2009-09-22 14:06 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/b751c528c555

6884624: Update copyright year
Summary: Update copyright for files that have been modified in 2009 through 
Septermber
Reviewed-by: tbell, ohair

! make/common/CancelImplicits.gmk



hg: jdk7/tl/jaxp: 3 new changesets

2009-09-26 Thread tim . bell
Changeset: 534e23823a1b
Author:ohair
Date:  2009-09-21 13:54 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/534e23823a1b

6856630: Restructure jaxp/jaxws repositories
Reviewed-by: darcy, tbell

! .hgignore
! README
+ build-defs.xml
+ build-drop-template.xml
+ build.properties
+ build.xml
+ jaxp.properties
! make/Makefile
- make/build.properties
- make/build.xml
! make/jprt.properties
- make/tools/StripProperties/StripProperties.java
- make/tools/StripProperties/StripPropertiesTask.java
+ nbproject/findbugs.settings
+ nbproject/project.xml
+ nbproject/sqe.properties
+ patches/jaxp_src/README

Changeset: 0748962aa825
Author:ohair
Date:  2009-09-21 17:21 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/0748962aa825

6884220: Have drop sources ignore the output.dir property
Reviewed-by: xdono

! build.properties

Changeset: ee9c7578aca5
Author:xdono
Date:  2009-09-22 14:06 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/ee9c7578aca5

6884624: Update copyright year
Summary: Update copyright for files that have been modified in 2009 through 
Septermber
Reviewed-by: tbell, ohair

! src/share/classes/com/sun/org/apache/xerces/internal/impl/XMLScanner.java



hg: jdk7/tl: Added tag jdk7-b72 for changeset 0d7e03b426df

2009-09-18 Thread tim . bell
Changeset: 4c4fe09fb670
Author:xdono
Date:  2009-09-17 13:46 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/4c4fe09fb670

Added tag jdk7-b72 for changeset 0d7e03b426df

! .hgtags



hg: jdk7/tl/corba: Added tag jdk7-b72 for changeset c793a3120926

2009-09-18 Thread tim . bell
Changeset: 12991b453239
Author:xdono
Date:  2009-09-17 13:46 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/12991b453239

Added tag jdk7-b72 for changeset c793a3120926

! .hgtags



hg: jdk7/tl/jaxp: Added tag jdk7-b72 for changeset 37c805b6156f

2009-09-18 Thread tim . bell
Changeset: 93dfa6e0fe76
Author:xdono
Date:  2009-09-17 13:46 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/93dfa6e0fe76

Added tag jdk7-b72 for changeset 37c805b6156f

! .hgtags



hg: jdk7/tl/jaxws: Added tag jdk7-b72 for changeset 4c990aa99bc0

2009-09-18 Thread tim . bell
Changeset: d79f0d601c2b
Author:xdono
Date:  2009-09-17 13:46 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/d79f0d601c2b

Added tag jdk7-b72 for changeset 4c990aa99bc0

! .hgtags



hg: jdk7/tl/jdk: 2 new changesets

2009-09-18 Thread tim . bell
Changeset: f09a2bfba691
Author:xdono
Date:  2009-09-17 13:47 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/f09a2bfba691

Added tag jdk7-b72 for changeset 460639b036f3

! .hgtags

Changeset: f119e21c0ca7
Author:tbell
Date:  2009-09-18 08:47 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/f119e21c0ca7

Merge




hg: jdk7/tl/langtools: 2 new changesets

2009-09-18 Thread tim . bell
Changeset: bfad32768345
Author:xdono
Date:  2009-09-17 13:47 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/bfad32768345

Added tag jdk7-b72 for changeset 261c54b2312e

! .hgtags

Changeset: 5dd400fd62d9
Author:tbell
Date:  2009-09-18 08:48 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/5dd400fd62d9

Merge




hg: jdk7/tl/hotspot: 31 new changesets

2009-09-17 Thread tim . bell
Changeset: a05ea7791ee3
Author:trims
Date:  2009-08-21 20:38 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a05ea7791ee3

6873236: Fork HS16 to HS17 - renumber Major and build numbers of JVM
Summary: Update the Major and build numbers for HS17 fork
Reviewed-by: jcoomes

! make/hotspot_version

Changeset: 1760a1cbed36
Author:dcubed
Date:  2009-08-11 11:57 -0600
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1760a1cbed36

6862945: 4/3 conversion of jmethodID to methodOop in JVMTI is too expensive
Summary: Refactor JNIHandles::checked_resolve_jmethod_id() into fast and 
paranoid parts.
Reviewed-by: never, alanb

! src/share/vm/prims/jniCheck.cpp
! src/share/vm/runtime/jniHandles.hpp

Changeset: 6ab1d6ece8bd
Author:apangin
Date:  2009-08-17 15:03 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/6ab1d6ece8bd

Merge


Changeset: 585222cadf79
Author:apangin
Date:  2009-08-19 15:46 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/585222cadf79

Merge


Changeset: a774e1abbe85
Author:trims
Date:  2009-08-21 20:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a774e1abbe85

Merge


Changeset: 046932b72aa2
Author:never
Date:  2009-08-14 00:02 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/046932b72aa2

6862956: PhaseIdealLoop should have a CFG verification mode
Reviewed-by: kvn, twisti

! src/share/vm/opto/compile.cpp
! src/share/vm/opto/domgraph.cpp
! src/share/vm/opto/loopnode.cpp
! src/share/vm/opto/loopnode.hpp
! src/share/vm/opto/phase.cpp
! src/share/vm/opto/phase.hpp

Changeset: 1a81ea4b45d4
Author:kvn
Date:  2009-08-14 12:23 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/1a81ea4b45d4

6869822: assert(Universe::narrow_oop_shift() == 0,use unscaled narrow oop)
Summary: Replace the assert with narrow_oop_shift set to 0.
Reviewed-by: never, jcoomes

! src/share/vm/memory/universe.cpp

Changeset: a70508bb21c3
Author:never
Date:  2009-08-14 15:53 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a70508bb21c3

6862863: C2 compiler fails in elide_copy()
Reviewed-by: kvn

! src/share/vm/opto/chaitin.hpp
! src/share/vm/opto/postaloc.cpp

Changeset: 55784fd95fe3
Author:never
Date:  2009-08-14 15:55 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/55784fd95fe3

Merge


Changeset: 7c14587118b3
Author:never
Date:  2009-08-14 22:11 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/7c14587118b3

Merge


Changeset: c8e2135f7e30
Author:cfang
Date:  2009-08-17 09:48 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c8e2135f7e30

6829127: Deoptimization Failure on Specjvm98 _227_mtrt with -XX:+DeoptimizeALot 
since Hs11 b01
Summary: Make sure the control word is correct in deopt_blob after 
restore_result_registers
Reviewed-by: kvn, never

! src/cpu/x86/vm/sharedRuntime_x86_32.cpp

Changeset: 662f330d7275
Author:cfang
Date:  2009-08-17 12:11 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/662f330d7275

6866651: Regression: simple int sum crashes jvm (build 1.6.0_14-b08 and 
1.7.0-ea-b59)
Summary: delay dead code elimination in set_req_X to make it safe
Reviewed-by: kvn, never

! src/share/vm/opto/phaseX.cpp
+ test/compiler/6866651/Test.java

Changeset: d0acbc302e14
Author:never
Date:  2009-08-17 14:45 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/d0acbc302e14

6795465: Crash in assembler_sparc.cpp with client compiler on solaris-sparc
Reviewed-by: twisti, cfang

! src/cpu/sparc/vm/c1_Defs_sparc.hpp
! src/cpu/sparc/vm/c1_FrameMap_sparc.cpp
! src/cpu/sparc/vm/c1_LIRGenerator_sparc.cpp
! src/share/vm/includeDB_compiler1
+ test/compiler/6795465/Test6795465.java

Changeset: cd18bd5e667c
Author:never
Date:  2009-08-19 18:54 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/cd18bd5e667c

6873777: FPU control word optimization still performed with SSE
Reviewed-by: kvn

! src/share/vm/opto/compile.cpp

Changeset: 357d4e2eb4dd
Author:kvn
Date:  2009-08-19 19:05 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/357d4e2eb4dd

6873799: enable escape analysis by default
Summary: enable escape analysis by default
Reviewed-by: never

! src/share/vm/opto/c2_globals.hpp

Changeset: 72088be4b386
Author:cfang
Date:  2009-08-20 12:42 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/72088be4b386

6873116: Modify reexecute implementation to use pcDesc to record the reexecute 
bit
Summary: use PcDesc to keep record of the reexecute bit instead of using 
DebugInfoStreams
Reviewed-by: kvn, never, twisti

! agent/src/share/classes/sun/jvm/hotspot/code/DebugInfoReadStream.java
! agent/src/share/classes/sun/jvm/hotspot/code/NMethod.java
! agent/src/share/classes/sun/jvm/hotspot/code/PCDesc.java
! agent/src/share/classes/sun/jvm/hotspot/code/ScopeDesc.java
! 

hg: jdk7/tl: Added tag jdk7-b71 for changeset 4c36e9853dda

2009-09-07 Thread tim . bell
Changeset: 378f57273f09
Author:xdono
Date:  2009-09-03 10:52 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/378f57273f09

Added tag jdk7-b71 for changeset 4c36e9853dda

! .hgtags



hg: jdk7/tl/corba: 4 new changesets

2009-09-07 Thread tim . bell
Changeset: 8001ba2bf10d
Author:andrew
Date:  2009-08-20 01:28 +0100
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/8001ba2bf10d

6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk 
javac
Summary: The bootstrap javac currently uses the default source and targets of 
the boot javac
Reviewed-by: jjg, ohair

! make/common/shared/Defs-java.gmk

Changeset: 04414f276160
Author:xdono
Date:  2009-08-24 17:25 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/04414f276160

Merge


Changeset: 3f1ef7f899ea
Author:andrew
Date:  2009-09-01 23:44 +0100
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/3f1ef7f899ea

6878106: Synchronize CORBA and JDK makefiles where possible
Summary: Add recent changes to the JDK makefile to the CORBA makefile
Reviewed-by: jjg, never

! make/common/shared/Defs-java.gmk

Changeset: c793a3120926
Author:xdono
Date:  2009-09-03 10:52 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/c793a3120926

Added tag jdk7-b71 for changeset 3f1ef7f899ea

! .hgtags



hg: jdk7/tl/hotspot: Added tag jdk7-b71 for changeset 50a95aa4a247

2009-09-07 Thread tim . bell
Changeset: 6e6427f797c0
Author:xdono
Date:  2009-09-03 10:52 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/6e6427f797c0

Added tag jdk7-b71 for changeset 50a95aa4a247

! .hgtags



hg: jdk7/tl/jaxp: Added tag jdk7-b71 for changeset ff94d8ce0dad

2009-09-07 Thread tim . bell
Changeset: 37c805b6156f
Author:xdono
Date:  2009-09-03 10:52 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/37c805b6156f

Added tag jdk7-b71 for changeset ff94d8ce0dad

! .hgtags



hg: jdk7/tl/langtools: 2 new changesets

2009-09-07 Thread tim . bell
Changeset: d434aa041b52
Author:xdono
Date:  2009-09-03 10:53 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/d434aa041b52

Added tag jdk7-b71 for changeset 33c8c38e1757

! .hgtags

Changeset: 90c28923e449
Author:tbell
Date:  2009-09-03 18:34 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/90c28923e449

Merge

- test/tools/javac/innerClassFile/Driver.java
- test/tools/javac/meth/InvokeMH_BAD68.java
- test/tools/javac/meth/InvokeMH_BAD72.java
- test/tools/javac/quid/QuotedIdent_BAD61.java
- test/tools/javac/quid/QuotedIdent_BAD62.java
- test/tools/javac/quid/QuotedIdent_BAD63.java



hg: jdk7/tl: 4 new changesets

2009-08-30 Thread tim . bell
Changeset: 51a71c2c4b80
Author:xdono
Date:  2009-08-13 12:11 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/51a71c2c4b80

Added tag jdk7-b69 for changeset 82e6c820c51a

! .hgtags

Changeset: 175cb3fe6159
Author:tbell
Date:  2009-08-14 08:49 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/175cb3fe6159

Merge


Changeset: de7a3e98c159
Author:xdono
Date:  2009-08-20 11:20 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/de7a3e98c159

Added tag jdk7-b70 for changeset 175cb3fe6159

! .hgtags

Changeset: 4c36e9853dda
Author:tbell
Date:  2009-08-24 22:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/4c36e9853dda

Merge




hg: jdk7/tl/corba: Added tag jdk7-b70 for changeset 175bd6877954

2009-08-30 Thread tim . bell
Changeset: 9f1959c73473
Author:xdono
Date:  2009-08-20 11:20 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/9f1959c73473

Added tag jdk7-b70 for changeset 175bd6877954

! .hgtags



hg: jdk7/tl/jaxp: Added tag jdk7-b70 for changeset c83f0106b78a

2009-08-30 Thread tim . bell
Changeset: ff94d8ce0dad
Author:xdono
Date:  2009-08-20 11:20 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/ff94d8ce0dad

Added tag jdk7-b70 for changeset c83f0106b78a

! .hgtags



hg: jdk7/tl/langtools: 3 new changesets

2009-08-30 Thread tim . bell
Changeset: 6f07b50a8796
Author:xdono
Date:  2009-08-20 11:20 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/6f07b50a8796

Added tag jdk7-b70 for changeset 97d06f3e8787

! .hgtags

Changeset: 33c8c38e1757
Author:tbell
Date:  2009-08-24 22:28 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/33c8c38e1757

Merge


Changeset: ce5be4c09f2a
Author:tbell
Date:  2009-08-28 16:54 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/ce5be4c09f2a

Merge

- test/tools/javac/meth/InvokeMH_BAD68.java
- test/tools/javac/meth/InvokeMH_BAD72.java
- test/tools/javac/quid/QuotedIdent_BAD61.java
- test/tools/javac/quid/QuotedIdent_BAD62.java
- test/tools/javac/quid/QuotedIdent_BAD63.java



Re: URGENT: tl/jdk and tl-gate/jdk not identical

2009-08-25 Thread Tim Bell
Hi Max:
 For some reason Joe's changeset has not reached the final repo.

Thanks for pointing it out.  I kick-started the gate push.

This should be sorted out, although it may take a few minutes
for the email notifications to catch up.

Tim





hg: jdk7/tl/corba: 2 new changesets

2009-08-18 Thread tim . bell
Changeset: 07b3e9ba5085
Author:xdono
Date:  2009-08-13 12:11 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/07b3e9ba5085

Added tag jdk7-b69 for changeset 8120d308ec4e

! .hgtags

Changeset: 175bd6877954
Author:tbell
Date:  2009-08-14 08:49 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/175bd6877954

Merge




hg: jdk7/tl/jaxp: 2 new changesets

2009-08-18 Thread tim . bell
Changeset: 8287833daabc
Author:xdono
Date:  2009-08-13 12:11 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/8287833daabc

Added tag jdk7-b69 for changeset a4ab0d6ded63

! .hgtags

Changeset: c83f0106b78a
Author:tbell
Date:  2009-08-14 08:50 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/c83f0106b78a

Merge




hg: jdk7/tl/jaxws: 3 new changesets

2009-08-18 Thread tim . bell
Changeset: 1041c9cce799
Author:xdono
Date:  2009-08-13 12:11 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/1041c9cce799

Added tag jdk7-b69 for changeset 3e64fdfb9291

! .hgtags

Changeset: 6608dd3dae86
Author:tbell
Date:  2009-08-14 08:51 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/6608dd3dae86

Merge


Changeset: dd3c5f3ec28d
Author:tbell
Date:  2009-08-18 16:15 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/dd3c5f3ec28d

6873200: patch.out and jaxws.patch do not belong in jaxws repository
Reviewed-by: xdono, ohair

- jaxws.patch
- patch.out



hg: jdk7/tl/jdk: 6 new changesets

2009-08-18 Thread tim . bell
Changeset: 7e491e39ea0f
Author:tbell
Date:  2009-08-06 17:16 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/7e491e39ea0f

6865853: Additional code changes needed to build deploy using WXP SP2 and 
Visual Studio 2008
Reviewed-by: ohair

! src/windows/native/sun/jkernel/kernel.cpp

Changeset: 08baaf8638c9
Author:tbell
Date:  2009-08-06 17:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/08baaf8638c9

Merge

- src/share/classes/com/sun/crypto/provider/JarVerifier.java
- src/share/classes/javax/swing/plaf/basic/DesktopIconMover.java
- src/share/classes/sun/security/pkcs11/JarVerifier.java
- src/windows/classes/sun/security/mscapi/JarVerifier.java

Changeset: 226b20019b1f
Author:xdono
Date:  2009-08-12 10:32 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/226b20019b1f

Merge


Changeset: 36c8ddbe9bc5
Author:xdono
Date:  2009-08-13 12:11 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/36c8ddbe9bc5

Added tag jdk7-b69 for changeset 226b20019b1f

! .hgtags

Changeset: abac33c4bd67
Author:tbell
Date:  2009-08-14 08:51 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/abac33c4bd67

Merge


Changeset: 74029d1cf4e4
Author:tbell
Date:  2009-08-18 17:45 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/74029d1cf4e4

Merge




hg: jdk7/tl/langtools: 3 new changesets

2009-08-18 Thread tim . bell
Changeset: 4ac89259512f
Author:xdono
Date:  2009-08-13 12:11 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/4ac89259512f

Added tag jdk7-b69 for changeset ce9bcdcb7859

! .hgtags

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

Merge


Changeset: b055a5ea0dad
Author:tbell
Date:  2009-08-18 17:46 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/b055a5ea0dad

Merge




hg: jdk7/tl: Added tag jdk7-b68 for changeset e1b972ff53cd

2009-08-06 Thread tim . bell
Changeset: 82e6c820c51a
Author:xdono
Date:  2009-08-06 10:25 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/82e6c820c51a

Added tag jdk7-b68 for changeset e1b972ff53cd

! .hgtags



hg: jdk7/tl/corba: Added tag jdk7-b68 for changeset 5182bcc9c60c

2009-08-06 Thread tim . bell
Changeset: 8120d308ec4e
Author:xdono
Date:  2009-08-06 10:25 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/8120d308ec4e

Added tag jdk7-b68 for changeset 5182bcc9c60c

! .hgtags



hg: jdk7/tl/hotspot: Added tag jdk7-b68 for changeset d07e68298d4e

2009-08-06 Thread tim . bell
Changeset: 54fd4d923296
Author:xdono
Date:  2009-08-06 10:25 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/54fd4d923296

Added tag jdk7-b68 for changeset d07e68298d4e

! .hgtags



hg: jdk7/tl/jaxp: Added tag jdk7-b68 for changeset 83b2a9331383

2009-08-06 Thread tim . bell
Changeset: a4ab0d6ded63
Author:xdono
Date:  2009-08-06 10:25 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/a4ab0d6ded63

Added tag jdk7-b68 for changeset 83b2a9331383

! .hgtags



hg: jdk7/tl/jaxws: Added tag jdk7-b68 for changeset 845fa487f0f7

2009-08-06 Thread tim . bell
Changeset: 3e64fdfb9291
Author:xdono
Date:  2009-08-06 10:25 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/3e64fdfb9291

Added tag jdk7-b68 for changeset 845fa487f0f7

! .hgtags



hg: jdk7/tl/jdk: 23 new changesets

2009-08-06 Thread tim . bell
Changeset: f214db928124
Author:art
Date:  2009-07-17 15:40 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/f214db928124

6844297: java/awt/EventQueue/6638195/bug6638195.java test failed in jdk7 on 
Windows just on b59,passed on b57
Reviewed-by: bchristi, dcherepanov

! test/java/awt/EventQueue/6638195/bug6638195.java

Changeset: 29a065ef8341
Author:dcherepanov
Date:  2009-07-22 13:00 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/29a065ef8341

6859935: REGRESSION: Settings are missing in JCP/Advanced tab on windows
Reviewed-by: art

! src/windows/classes/sun/awt/windows/WToolkit.java

Changeset: ab4860d7cf28
Author:anthony
Date:  2009-07-23 13:46 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/ab4860d7cf28

6848424: java/awt/Frame/FrameSize/TestFrameSize.java needs improvement
Summary: The test now thoroughly verifies the pack() method
Reviewed-by: art, dcherepanov

! test/java/awt/Frame/FrameSize/TestFrameSize.java

Changeset: 045c3f367b06
Author:dcherepanov
Date:  2009-07-27 15:37 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/045c3f367b06

6856929: Frame is not getting resized using Robot in OpenSolaris and Ubuntu
Reviewed-by: art, dav

! src/solaris/classes/sun/awt/X11/XRobotPeer.java
! src/solaris/native/sun/awt/awt_Robot.c

Changeset: 2fb41bc4d896
Author:yan
Date:  2009-07-27 23:42 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/2fb41bc4d896

Merge


Changeset: dfd0f4b7c7d1
Author:yan
Date:  2009-07-29 00:12 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/dfd0f4b7c7d1

Merge


Changeset: b624f8613cc6
Author:gsm
Date:  2009-07-15 19:05 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/b624f8613cc6

6612541: api/javax_swing/text/LabelView/index.html#getXXX[LabelView0004] fails 
since JDK 7 b20
Reviewed-by: peterz

! src/share/classes/javax/swing/text/GlyphView.java

Changeset: f727cac13697
Author:malenkov
Date:  2009-07-16 20:12 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/f727cac13697

6505027: terminateEditOnFocusLost making problems for table in JDesktopPane
Reviewed-by: alexp

! src/share/classes/javax/swing/JInternalFrame.java
+ test/javax/swing/JInternalFrame/Test6505027.java

Changeset: 59249ab7aa16
Author:peterz
Date:  2009-07-17 15:25 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/59249ab7aa16

6387360: Usage of package-private class as a parameter of a method 
(javax.swing.text.ParagraphView)
Reviewed-by: malenkov

! src/share/classes/javax/swing/text/ParagraphView.java

Changeset: 4575323d917c
Author:peterz
Date:  2009-07-20 13:33 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/4575323d917c

6857360: NimbusLAF: Menu indicator looks ugly with RTL orientation.
Reviewed-by: rupashka

! src/share/classes/javax/swing/plaf/nimbus/NimbusIcon.java
! src/share/classes/sun/swing/MenuItemLayoutHelper.java

Changeset: a2114bbf7f3e
Author:peterz
Date:  2009-07-20 13:34 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/a2114bbf7f3e

6849331: Nimbus LF: AbstractRegionPainter's paint context is not initialized
Reviewed-by: rupashka

! src/share/classes/javax/swing/plaf/nimbus/AbstractRegionPainter.java

Changeset: 125eff6f653f
Author:malenkov
Date:  2009-07-22 12:21 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/125eff6f653f

6802868: JInternalFrame is not maximized when maximized parent frame.
Reviewed-by: rupashka

! src/share/classes/javax/swing/plaf/basic/BasicDesktopIconUI.java
! src/share/classes/javax/swing/plaf/basic/BasicInternalFrameUI.java
- src/share/classes/javax/swing/plaf/basic/DesktopIconMover.java
+ test/javax/swing/JInternalFrame/Test6802868.java

Changeset: 9fc588f78952
Author:rupashka
Date:  2009-07-23 17:56 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9fc588f78952

6460525: javax/swing/JFileChooser/6396844/TwentyThousandTest.java times out
Reviewed-by: malenkov, peterz

! src/share/classes/javax/swing/JFileChooser.java
! src/share/classes/javax/swing/plaf/basic/BasicDirectoryModel.java
! src/share/classes/sun/awt/shell/ShellFolder.java
! src/share/classes/sun/awt/shell/ShellFolderManager.java
! src/share/classes/sun/swing/FilePane.java
! src/windows/classes/sun/awt/shell/Win32ShellFolder2.java
! src/windows/classes/sun/awt/shell/Win32ShellFolderManager2.java

Changeset: 5054103dc032
Author:naoto
Date:  2009-06-30 17:12 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/5054103dc032

6852429: IME should call ImmIsUIMessage() or DefWindowProc() when it receives 
WM_IME_SETCONTEX
Reviewed-by: peytoia

! src/windows/native/sun/windows/awt_Component.cpp

Changeset: 584fe3163de9
Author:naoto
Date:  2009-07-23 11:29 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/584fe3163de9

Merge

- src/share/classes/java/nio/file/DirectoryStreamFilters.java
- src/share/classes/java/nio/file/FileAction.java
- 

Re: javac CRASH

2009-08-04 Thread Tim Bell
Maurizio Cimadamore wrote:

 Not sure if it will make into b68 - but certainly it will go into b69 
 (depends on the integration process). The fix is already available in 
 the langtools repository used for development 
 (http://hg.openjdk.java.net/jdk7/tl/langtools).

The TL forest has already integrated into the master for b68 [1].

The fix for 6861837 will be in b70.

Tim (gatekeeper for TL)
[1] http://openjdk.java.net/projects/jdk7/builds/


hg: jdk7/tl/jaxws: 5 new changesets

2009-08-03 Thread tim . bell
Changeset: 58f51e3cc0fa
Author:xdono
Date:  2009-07-24 13:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/58f51e3cc0fa

Added tag jdk7-b66 for changeset fa8712c099ed

! .hgtags

Changeset: a98e41351006
Author:tbell
Date:  2009-07-27 23:05 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/a98e41351006

Merge


Changeset: faa13cd4d6cd
Author:xdono
Date:  2009-07-28 12:12 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/faa13cd4d6cd

6862919: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 07/09
Reviewed-by: tbell, ohair

! make/Makefile
! make/build.properties
! make/build.xml

Changeset: b70ce5b02bbc
Author:xdono
Date:  2009-07-30 10:58 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/b70ce5b02bbc

Added tag jdk7-b67 for changeset faa13cd4d6cd

! .hgtags

Changeset: 845fa487f0f7
Author:tbell
Date:  2009-07-30 23:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/845fa487f0f7

Merge

! make/build.properties



hg: jdk7/tl/jdk: 26 new changesets

2009-08-03 Thread tim . bell
Changeset: 043c7100a752
Author:anthony
Date:  2009-07-07 17:05 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/043c7100a752

6853916: java.awt.Window.setBackground(null) throws NullPointerException
Summary: Window.setBackground() should check for null.
Reviewed-by: art, dcherepanov

! src/share/classes/java/awt/Window.java
+ test/java/awt/Window/SetBackgroundNPE/SetBackgroundNPE.java

Changeset: 99cdc0268e4b
Author:dcherepanov
Date:  2009-07-09 15:15 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/99cdc0268e4b

6855323: Robot(GraphicsDevice) constructor initializes LEGAL_BUTTON_MASK 
variable improperly
Reviewed-by: art

! src/share/classes/java/awt/Robot.java
+ test/java/awt/Robot/CtorTest/CtorTest.java

Changeset: 9b1e640af25e
Author:dcherepanov
Date:  2009-07-09 15:18 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/9b1e640af25e

6759726: TrayIcon constructor throws NPE instead of documented IAE
Reviewed-by: art

! src/share/classes/java/awt/TrayIcon.java
+ test/java/awt/TrayIcon/CtorTest/CtorTest.java

Changeset: df34ec9f3e26
Author:dcherepanov
Date:  2009-07-09 15:23 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/df34ec9f3e26

6847958: MouseWheel event is getting triggered for the disabled Textarea in 
jdk7 b60 pit build.
Reviewed-by: art

! src/solaris/classes/sun/awt/X11/XBaseWindow.java
+ test/java/awt/event/MouseWheelEvent/DisabledComponent/DisabledComponent.java

Changeset: c27d7c1d1918
Author:dcherepanov
Date:  2009-07-09 15:53 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/c27d7c1d1918

6847149: test/java/awt/Window/OwnedWindowsLeak/OwnedWindowsLeak.java fails
Reviewed-by: art

! test/java/awt/Window/OwnedWindowsLeak/OwnedWindowsLeak.java

Changeset: 6d92ce5fe15b
Author:yan
Date:  2009-07-12 23:20 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/6d92ce5fe15b

Merge

- src/share/classes/java/nio/file/DirectoryStreamFilters.java
- src/share/classes/java/nio/file/FileAction.java
- src/share/classes/java/nio/file/spi/AbstractPath.java
- src/share/classes/sun/io/ByteToCharMS932DB.java
- src/share/classes/sun/io/CharToByteMS932DB.java
- src/share/classes/sun/nio/cs/ext/EUC_CN.java
- src/share/classes/sun/nio/cs/ext/EUC_KR.java
- src/share/classes/sun/nio/cs/ext/GBK.java
- src/share/classes/sun/nio/cs/ext/Johab.java
- src/share/classes/sun/nio/cs/ext/MS932.java
- src/share/classes/sun/nio/cs/ext/MS932DB.java
- src/share/classes/sun/nio/cs/ext/MS936.java
- src/share/classes/sun/nio/cs/ext/MS949.java
- src/share/classes/sun/nio/cs/ext/MS950.java
- src/share/classes/sun/nio/fs/AbstractFileStoreSpaceAttributeView.java
- src/share/classes/sun/nio/fs/MimeType.java
- test/java/nio/file/DirectoryStream/Filters.java
- test/java/nio/file/Files/content_type.sh
- test/java/nio/file/Path/temporary_files.sh
- test/java/nio/file/attribute/Attributes/Basic.java

Changeset: 4cd623432e7d
Author:anthony
Date:  2009-07-14 14:08 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/4cd623432e7d

6837446: Introduce Window.isOpaque() method
Reviewed-by: art, alexp

! src/share/classes/com/sun/awt/AWTUtilities.java
! src/share/classes/java/awt/Component.java
! src/share/classes/java/awt/GraphicsDevice.java
! src/share/classes/java/awt/Window.java
! src/share/classes/javax/swing/DefaultDesktopManager.java
! src/share/classes/javax/swing/RepaintManager.java
! src/share/classes/sun/awt/AWTAccessor.java
! src/share/classes/sun/awt/SunToolkit.java
! src/windows/classes/sun/awt/windows/WWindowPeer.java

Changeset: fc869bc0cd63
Author:yan
Date:  2009-07-14 22:13 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/fc869bc0cd63

Merge


Changeset: bccc4d5e8d6a
Author:malenkov
Date:  2009-07-02 19:48 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/bccc4d5e8d6a

6380849: RFE: Automatic discovery of PersistanceDelegates
Reviewed-by: rupashka, alexp

+ src/share/classes/com/sun/beans/finder/BeanInfoFinder.java
+ src/share/classes/com/sun/beans/finder/InstanceFinder.java
+ src/share/classes/com/sun/beans/finder/PersistenceDelegateFinder.java
+ src/share/classes/com/sun/beans/finder/PropertyEditorFinder.java
! src/share/classes/java/beans/Encoder.java
! src/share/classes/java/beans/Introspector.java
! src/share/classes/java/beans/PropertyEditorManager.java
+ test/java/beans/Introspector/6380849/TestBeanInfo.java
+ test/java/beans/Introspector/6380849/beans/FirstBean.java
+ test/java/beans/Introspector/6380849/beans/FirstBeanBeanInfo.java
+ test/java/beans/Introspector/6380849/beans/SecondBean.java
+ test/java/beans/Introspector/6380849/beans/ThirdBean.java
+ test/java/beans/Introspector/6380849/infos/SecondBeanBeanInfo.java
+ test/java/beans/Introspector/6380849/infos/ThirdBeanBeanInfo.java
+ test/java/beans/PropertyEditor/6380849/FirstBean.java
+ test/java/beans/PropertyEditor/6380849/FirstBeanEditor.java
+ test/java/beans/PropertyEditor/6380849/SecondBean.java
+ 

hg: jdk7/tl: 5 new changesets

2009-08-02 Thread tim . bell
Changeset: 5dc862ec024e
Author:xdono
Date:  2009-07-24 13:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/5dc862ec024e

Added tag jdk7-b66 for changeset 6bad5e3fe503

! .hgtags

Changeset: fbc75d7ed6dc
Author:tbell
Date:  2009-07-27 23:03 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/fbc75d7ed6dc

Merge


Changeset: c4523c6f8204
Author:xdono
Date:  2009-07-28 12:12 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/c4523c6f8204

6862919: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 07/09
Reviewed-by: tbell, ohair

! make/deploy-rules.gmk
! make/jprt.properties
! make/sanity-rules.gmk

Changeset: cab520b37e9a
Author:xdono
Date:  2009-07-30 10:58 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/cab520b37e9a

Added tag jdk7-b67 for changeset c4523c6f8204

! .hgtags

Changeset: e1b972ff53cd
Author:tbell
Date:  2009-07-30 23:36 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/e1b972ff53cd

Merge




hg: jdk7/tl/hotspot: 25 new changesets

2009-08-02 Thread tim . bell
Changeset: 96e4ccadd5f6
Author:xdono
Date:  2009-07-24 13:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/96e4ccadd5f6

Added tag jdk7-b66 for changeset 57c71ad0341b

! .hgtags

Changeset: bd02caa94611
Author:xdono
Date:  2009-07-28 12:12 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/bd02caa94611

6862919: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 07/09
Reviewed-by: tbell, ohair

! agent/src/os/linux/Makefile
! agent/src/share/classes/sun/jvm/hotspot/HotSpotTypeDataBase.java
! agent/src/share/classes/sun/jvm/hotspot/code/DebugInfoReadStream.java
! agent/src/share/classes/sun/jvm/hotspot/code/MonitorValue.java
! agent/src/share/classes/sun/jvm/hotspot/code/ScopeDesc.java
! agent/src/share/classes/sun/jvm/hotspot/code/ScopeValue.java
! agent/src/share/classes/sun/jvm/hotspot/debugger/Debugger.java
! agent/src/share/classes/sun/jvm/hotspot/debugger/DebuggerBase.java
! agent/src/share/classes/sun/jvm/hotspot/debugger/JVMDebugger.java
! agent/src/share/classes/sun/jvm/hotspot/debugger/remote/RemoteDebugger.java
! 
agent/src/share/classes/sun/jvm/hotspot/debugger/remote/RemoteDebuggerClient.java
! 
agent/src/share/classes/sun/jvm/hotspot/debugger/remote/RemoteDebuggerServer.java
! agent/src/share/classes/sun/jvm/hotspot/jdi/ObjectReferenceImpl.java
! agent/src/share/classes/sun/jvm/hotspot/jdi/ThreadReferenceImpl.java
! agent/src/share/classes/sun/jvm/hotspot/memory/Universe.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/ClassConstants.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/CompiledVFrame.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/InterpretedVFrame.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/JavaThread.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/MonitorInfo.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/StackValue.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/StubRoutines.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/Thread.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
! agent/src/share/classes/sun/jvm/hotspot/tools/jcore/ByteCodeRewriter.java
! agent/src/share/classes/sun/jvm/hotspot/tools/jcore/ClassDump.java
! agent/src/share/classes/sun/jvm/hotspot/tools/jcore/ClassWriter.java
! agent/src/share/classes/sun/jvm/hotspot/ui/tree/OopTreeNodeAdapter.java
! agent/src/share/classes/sun/jvm/hotspot/utilities/soql/JSJavaThread.java
! make/jprt.properties
! make/linux/makefiles/jsig.make
! make/linux/makefiles/saproc.make
! make/solaris/makefiles/optimized.make
! make/solaris/makefiles/sparcWorks.make
! make/windows/build_vm_def.sh
! make/windows/create.bat
! make/windows/get_msc_ver.sh
! make/windows/makefiles/adlc.make
! make/windows/makefiles/compile.make
! make/windows/makefiles/makedeps.make
! make/windows/makefiles/rules.make
! make/windows/makefiles/sa.make
! make/windows/makefiles/sanity.make
! make/windows/makefiles/vm.make
! src/cpu/sparc/vm/c1_LIRGenerator_sparc.cpp
! src/cpu/sparc/vm/frame_sparc.inline.hpp
! src/cpu/sparc/vm/globals_sparc.hpp
! src/cpu/x86/vm/c1_MacroAssembler_x86.cpp
! src/cpu/x86/vm/frame_x86.cpp
! src/cpu/x86/vm/globals_x86.hpp
! src/cpu/x86/vm/interpreterRT_x86_64.cpp
! src/cpu/x86/vm/templateTable_x86_32.hpp
! src/cpu/x86/vm/templateTable_x86_64.cpp
! src/cpu/x86/vm/vtableStubs_x86_32.cpp
! src/cpu/x86/vm/vtableStubs_x86_64.cpp
! src/os/linux/vm/os_linux.hpp
! src/os/solaris/dtrace/generateJvmOffsets.cpp
! src/os/solaris/dtrace/jhelper.d
! src/os/solaris/dtrace/libjvm_db.c
! src/os_cpu/linux_sparc/vm/globals_linux_sparc.hpp
! src/os_cpu/linux_sparc/vm/os_linux_sparc.hpp
! src/os_cpu/linux_x86/vm/globals_linux_x86.hpp
! src/os_cpu/linux_x86/vm/orderAccess_linux_x86.inline.hpp
! src/os_cpu/solaris_sparc/vm/globals_solaris_sparc.hpp
! src/os_cpu/solaris_sparc/vm/orderAccess_solaris_sparc.inline.hpp
! src/os_cpu/solaris_sparc/vm/os_solaris_sparc.cpp
! src/os_cpu/solaris_sparc/vm/os_solaris_sparc.hpp
! src/os_cpu/solaris_x86/vm/globals_solaris_x86.hpp
! src/os_cpu/solaris_x86/vm/orderAccess_solaris_x86.inline.hpp
! src/os_cpu/windows_x86/vm/globals_windows_x86.hpp
! src/os_cpu/windows_x86/vm/orderAccess_windows_x86.inline.hpp
! src/os_cpu/windows_x86/vm/os_windows_x86.cpp
! src/os_cpu/windows_x86/vm/os_windows_x86.hpp
! src/os_cpu/windows_x86/vm/unwind_windows_x86.hpp
! src/share/tools/MakeDeps/BuildConfig.java
! src/share/tools/MakeDeps/WinGammaPlatformVC7.java
! src/share/tools/MakeDeps/WinGammaPlatformVC8.java
! src/share/tools/MakeDeps/WinGammaPlatformVC9.java
! src/share/tools/hsdis/Makefile
! src/share/tools/hsdis/hsdis-demo.c
! src/share/tools/hsdis/hsdis.c
! src/share/vm/adlc/adlc.hpp
! src/share/vm/asm/assembler.cpp
! src/share/vm/c1/c1_Compilation.cpp
! src/share/vm/c1/c1_GraphBuilder.cpp
! src/share/vm/c1/c1_LinearScan.cpp
! src/share/vm/ci/bcEscapeAnalyzer.cpp
! src/share/vm/ci/ciEnv.cpp
! 

hg: jdk7/tl/jaxp: 5 new changesets

2009-08-02 Thread tim . bell
Changeset: f8f9c0186d87
Author:xdono
Date:  2009-07-24 13:39 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/f8f9c0186d87

Added tag jdk7-b66 for changeset 22f9d5d5b5fe

! .hgtags

Changeset: ef9c2dee8a40
Author:tbell
Date:  2009-07-27 23:05 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/ef9c2dee8a40

Merge


Changeset: a033af8d824a
Author:xdono
Date:  2009-07-28 12:12 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/a033af8d824a

6862919: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 07/09
Reviewed-by: tbell, ohair

! make/build.properties
! make/build.xml
! make/jprt.properties
! src/share/classes/com/sun/org/apache/xerces/internal/impl/PropertyManager.java
! 
src/share/classes/com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl.java
! 
src/share/classes/com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl.java
! 
src/share/classes/com/sun/org/apache/xerces/internal/impl/XMLStreamFilterImpl.java
! 
src/share/classes/com/sun/xml/internal/stream/events/XMLEventAllocatorImpl.java

Changeset: c77f6ec0bd9b
Author:xdono
Date:  2009-07-30 10:58 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/c77f6ec0bd9b

Added tag jdk7-b67 for changeset a033af8d824a

! .hgtags

Changeset: 83b2a9331383
Author:tbell
Date:  2009-07-30 23:38 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/83b2a9331383

Merge

! make/build.properties



hg: jdk7/tl/corba: 9 new changesets

2009-07-20 Thread tim . bell
Changeset: ffb590b42ed1
Author:herrick
Date:  2009-06-11 15:16 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/ffb590b42ed1

6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
6845973: Update JDK7 with deployment changes in 6u13, 6u14
4802695: Support 64-bit Java Plug-in and Java webstart on Windows/Linux on AMD64
6825019: DownloadManager should not be loaded and referenced for full JRE
6738770: REGRESSION:JSException throws when use LiveConnect javascript facility
6772884: plugin2 : java.lang.OutOfMemoryError or crash
6707535: Crossing domain hole affecting multiple sites/domains using plug-in
6728071: Non-verification of Update files may allow unintended updates
6704154: Code loaded from local filesystem should not get access to localhost
6727081: Web Start security restrictions bypass using special extension jnlp
6727079: Java Web Start Socket() restriction bypass
6727071: Cache location/user name information disclosure in SingleInstanceImpl.
6716217: AppletClassLoader adds permissions based on codebase regardless of CS
6694892: Java Webstart inclusion via system properties override [CVE-2008-2086]
6704074: localhost socket access due to cache location exposed
6703909: Java webstart arbitrary file creation using nativelib
6665315: browser crashes when deployment.properties has more slashes ( / )
6660121: Encoding values in JNLP files can cause buffer overflow
6606110: URLConnection.setProxiedHost for resources that are loaded via proxy
6581221: SSV(VISTA): Redirection FAILS to work if user does a downgrade install
6609756: Buffer Overflow in Java ActiveX component
6608712: Bypassing the same origin policy in Java with crafted names
6534630: gnumake clobber doesn't
6849953: JDK7 - replacement of bufferoverflowU.lib on amd64 breaks build
6849029: Need some JDK7 merge clean-up after comments on the webrev
6847582: Build problem on JDK7 with isSecureProperty in merge
6827935: JDK 7 deployment merging - problem in Compiler-msvm.gmk
6823215: latest merge fixes from 6u12 - JDK7
6816153: further mergers for JDK7 deployment integration
6807074: Fix Java Kernel and JQS in initial JDK7 builds
Summary: Initial changeset for implementing 6uX Deployment Features into JDK7
Reviewed-by: dgu, billyh

! make/common/Defs-windows.gmk
! make/common/Library.gmk
! make/org/omg/idl/Makefile
! src/windows/resource/version.rc

Changeset: 79d8fd9e74b9
Author:herrick
Date:  2009-06-15 13:07 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/79d8fd9e74b9

Merge

- make/README

Changeset: 1b3e9fdc4fc5
Author:herrick
Date:  2009-06-22 09:14 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/1b3e9fdc4fc5

Merge


Changeset: 27f41fcf3d6a
Author:herrick
Date:  2009-06-29 12:00 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/27f41fcf3d6a

Merge


Changeset: f982791bb7d4
Author:herrick
Date:  2009-07-06 15:04 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/f982791bb7d4

Merge


Changeset: 863559dbbced
Author:herrick
Date:  2009-07-06 14:02 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/863559dbbced

Merge


Changeset: 047dd27fddb6
Author:herrick
Date:  2009-07-06 17:11 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/047dd27fddb6

Merge


Changeset: 97fd9b42f5c2
Author:xdono
Date:  2009-07-13 14:47 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/97fd9b42f5c2

Added tag jdk7-b64 for changeset 047dd27fddb6

! .hgtags

Changeset: a821e059a961
Author:xdono
Date:  2009-07-16 10:53 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/a821e059a961

Added tag jdk7-b65 for changeset 97fd9b42f5c2

! .hgtags



hg: jdk7/tl/hotspot: 27 new changesets

2009-07-20 Thread tim . bell
Changeset: 92b5fbbe8477
Author:xdono
Date:  2009-07-13 14:47 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/92b5fbbe8477

Added tag jdk7-b64 for changeset ba36394eb84b

! .hgtags

Changeset: 45c4b1fe45e4
Author:trims
Date:  2009-07-10 19:10 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/45c4b1fe45e4

6859411: Bump the HS16 build number to 06
Summary: Update the HS16 build number to 06
Reviewed-by: jcoomes

! make/hotspot_version

Changeset: b109e761e927
Author:kvn
Date:  2009-06-09 16:19 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/b109e761e927

6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
Summary: Disable escape analysis when jvmti/debugger is used. Add support for 
EA ibto SA.
Reviewed-by: never

! agent/src/share/classes/sun/jvm/hotspot/code/DebugInfoReadStream.java
! agent/src/share/classes/sun/jvm/hotspot/code/MonitorValue.java
+ agent/src/share/classes/sun/jvm/hotspot/code/ObjectValue.java
! agent/src/share/classes/sun/jvm/hotspot/code/ScopeDesc.java
! agent/src/share/classes/sun/jvm/hotspot/code/ScopeValue.java
! agent/src/share/classes/sun/jvm/hotspot/jdi/ObjectReferenceImpl.java
! agent/src/share/classes/sun/jvm/hotspot/jdi/ThreadReferenceImpl.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/CompiledVFrame.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/InterpretedVFrame.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/MonitorInfo.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/StackValue.java
! agent/src/share/classes/sun/jvm/hotspot/utilities/soql/JSJavaThread.java
! src/share/vm/opto/c2compiler.cpp
! src/share/vm/prims/jvmtiEnvBase.cpp
! src/share/vm/runtime/biasedLocking.cpp
! src/share/vm/runtime/deoptimization.cpp
! src/share/vm/runtime/stackValue.cpp
! src/share/vm/runtime/stackValue.hpp
! src/share/vm/runtime/vframe.cpp
! src/share/vm/runtime/vframe.hpp
! src/share/vm/runtime/vframeArray.cpp
! src/share/vm/runtime/vframe_hp.cpp

Changeset: c6386080541b
Author:never
Date:  2009-06-10 12:19 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c6386080541b

6849574: VM crash using NonBlockingHashMap (high_scale_lib)
Reviewed-by: kvn

! src/cpu/sparc/vm/c1_LIRGenerator_sparc.cpp
! src/share/vm/c1/c1_LIRGenerator.cpp
+ test/compiler/6849574/Test.java

Changeset: 915cc9c5ebc6
Author:kvn
Date:  2009-06-23 17:52 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/915cc9c5ebc6

6837094: False positive for meet not symmetric failure
Summary: Have the meet not symmetric check recursively do the interface-vs-oop 
check on array subtypes.
Reviewed-by: jrose
Contributed-by: rasb...@google.com

! src/share/vm/opto/type.cpp
! src/share/vm/opto/type.hpp
+ test/compiler/6837094/Test.java

Changeset: d1fe2c2fbdac
Author:twisti
Date:  2009-06-17 09:08 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/d1fe2c2fbdac

6851829: solaris build fails with 5.8 compilers
Summary: Solaris builds with the CC 5.8 compilers (used for jdk6 update builds) 
fail while compiling adlc.
Reviewed-by: never

! make/solaris/makefiles/adlc.make

Changeset: e306d7c7222c
Author:twisti
Date:  2009-06-24 02:09 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/e306d7c7222c

Merge


Changeset: 14367225a853
Author:kvn
Date:  2009-06-24 12:00 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/14367225a853

6841800: Incorrect boundary values behavior for option 
-XX:MaxLabelRootDepth=0-6 leads to jvm crash
Summary: MaxLabelRootDepth value less then 10 is invalid.
Reviewed-by: never

! src/share/vm/opto/matcher.cpp

Changeset: 18a08a7e16b5
Author:twisti
Date:  2009-06-26 07:26 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/18a08a7e16b5

5057225: Remove useless I2L conversions
Summary: The optimizer should be told to normalize (AndL (ConvI2L x) 0xFF) to 
(ConvI2L (AndI x 0xFF)), and then the existing matcher rule will work for free.
Reviewed-by: kvn

! src/cpu/sparc/vm/sparc.ad
! src/cpu/x86/vm/x86_32.ad
! src/cpu/x86/vm/x86_64.ad
! src/share/vm/opto/mulnode.cpp
+ test/compiler/5057225/Test5057225.java

Changeset: 8f5825e0aeaa
Author:never
Date:  2009-06-26 13:03 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/8f5825e0aeaa

6818666: G1: Type lost in g1 pre-barrier
Reviewed-by: kvn

! src/share/vm/opto/graphKit.cpp
! src/share/vm/opto/graphKit.hpp
! src/share/vm/opto/library_call.cpp
! src/share/vm/opto/parse2.cpp
! src/share/vm/opto/parse3.cpp

Changeset: 3f06f139ef53
Author:never
Date:  2009-06-26 16:14 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/3f06f139ef53

6851908: interpreter null check profiling broken causing extra compilation 
invalidation
Reviewed-by: kvn

! src/cpu/x86/vm/interp_masm_x86_32.cpp
! src/cpu/x86/vm/interp_masm_x86_64.cpp

Changeset: bf3489cc0aa0
Author:never
Date:  2009-07-01 12:22 -0700
URL:   

hg: jdk7/tl/jaxws: 2 new changesets

2009-07-20 Thread tim . bell
Changeset: aa22a1be5866
Author:xdono
Date:  2009-07-13 14:47 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/aa22a1be5866

Added tag jdk7-b64 for changeset aaa25dfd3de6

! .hgtags

Changeset: fa8712c099ed
Author:xdono
Date:  2009-07-16 10:53 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/fa8712c099ed

Added tag jdk7-b65 for changeset aa22a1be5866

! .hgtags



hg: jdk7/tl/langtools: 7 new changesets

2009-07-20 Thread tim . bell
Changeset: e4a1c76c1abb
Author:peterz
Date:  2009-06-23 12:24 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/e4a1c76c1abb

6844273: jdk/make/docs/CORE_PKGS.gmk does not list Nimbus
Reviewed-by: prr

! src/share/classes/com/sun/tools/javac/resources/legacy.properties

Changeset: ddef2ef424d8
Author:yan
Date:  2009-06-25 00:20 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/ddef2ef424d8

Merge

- make/README
- src/share/classes/sun/tools/javap/AttrData.java
- src/share/classes/sun/tools/javap/CPX.java
- src/share/classes/sun/tools/javap/CPX2.java
- src/share/classes/sun/tools/javap/ClassData.java
- src/share/classes/sun/tools/javap/Constants.java
- src/share/classes/sun/tools/javap/FieldData.java
- src/share/classes/sun/tools/javap/InnerClassData.java
- src/share/classes/sun/tools/javap/JavapEnvironment.java
- src/share/classes/sun/tools/javap/JavapPrinter.java
- src/share/classes/sun/tools/javap/LineNumData.java
- src/share/classes/sun/tools/javap/LocVarData.java
- src/share/classes/sun/tools/javap/Main.java
- src/share/classes/sun/tools/javap/MethodData.java
- src/share/classes/sun/tools/javap/RuntimeConstants.java
- src/share/classes/sun/tools/javap/StackMapData.java
- src/share/classes/sun/tools/javap/StackMapTableData.java
- src/share/classes/sun/tools/javap/Tables.java
- src/share/classes/sun/tools/javap/TrapData.java
- src/share/classes/sun/tools/javap/TypeSignature.java
- test/tools/javac/code/ArrayClone.sh
- test/tools/javap/ListTest.java
- test/tools/javap/OptionTest.java

Changeset: 09dc14c713f0
Author:yan
Date:  2009-07-01 00:24 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/09dc14c713f0

Merge


Changeset: d8f23a81d46f
Author:yan
Date:  2009-07-07 23:13 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/d8f23a81d46f

Merge


Changeset: 7e0056ded28c
Author:xdono
Date:  2009-07-13 14:48 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/7e0056ded28c

Added tag jdk7-b64 for changeset d8f23a81d46f

! .hgtags

Changeset: 634f519d6f9a
Author:xdono
Date:  2009-07-16 10:53 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/634f519d6f9a

Added tag jdk7-b65 for changeset 7e0056ded28c

! .hgtags

Changeset: 86ad2753f3be
Author:tbell
Date:  2009-07-17 09:14 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/langtools/rev/86ad2753f3be

Merge




hg: jdk7/tl: 4 new changesets

2009-07-04 Thread tim . bell
Changeset: 60b818e5e4f9
Author:andrew
Date:  2009-06-17 20:53 +0100
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/60b818e5e4f9

6851515: awt_p.h incorporates a chunk of the XRender header
Summary: Use XRender header directly rather than copying chunks locally
Reviewed-by: anthony, ohair

! README-builds.html

Changeset: c7ed15ab92ce
Author:yan
Date:  2009-06-23 23:08 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/c7ed15ab92ce

Merge


Changeset: 57f7e028c7ad
Author:xdono
Date:  2009-06-25 12:09 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/57f7e028c7ad

Added tag jdk7-b62 for changeset c7ed15ab92ce

! .hgtags

Changeset: 9849536536d2
Author:xdono
Date:  2009-07-02 11:10 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/9849536536d2

Added tag jdk7-b63 for changeset 57f7e028c7ad

! .hgtags



hg: jdk7/tl/corba: 2 new changesets

2009-07-04 Thread tim . bell
Changeset: d20e45cd539f
Author:xdono
Date:  2009-06-25 12:09 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/d20e45cd539f

Added tag jdk7-b62 for changeset 65b66117dbd7

! .hgtags

Changeset: b3ad991d9534
Author:xdono
Date:  2009-07-02 11:10 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/b3ad991d9534

Added tag jdk7-b63 for changeset d20e45cd539f

! .hgtags



hg: jdk7/tl/hotspot: 11 new changesets

2009-07-04 Thread tim . bell
Changeset: 8754a3c37762
Author:xdono
Date:  2009-06-25 12:09 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/8754a3c37762

Added tag jdk7-b62 for changeset a88386380bda

! .hgtags

Changeset: 821269eca479
Author:ysr
Date:  2009-06-11 12:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/821269eca479

6820167: GCALotAtAllSafepoints + FullGCALot(ScavengeALot) options crash JVM
Summary: Short-circuit gc-a-lot attempts by non-JavaThreads; SkipGCALot c'tor 
to elide re-entrant gc-a-lot attempts.
Reviewed-by: apetrusenko, jcoomes, jmasa, kamg

! src/share/vm/memory/gcLocker.hpp
! src/share/vm/runtime/interfaceSupport.cpp
! src/share/vm/runtime/thread.cpp
! src/share/vm/runtime/thread.hpp
! src/share/vm/runtime/vmThread.cpp

Changeset: d44bdab1c03d
Author:johnc
Date:  2009-06-11 17:19 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/d44bdab1c03d

6843694: G1: assert(index  _vs.committed_size(),bad index), 
g1BlockOffsetTable.inline.hpp:55
Summary: For heaps larger than 32Gb, the number of heap regions overflows the 
data type used to hold the region index in the SparsePRT structure. Changed the 
region indexes, card indexes, and RSet hash table buckets to ints and added 
some size overflow guarantees.
Reviewed-by: ysr, tonyp

! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp
! src/share/vm/gc_implementation/g1/heapRegionRemSet.cpp
! src/share/vm/gc_implementation/g1/sparsePRT.cpp
! src/share/vm/gc_implementation/g1/sparsePRT.hpp
! src/share/vm/gc_implementation/includeDB_gc_g1

Changeset: 353ba4575581
Author:jcoomes
Date:  2009-06-07 22:08 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/353ba4575581

6814552: par compact - some compilers fail to optimize bitmap code
Reviewed-by: tonyp, iveresov, jmasa, ysr

! src/share/vm/gc_implementation/parallelScavenge/parMarkBitMap.hpp

Changeset: 6e2afda171db
Author:jcoomes
Date:  2009-06-11 13:31 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/6e2afda171db

6849716: BitMap - performance regression introduced with G1
Summary: make verification code visible only in debug builds
Reviewed-by: iveresov, ysr, johnc, apetrusenko, tonyp

! src/share/vm/includeDB_compiler1
! src/share/vm/utilities/bitMap.cpp
! src/share/vm/utilities/bitMap.hpp
! src/share/vm/utilities/bitMap.inline.hpp
! src/share/vm/utilities/macros.hpp

Changeset: 3104f76478ee
Author:jmasa
Date:  2009-06-18 12:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/3104f76478ee

Merge


Changeset: 830ca2573896
Author:tonyp
Date:  2009-06-12 16:20 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/830ca2573896

6850846: G1: extend G1 marking verification
Summary: extend G1 marking verification to use either the prev or next 
marking information, as appropriate.
Reviewed-by: johnc, ysr

! src/share/vm/gc_implementation/g1/concurrentMark.cpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp
! src/share/vm/gc_implementation/g1/heapRegion.cpp
! src/share/vm/gc_implementation/g1/heapRegion.hpp

Changeset: 85d0690f7d12
Author:jmasa
Date:  2009-06-19 07:33 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/85d0690f7d12

Merge


Changeset: f9c95d5dc41f
Author:trims
Date:  2009-06-25 22:01 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f9c95d5dc41f

Merge


Changeset: 32c83fb84370
Author:trims
Date:  2009-06-30 10:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/32c83fb84370

6856257: Bump the HS16 build number to 05
Summary: Update the HS16 build number to 05
Reviewed-by: jcoomes

! make/hotspot_version

Changeset: ba36394eb84b
Author:xdono
Date:  2009-07-02 11:10 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/ba36394eb84b

Added tag jdk7-b63 for changeset 32c83fb84370

! .hgtags



hg: jdk7/tl/jaxp: 2 new changesets

2009-07-04 Thread tim . bell
Changeset: ae449e9c04c1
Author:xdono
Date:  2009-06-25 12:09 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/ae449e9c04c1

Added tag jdk7-b62 for changeset a97dd57a6260

! .hgtags

Changeset: a10eec7a1edf
Author:xdono
Date:  2009-07-02 11:10 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/a10eec7a1edf

Added tag jdk7-b63 for changeset ae449e9c04c1

! .hgtags



hg: jdk7/tl/jaxws: 2 new changesets

2009-07-04 Thread tim . bell
Changeset: b8a6e883c0a6
Author:xdono
Date:  2009-06-25 12:09 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/b8a6e883c0a6

Added tag jdk7-b62 for changeset 75c801c13ea1

! .hgtags

Changeset: aaa25dfd3de6
Author:xdono
Date:  2009-07-02 11:10 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/aaa25dfd3de6

Added tag jdk7-b63 for changeset b8a6e883c0a6

! .hgtags



hg: jdk7/tl/jdk: 32 new changesets

2009-07-04 Thread tim . bell
Changeset: 6f1f159aed75
Author:yan
Date:  2009-06-03 17:41 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/6f1f159aed75

6839645: Swing application prints message in Control Panel if language is 
changed
Summary: just remove debug printout from production builds; ignore 
multicharacter-generating keys
Reviewed-by: uta

! src/windows/native/sun/windows/awt_Component.cpp

Changeset: a3f970a8600b
Author:anthony
Date:  2009-06-04 15:18 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/a3f970a8600b

6832386: Fix JTreg test: java/awt/Graphics/DrawImageBG/SystemBgColorTest.java
Summary: Removed unneeded System.exit(0) call.
Reviewed-by: art, ohair, anthony
Contributed-by: Omair Majid oma...@redhat.com

! test/java/awt/Graphics/DrawImageBG/SystemBgColorTest.java

Changeset: 7289003cd1c9
Author:dcherepanov
Date:  2009-06-05 17:30 +0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/7289003cd1c9

6829180: Removing focused component from a window causes a JVM crash for 
JDK7b50+ on WinXP/Vista
Summary: access pData on the toolkit thread
Reviewed-by: art, anthony, naoto

! src/windows/native/sun/windows/awt_Component.cpp
! src/windows/native/sun/windows/awt_InputMethod.cpp
! src/windows/native/sun/windows/awt_Toolkit.cpp
! src/windows/native/sun/windows/awt_Toolkit.h
! src/windows/native/sun/windows/awtmsg.h

Changeset: 70654407b626
Author:dcherepanov
Date:  2009-06-15 11:15 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/70654407b626

6847584: closed/java/awt/EventDispatchThread/LoopRobustness/LoopRobustness.html 
fails
Reviewed-by: anthony

+ test/java/awt/EventDispatchThread/LoopRobustness/LoopRobustness.html
! test/java/awt/EventDispatchThread/LoopRobustness/LoopRobustness.java

Changeset: 0e441c781cdc
Author:yan
Date:  2009-06-16 00:37 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/0e441c781cdc

Merge

- src/share/native/sun/java2d/pipe/RenderBuffer.c

Changeset: 2a526ccd12e8
Author:andrew
Date:  2009-06-17 21:13 +0100
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/2a526ccd12e8

6851515: awt_p.h incorporates a chunk of the XRender header
Summary: Use XRender header directly rather than copying chunks locally
Reviewed-by: anthony, ohair

! src/solaris/native/sun/awt/awt_GraphicsEnv.c
! src/solaris/native/sun/awt/awt_p.h

Changeset: 1bbbd0ef5d04
Author:peytoia
Date:  2009-06-13 06:43 +0900
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/1bbbd0ef5d04

6850113: Bidi class needs to be updated to support Unicode 5.1
Reviewed-by: okutsu

! make/java/text/FILES_java.gmk
! make/sun/font/FILES_c.gmk
! make/sun/font/Makefile
! make/sun/font/mapfile-vers
! make/sun/font/mapfile-vers.openjdk
! src/share/classes/java/text/Bidi.java
+ src/share/classes/sun/text/bidi/BidiBase.java
+ src/share/classes/sun/text/bidi/BidiLine.java
+ src/share/classes/sun/text/bidi/BidiRun.java
! src/share/classes/sun/text/normalizer/UCharacter.java
- src/share/native/sun/font/bidi/cmemory.h
- src/share/native/sun/font/bidi/jbidi.c
- src/share/native/sun/font/bidi/jbidi.h
- src/share/native/sun/font/bidi/ubidi.c
- src/share/native/sun/font/bidi/ubidi.h
- src/share/native/sun/font/bidi/ubidiimp.h
- src/share/native/sun/font/bidi/ubidiln.c
- src/share/native/sun/font/bidi/uchardir.c
- src/share/native/sun/font/bidi/uchardir.h
- src/share/native/sun/font/bidi/utypes.h
! src/share/native/sun/font/layout/LETypes.h
! test/java/text/Bidi/BidiBug.java
+ test/java/text/Bidi/BidiConformance.java
! test/java/text/Bidi/BidiEmbeddingTest.java
+ test/java/text/Bidi/Bug6850113.java

Changeset: 45316d7cc9dc
Author:yan
Date:  2009-06-17 23:27 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/45316d7cc9dc

Merge

- src/share/native/sun/font/bidi/cmemory.h
- src/share/native/sun/font/bidi/jbidi.c
- src/share/native/sun/font/bidi/jbidi.h
- src/share/native/sun/font/bidi/ubidi.c
- src/share/native/sun/font/bidi/ubidi.h
- src/share/native/sun/font/bidi/ubidiimp.h
- src/share/native/sun/font/bidi/ubidiln.c
- src/share/native/sun/font/bidi/uchardir.c
- src/share/native/sun/font/bidi/uchardir.h
- src/share/native/sun/font/bidi/utypes.h

Changeset: 12e11fab9a83
Author:yan
Date:  2009-06-23 23:09 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/12e11fab9a83

Merge

- src/share/native/sun/font/bidi/cmemory.h
- src/share/native/sun/font/bidi/jbidi.c
- src/share/native/sun/font/bidi/jbidi.h
- src/share/native/sun/font/bidi/ubidi.c
- src/share/native/sun/font/bidi/ubidi.h
- src/share/native/sun/font/bidi/ubidiimp.h
- src/share/native/sun/font/bidi/ubidiln.c
- src/share/native/sun/font/bidi/uchardir.c
- src/share/native/sun/font/bidi/uchardir.h
- src/share/native/sun/font/bidi/utypes.h

Changeset: 8905d218cd0d
Author:xdono
Date:  2009-06-25 12:10 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jdk/rev/8905d218cd0d

Added tag jdk7-b62 for changeset 12e11fab9a83

! .hgtags

Changeset: 9f243df213fa
Author:

hg: jdk7/tl/corba: 2 new changesets

2009-06-24 Thread tim . bell
Changeset: c73934e09f00
Author:xdono
Date:  2009-06-18 13:05 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/c73934e09f00

Added tag jdk7-b61 for changeset e906b16a12a9

! .hgtags

Changeset: 65b66117dbd7
Author:tbell
Date:  2009-06-21 23:50 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/65b66117dbd7

Merge




hg: jdk7/tl/hotspot: 32 new changesets

2009-06-24 Thread tim . bell
Changeset: 47ffceb239d0
Author:thurka
Date:  2009-05-20 09:36 +0200
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/47ffceb239d0

6839599: JVM crash while profiling Tomcat and Liferay
Summary: constantPoolOopDesc::copy_cpool_bytes() - do the brute-force search 
search through 'tbl' when SymbolTable::lookup_only() returns NULL
Reviewed-by: kamg

! src/share/vm/oops/constantPoolOop.cpp

Changeset: f1f3a2719a55
Author:xlu
Date:  2009-05-22 16:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f1f3a2719a55

6843580: JavaThread.getStackBase throws sun.jvm.hotspot.WrongTypeException 
invoked by jstack
Reviewed-by: phh, dice, never, swamyv

! agent/src/share/classes/sun/jvm/hotspot/runtime/JavaThread.java

Changeset: 93c14e5562c4
Author:twisti
Date:  2009-05-06 00:27 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/93c14e5562c4

6823354: Add intrinsics for 
{Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
Summary: These methods can be instrinsified by using bit scan, bit test, and 
population count instructions.
Reviewed-by: kvn, never

! src/cpu/sparc/vm/sparc.ad
! src/cpu/x86/vm/assembler_x86.cpp
! src/cpu/x86/vm/assembler_x86.hpp
! src/cpu/x86/vm/vm_version_x86.cpp
! src/cpu/x86/vm/vm_version_x86.hpp
! src/cpu/x86/vm/x86_32.ad
! src/cpu/x86/vm/x86_64.ad
! src/share/vm/classfile/vmSymbols.hpp
! src/share/vm/opto/classes.hpp
! src/share/vm/opto/connode.cpp
! src/share/vm/opto/connode.hpp
! src/share/vm/opto/library_call.cpp
! src/share/vm/opto/matcher.hpp
! src/share/vm/runtime/globals.hpp
+ test/compiler/6823354/Test6823354.java

Changeset: e85af0c0c94b
Author:twisti
Date:  2009-05-07 00:28 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/e85af0c0c94b

Merge


Changeset: f53b154d959d
Author:twisti
Date:  2009-05-06 08:57 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f53b154d959d

6837906: compiler tests of 6636138 fail with IllegalAccessException
Summary: The compiler tests of 6636138 fail with an IllegalAccessException.
Reviewed-by: kvn

! test/compiler/6636138/Test1.java
! test/compiler/6636138/Test2.java

Changeset: f2954231d190
Author:twisti
Date:  2009-05-07 04:16 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f2954231d190

Merge


Changeset: d0e0d6d824d8
Author:kvn
Date:  2009-05-08 10:34 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/d0e0d6d824d8

Merge

! src/share/vm/runtime/globals.hpp

Changeset: c96bf21b756f
Author:kvn
Date:  2009-05-08 10:44 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c96bf21b756f

6788527: Server vm intermittently fails with assertion live value must not be 
garbage with fastdebug bits
Summary: Cache Jvmti and DTrace flags used by Compiler.
Reviewed-by: never

! src/cpu/sparc/vm/c1_LIRAssembler_sparc.cpp
! src/cpu/sparc/vm/c1_MacroAssembler_sparc.cpp
! src/cpu/x86/vm/c1_LIRAssembler_x86.cpp
! src/cpu/x86/vm/c1_MacroAssembler_x86.cpp
! src/share/vm/c1/c1_Compilation.cpp
! src/share/vm/c1/c1_GraphBuilder.cpp
! src/share/vm/c1/c1_LIRGenerator.cpp
! src/share/vm/ci/ciEnv.cpp
! src/share/vm/ci/ciEnv.hpp
! src/share/vm/ci/ciMethod.cpp
! src/share/vm/compiler/compileBroker.cpp
! src/share/vm/opto/doCall.cpp
! src/share/vm/opto/graphKit.cpp
! src/share/vm/opto/macro.cpp
! src/share/vm/opto/parse1.cpp
! src/share/vm/opto/parse2.cpp

Changeset: 44ccd7a9065c
Author:ohair
Date:  2009-05-08 15:16 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/44ccd7a9065c

6839151: Add a JPRT default test of -Xshare:dump when new hotspot is built
Reviewed-by: never, kvn

! make/jprt.properties
! test/Makefile

Changeset: 900e4df4b0c3
Author:ohair
Date:  2009-05-08 23:00 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/900e4df4b0c3

Merge


Changeset: a9e116455022
Author:kvn
Date:  2009-05-11 17:59 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a9e116455022

6832293: JIT compiler got wrong result in type checking with -server
Summary: Check for an object array of interface in CmpPNode::sub().
Reviewed-by: never

! src/share/vm/opto/subnode.cpp
+ test/compiler/6832293/Test.java

Changeset: b2934faac289
Author:kvn
Date:  2009-05-11 18:30 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/b2934faac289

6836054: java/util/Arrays/CopyMethods.java fails on solaris-sparc with 
IllegalArgumentException
Summary: Do not mark an allocation as scalar replaceable if its actual type in 
unknown statically.
Reviewed-by: never

! src/share/vm/opto/escape.cpp

Changeset: 2056494941db
Author:twisti
Date:  2009-05-13 00:45 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/2056494941db

6814842: Load shortening optimizations
Summary: 6797305 handles load widening but no shortening which should be 
covered here.
Reviewed-by: never, kvn

! src/cpu/sparc/vm/sparc.ad
! src/cpu/x86/vm/x86_32.ad
! 

hg: jdk7/tl/jaxp: 2 new changesets

2009-06-24 Thread tim . bell
Changeset: db1d07f881a1
Author:xdono
Date:  2009-06-18 13:05 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/db1d07f881a1

Added tag jdk7-b61 for changeset f1ac756616ea

! .hgtags

Changeset: a97dd57a6260
Author:tbell
Date:  2009-06-21 23:51 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/a97dd57a6260

Merge




hg: jdk7/tl/jaxws: 2 new changesets

2009-06-24 Thread tim . bell
Changeset: 55681156ec1a
Author:xdono
Date:  2009-06-18 13:05 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/55681156ec1a

Added tag jdk7-b61 for changeset aeabf802f2a1

! .hgtags

Changeset: 75c801c13ea1
Author:tbell
Date:  2009-06-21 23:52 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/75c801c13ea1

Merge




hg: jdk7/tl/hotspot: 6 new changesets

2009-06-11 Thread tim . bell
Changeset: 5d4dd2f5f6a1
Author:aph
Date:  2009-04-17 15:50 +0100
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/5d4dd2f5f6a1

6829575: 100028: Debug information is incomplete or missing
Summary: Enable debugging in many places
Reviewed-by: ohair
Contributed-by: Andrew Haley a...@redhat.com

! make/linux/makefiles/gcc.make
! make/linux/makefiles/jsig.make
! make/linux/makefiles/saproc.make

Changeset: 7a485bc4da16
Author:xdono
Date:  2009-05-07 10:30 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/7a485bc4da16

Merge


Changeset: 116b019a3961
Author:ohair
Date:  2009-05-08 14:33 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/116b019a3961

6839126: Type error found by newer windows compiler
Reviewed-by: never, kvn

! src/share/vm/adlc/filebuff.hpp

Changeset: f5ee65f94d9a
Author:ohair
Date:  2009-05-15 13:41 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f5ee65f94d9a

Merge

- make/jprt.config
! make/linux/makefiles/gcc.make
! make/linux/makefiles/jsig.make
! make/linux/makefiles/saproc.make

Changeset: a77eddcd510c
Author:ohair
Date:  2009-05-19 17:40 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a77eddcd510c

6843041: Remove duplicate README files in repositories (make/README)
Reviewed-by: robilad

- make/README

Changeset: 86092459c54d
Author:xdono
Date:  2009-06-11 10:54 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/86092459c54d

Added tag jdk7-b60 for changeset a77eddcd510c

! .hgtags



hg: jdk7/tl/jaxws: 9 new changesets

2009-06-11 Thread tim . bell
Changeset: a92183572d99
Author:aph
Date:  2009-04-17 15:56 +0100
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/a92183572d99

6829575: 100028: Debug information is incomplete or missing
Summary: Enable debugging in many places
Reviewed-by: ohair
Contributed-by: Andrew Haley a...@redhat.com

! make/Makefile
! make/build.xml

Changeset: ab30d5761947
Author:aph
Date:  2009-04-20 19:01 +0100
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/ab30d5761947

6832141: Bug 100045 -  Fix for 100028 breaks debug info for class files
Summary: Correct fallout from 100028 patch
Reviewed-by: ohair
Contributed-by: Andrew Haley a...@redhat.com

! make/Makefile

Changeset: 35c29ff8d904
Author:ohair
Date:  2009-05-06 11:29 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/35c29ff8d904

6837665: Deal with windows ant problem where commas in -D options do not work
Reviewed-by: xdono

! make/Makefile
! make/build.properties

Changeset: d95fec0fa489
Author:xdono
Date:  2009-05-07 10:30 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/d95fec0fa489

Merge

! make/Makefile
! make/build.xml
- src/share/classes/com/sun/tools/internal/txw2/AntErrorListener.java
- src/share/classes/com/sun/tools/internal/txw2/ConsoleErrorReporter.java
- src/share/classes/com/sun/tools/internal/txw2/ErrorListener.java
- src/share/classes/com/sun/tools/internal/txw2/Main.java
- src/share/classes/com/sun/tools/internal/txw2/NameUtil.java
- src/share/classes/com/sun/tools/internal/txw2/RELAXNGLoader.java
- src/share/classes/com/sun/tools/internal/txw2/SchemaBuilder.java
- src/share/classes/com/sun/tools/internal/txw2/TxwOptions.java
- src/share/classes/com/sun/tools/internal/txw2/TxwTask.java
- src/share/classes/com/sun/tools/internal/txw2/XmlSchemaLoader.java
- 
src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/AnnotationsImpl.java
- 
src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/CommentListImpl.java
- 
src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/DataPatternBuilderImpl.java
- 
src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/DatatypeFactory.java
- src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/DivImpl.java
- 
src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/ElementAnnotationBuilderImpl.java
- src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/GrammarImpl.java
- 
src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/GrammarSectionImpl.java
- 
src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/SchemaBuilderImpl.java
- src/share/classes/com/sun/tools/internal/txw2/builder/relaxng/package.html
- 
src/share/classes/com/sun/tools/internal/txw2/builder/xsd/XmlSchemaBuilder.java
- src/share/classes/com/sun/tools/internal/txw2/builder/xsd/package.html
- src/share/classes/com/sun/tools/internal/txw2/model/Attribute.java
- src/share/classes/com/sun/tools/internal/txw2/model/CycleIterator.java
- src/share/classes/com/sun/tools/internal/txw2/model/Data.java
- src/share/classes/com/sun/tools/internal/txw2/model/Define.java
- src/share/classes/com/sun/tools/internal/txw2/model/Element.java
- src/share/classes/com/sun/tools/internal/txw2/model/Empty.java
- src/share/classes/com/sun/tools/internal/txw2/model/Grammar.java
- src/share/classes/com/sun/tools/internal/txw2/model/Leaf.java
- src/share/classes/com/sun/tools/internal/txw2/model/List.java
- src/share/classes/com/sun/tools/internal/txw2/model/Node.java
- src/share/classes/com/sun/tools/internal/txw2/model/NodeSet.java
- src/share/classes/com/sun/tools/internal/txw2/model/Ref.java
- src/share/classes/com/sun/tools/internal/txw2/model/Text.java
- src/share/classes/com/sun/tools/internal/txw2/model/Value.java
- src/share/classes/com/sun/tools/internal/txw2/model/WriterNode.java
- src/share/classes/com/sun/tools/internal/txw2/model/XmlNode.java
- src/share/classes/com/sun/tools/internal/txw2/model/prop/AttributeProp.java
- src/share/classes/com/sun/tools/internal/txw2/model/prop/ElementProp.java
- src/share/classes/com/sun/tools/internal/txw2/model/prop/LeafElementProp.java
- src/share/classes/com/sun/tools/internal/txw2/model/prop/Prop.java
- src/share/classes/com/sun/tools/internal/txw2/model/prop/ValueProp.java
- src/share/classes/com/sun/tools/internal/txw2/model/prop/XmlItemProp.java
- src/share/classes/com/sun/tools/internal/ws/processor/Processor.java
- src/share/classes/com/sun/tools/internal/ws/processor/ProcessorAction.java
- 
src/share/classes/com/sun/tools/internal/ws/processor/ProcessorActionVersion.java
- src/share/classes/com/sun/tools/internal/ws/processor/ProcessorConstants.java
- 
src/share/classes/com/sun/tools/internal/ws/processor/ProcessorNotificationListener.java
- src/share/classes/com/sun/tools/internal/ws/processor/ProcessorOptions.java
- 
src/share/classes/com/sun/tools/internal/ws/processor/config/ClassModelInfo.java
- 
src/share/classes/com/sun/tools/internal/ws/processor/config/Configuration.java
- 

hg: jdk7/tl/corba: Added tag jdk7-b59 for changeset 7e6b2b55c00c

2009-05-18 Thread tim . bell
Changeset: e9ba2b962ddf
Author:vasya
Date:  2009-05-14 10:57 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/e9ba2b962ddf

Added tag jdk7-b59 for changeset 7e6b2b55c00c

! .hgtags



hg: jdk7/tl: Added tag jdk7-b58 for changeset 59b497130f82

2009-05-15 Thread tim . bell
Changeset: 030142474602
Author:vasya
Date:  2009-05-11 12:08 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/rev/030142474602

Added tag jdk7-b58 for changeset 59b497130f82

! .hgtags



hg: jdk7/tl/corba: Added tag jdk7-b58 for changeset 2e3b8edab3ef

2009-05-15 Thread tim . bell
Changeset: 7e6b2b55c00c
Author:vasya
Date:  2009-05-11 12:08 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/corba/rev/7e6b2b55c00c

Added tag jdk7-b58 for changeset 2e3b8edab3ef

! .hgtags



hg: jdk7/tl/hotspot: 27 new changesets

2009-05-15 Thread tim . bell
Changeset: 313b56165de7
Author:vasya
Date:  2009-05-11 12:08 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/313b56165de7

Added tag jdk7-b58 for changeset 53d9bf689e80

! .hgtags

Changeset: c8379544879a
Author:ohair
Date:  2009-04-29 17:30 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c8379544879a

6831225: Upgrade JPRT jobs to use newer Linux 2.6 (e.g. Fedora 9)
Reviewed-by: kvn

- make/jprt.config
! make/jprt.properties

Changeset: 61c5604c8422
Author:jcoomes
Date:  2009-04-30 09:53 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/61c5604c8422

Merge

- make/jprt.config

Changeset: 45463a04ca27
Author:kvn
Date:  2009-04-29 12:58 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/45463a04ca27

6834177: Running jsynprog on Solaris Nevada can cause JVM crash
Summary: Use CodeCache buffer blob instead of static buffer in 
AdapterHandlerLibrary.
Reviewed-by: never

! src/share/vm/runtime/dtraceJSDT.cpp
! src/share/vm/runtime/sharedRuntime.cpp
! src/share/vm/runtime/sharedRuntime.hpp

Changeset: f36f12d01311
Author:kvn
Date:  2009-04-30 12:09 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/f36f12d01311

Merge


Changeset: af5d39ca39a3
Author:kvn
Date:  2009-04-30 15:57 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/af5d39ca39a3

6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
Summary: Switch off GCC 4.3.0 optimized compilation for mulnode.o.
Reviewed-by: johnc

! make/jprt.properties
! make/linux/makefiles/gcc.make

Changeset: 2b6c55e36143
Author:tonyp
Date:  2009-04-23 16:58 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/2b6c55e36143

6829013: G1: set the default value of G1VerifyConcMarkPrintRechable to false
Summary: Turn off G1VerifyConcMarkPrintReachable by default to minimize the 
amount of verbose output we generate by default.
Reviewed-by: jmasa

! src/share/vm/gc_implementation/g1/g1_globals.hpp
! src/share/vm/gc_implementation/g1/heapRegion.cpp

Changeset: 4753e4079a5a
Author:apetrusenko
Date:  2009-04-27 12:33 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/4753e4079a5a

Merge


Changeset: b803b1b9e206
Author:iveresov
Date:  2009-04-27 16:52 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/b803b1b9e206

6819098: G1: reduce RSet scanning times
Summary: Added a feedback-driven exponential skipping for parallel RSet 
scanning.
Reviewed-by: tonyp, apetrusenko

! src/share/vm/gc_implementation/g1/g1RemSet.cpp

Changeset: 51285b431bb2
Author:apetrusenko
Date:  2009-05-04 02:57 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/51285b431bb2

Merge


Changeset: 81a249214991
Author:poonam
Date:  2009-05-04 17:58 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/81a249214991

6829234: Refix 6822407 and 6812971
Summary: Fixes two SA issues 6822407 and 6812971
Reviewed-by: swamyv, acorn, kvn, coleenp

! agent/src/share/classes/sun/jvm/hotspot/HotSpotTypeDataBase.java
! agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java

Changeset: c8f1f4de26c9
Author:kamg
Date:  2009-05-07 11:44 -0400
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/c8f1f4de26c9

Merge


Changeset: 20c6f43950b5
Author:johnc
Date:  2009-04-30 15:07 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/20c6f43950b5

6490395: G1: Tidy up command line flags.
Summary: Change G1 flag names to be more consistent and disable some in 
'product' mode.
Reviewed-by: tonyp, iveresov

! src/share/vm/gc_implementation/g1/concurrentG1RefineThread.cpp
! src/share/vm/gc_implementation/g1/concurrentMark.cpp
! src/share/vm/gc_implementation/g1/concurrentMarkThread.cpp
! src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
! src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
! src/share/vm/gc_implementation/g1/g1MarkSweep.cpp
! src/share/vm/gc_implementation/g1/g1RemSet.cpp
! src/share/vm/gc_implementation/g1/g1_globals.hpp
! src/share/vm/gc_implementation/g1/heapRegion.cpp
! src/share/vm/runtime/arguments.cpp
! src/share/vm/runtime/globals.hpp

Changeset: a2957df801a1
Author:johnc
Date:  2009-05-05 22:15 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a2957df801a1

6833576: G1: assert illegal index, growableArray.hpp:186
Summary: The code that calculates the heap region index for an object address 
incorrectly used signed arithmetic.
Reviewed-by: jcoomes, ysr

! src/share/vm/gc_implementation/g1/g1CollectedHeap.inline.hpp

Changeset: a58ad611cc63
Author:jcoomes
Date:  2009-05-07 13:54 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/a58ad611cc63

Merge


Changeset: 2b25645dab33
Author:never
Date:  2009-05-04 22:06 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/hotspot/rev/2b25645dab33

6837224: libsaproc.so on linux needs version of 6799141
Reviewed-by: kvn

! 

hg: jdk7/tl/jaxp: Added tag jdk7-b58 for changeset 13bf67d8c634

2009-05-15 Thread tim . bell
Changeset: 75113d7ce083
Author:vasya
Date:  2009-05-11 12:08 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxp/rev/75113d7ce083

Added tag jdk7-b58 for changeset 13bf67d8c634

! .hgtags



hg: jdk7/tl/jaxws: Added tag jdk7-b58 for changeset 5fb4fbea81c3

2009-05-15 Thread tim . bell
Changeset: f64566bf4c2b
Author:vasya
Date:  2009-05-11 12:08 -0700
URL:   http://hg.openjdk.java.net/jdk7/tl/jaxws/rev/f64566bf4c2b

Added tag jdk7-b58 for changeset 5fb4fbea81c3

! .hgtags



  1   2   3   >