David Simms
618cb11a73
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
...
Return NULL on OOM from GetStringChars, GetStringUTFChars and Get<PrimitiveType>ArrayElements family of functions.
Reviewed-by: dholmes, coleenp
2013-08-26 09:33:01 +02:00
Harold Seigel
6a548048a3
8022183: GCC 4.6 change sdefault setting for omit-frame-pointer which breaks hotspot stack walking
...
Explicitly specify -fno-omit-frame-pointer.
Reviewed-by: coleenp, dholmes, dcubed
2013-08-25 21:21:18 -04:00
Jon Masamitsu
a984bd23ad
Merge
2013-08-23 15:59:20 -07:00
Chris Plummer
a8f6ab1f52
8020829: JT_HS: 2 runtime NMT tests fail on platforms if NMT detail is not supported
...
Make tests query a new WhiteBox API to see if NMT detail is supported, and behave properly if it is not supported.
Reviewed-by: dholmes, coleenp
2013-08-23 12:36:32 -07:00
Bill Pittore
993de8ba28
8014135: The JVMTI specification does not conform to recent changes in JNI specification
...
Added support for statically linked agents
Reviewed-by: sspitsyn, bobv, coleenp
2013-08-23 20:33:02 -04:00
Daniel D. Daugherty
3b29cc06ea
Merge
2013-08-23 10:39:15 -07:00
Alejandro Murillo
6549fc2f25
8023635: new hotspot build - hs25-b48
...
Reviewed-by: jcoomes
2013-08-23 03:14:54 -07:00
Alejandro Murillo
d35ecfaa15
Added tag hs25-b47 for changeset 5ca7390c9649
2013-08-23 03:01:16 -07:00
Alejandro Murillo
f00f98f2cb
Merge
2013-08-23 03:01:16 -07:00
Markus Grönlund
ea17b8decf
8023457: Event based tracing framework needs a mutex for thread groups
...
Reviewed-by: acorn, sla
2013-08-23 10:36:34 +02:00
Poonam Bajaj
626bd19644
Merge
2013-08-22 21:23:31 -07:00
Poonam Bajaj
7df53d2e04
Merge
2013-08-22 18:09:29 -07:00
Jiangli Zhou
e99b9a6afb
Merge
2013-08-22 17:21:48 -07:00
Jiangli Zhou
5c6c0a8d1d
8023547: com/sun/jdi/RedefineMulti.sh fails with IllegalArgumentException after JDK-8021948
...
Need to check if the constant pool mapping returns 0.
Reviewed-by: coleenp, sspitsyn
2013-08-22 19:27:42 -04:00
Jon Masamitsu
2ef7b2abe3
Merge
2013-08-22 14:03:47 -07:00
Ioi Lam
2a3be6869b
Merge
2013-08-22 13:53:13 -07:00
Staffan Larsen
c2f5861c47
Merge
2013-08-22 14:56:10 -04:00
Jon Masamitsu
892e74a87e
Merge
2013-08-22 11:13:17 -07:00
Ioi Lam
f61c7dc88b
8023406: make/windows/build_vm_def.sh takes too long even when BUILD_WIN_SA != 1
...
Avoid dumping C++ vtable when BUILD_WIN_SA != 1
Reviewed-by: dcubed, sla, tbell
2013-08-22 10:20:50 -07:00
Rickard Bäckman
4cb52fc49d
Merge
2013-08-22 18:37:14 +02:00
Christine Lu
9276e491e8
Added tag jdk8-b104 for changeset 78f23ea4586e
2013-08-22 09:10:01 -07:00
Harold Seigel
2df9b70f5e
7121403: [TESTBUG] runtime/7051189/Xchecksig.sh fails on 64bit solaris
...
8023393: Need to suppress info message if -Xcheck:jni used with libjsig.dylab on Mac OSX
Rewrite 7051189 test in Java, port Linux fix for 7051189 to Mac OSX.
Reviewed-by: coleenp, dholmes, mseledtsov, ccheung
2013-08-22 11:52:27 -04:00
Erik Helin
27e891247e
8020692: TestGCEventMixed.java failed because of timestamp in event after end event
...
Reviewed-by: mgerdin, stefank
2013-08-22 11:23:15 +02:00
Stefan Johansson
80fea6f305
8016155: SIGBUS when running Kitchensink with ParallelScavenge and ParallelOld
...
When using NUMA and large pages we need to ease the requirement on which node the memory should be allocated on. To avoid the SIGBUS we now use the memory policy MPOL_PREFERRED, which prefers a certain node, instead of MPOL_BIND, which requires a certain node.
Reviewed-by: jmasa, pliden
2013-08-22 10:50:41 +02:00
Vladimir Kempik
f3ca3801d9
8020530: Non heap memory size calculated incorrectly
...
Reviewed-by: coleenp, sla
2013-08-21 22:12:11 -07:00
Bengt Rutisson
120ca47539
Merge
2013-08-22 04:14:45 +02:00
Bengt Rutisson
4c3c3b6caa
8022872: G1: Use correct GC cause for young GC triggered by humongous allocations
...
Reviewed-by: tonyp, tschatzl
2013-08-21 22:35:56 +02:00
Roland Westrelin
f188c2bf70
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
...
Do patching rather bailing out for unlinked call with appendix
Reviewed-by: twisti, kvn
2013-08-21 13:34:45 +02:00
Vladimir Kozlov
dac98bcc0d
8023472: C2 optimization breaks with G1
...
Set control edge for previous value load in G1 pre-barrier
Reviewed-by: twisti
2013-08-23 18:04:35 -07:00
Vladimir Kozlov
ccfb92c6a9
8012972: Incremental Inlining should support scalar replaced object in debug info
...
Store in _first_index not absolute index but an index relative to the last (youngest) jvms->_scloff value
Reviewed-by: roland, twisti
2013-08-23 11:41:37 -07:00
Staffan Larsen
1e740c466f
8022808: Kitchensink hangs on macos
...
Use pthread_mach_thread_np() instead of mach_thread_self() to avoid leaking resources
Reviewed-by: dholmes, rbackman
2013-08-21 13:18:52 +02:00
Daniel D. Daugherty
e951505eab
8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
...
Recognize 0x5120 as "Sun Studio 12u3".
Reviewed-by: dholmes, coleenp
2013-08-20 13:47:40 -07:00
Jiangli Zhou
9fab0cfa1b
Merge
2013-08-20 00:48:55 -07:00
Rickard Bäckman
6ef251ac19
8022283: Assertion failed: assert(is_loaded() && field->holder()->is_loaded() && klass()->is_subclass_of (field->holder())) failed: invalid access
...
Reviewed-by: roland, twisti
2013-08-20 09:37:01 +02:00
Kevin Walls
6d662d543e
Merge
2013-08-19 22:28:52 -07:00
Erik Helin
259a710013
Merge
2013-08-19 17:29:41 -07:00
Jiangli Zhou
553b498f51
8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes
...
Change InstanceKlass::_source_file_name and _generic_signature to u2 fields.
Reviewed-by: coleenp, iklam
2013-08-19 14:59:54 -04:00
Yumin Qi
056fb53c83
8023188: Unsafe volatile double store on bsd is broken
...
Reviewed-by: dcubed, dholmes
2013-08-19 09:16:35 -07:00
Kevin Walls
a40e2a9236
8022655: ClassDump ignored jarStream setting
...
Reviewed-by: minqi, sla
2013-08-19 14:28:58 +01:00
Daniel D. Daugherty
2c28ff340a
Merge
2013-08-16 10:06:58 -07:00
Jon Masamitsu
d0aa753d99
8022817: CMS should not shrink if compaction was not done
...
Reviewed-by: ysr, mgerdin
2013-08-16 06:12:46 -07:00
Alejandro Murillo
92e079eae1
8023152: new hotspot build - hs25-b47
...
Reviewed-by: jcoomes
2013-08-16 04:24:07 -07:00
Stefan Karlsson
7ade7987a0
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
...
Replace the broken large pages implementation on Linux. New flag: -XX:+UseTransparentHugePages - Linux specific flag to turn on transparent huge page hinting with madvise(..., MAP_HUGETLB). Changed behavior: -XX:+UseLargePages - tries to use -XX:+UseTransparentHugePages before trying other large pages implementations (on Linux). Changed behavior: -XX:+UseHugeTLBFS - Use upfront allocation of Large Pages instead of using the broken implementation to dynamically committing large pages. Changed behavior: -XX:LargePageSizeInBytes - Turned off the ability to use this flag on Linux and provides warning to user if set to a value different than the OS chosen large page size. Changed behavior: Setting no large page size - Now defaults to use -XX:UseTransparentHugePages if the OS supports it. Previously, -XX:+UseHugeTLBFS was chosen if the OS was configured to use large pages.
Reviewed-by: tschatzl, dcubed, brutisso
2013-08-16 13:22:32 +02:00
Alejandro Murillo
c70766c84b
Added tag hs25-b46 for changeset 33c42f8baa1d
2013-08-16 04:14:13 -07:00
Alejandro Murillo
5485bef44e
Merge
2013-08-16 04:14:12 -07:00
Bengt Rutisson
5075c7e128
Merge
2013-08-16 09:02:36 +02:00
Harold Seigel
4d91f4e69d
8003424: Enable Class Data Sharing for CompressedOops
...
8016729: ObjectAlignmentInBytes=16 now forces the use of heap based compressed oops
8005933: The -Xshare:auto option is ignored for -server
Move klass metaspace above the heap and support CDS with compressed klass ptrs.
Reviewed-by: coleenp, kvn, mgerdin, tschatzl, stefank
2013-08-15 20:04:10 -04:00
Christine Lu
e50bff5642
Added tag jdk8-b103 for changeset 31869efc272a
2013-08-15 09:25:33 -07:00
Rickard Bäckman
8db7a08b50
Merge
2013-08-15 15:26:16 +02:00
Erik Helin
8250719f92
Merge
2013-08-15 06:20:48 -07:00