Xin Liu
|
7c6a83fb27
|
8223537: testlibrary_tests/ctw/ClassesListTest.java fails with Agent timeout frequently
Reviewed-by: thartmann, kvn
|
2019-05-09 18:38:42 -07:00 |
|
Stefan Karlsson
|
c90f3ee68b
|
8223624: Cleanup includes of universe.hpp
Reviewed-by: coleenp, lkorinth
|
2019-05-09 14:28:30 +02:00 |
|
Vladimir Kozlov
|
72f082e925
|
8223332: Update JVMCI
Reviewed-by: never, dnsimon
|
2019-05-06 20:05:19 -07:00 |
|
Vladimir Kozlov
|
e9c523ae5f
|
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
Reviewed-by: dnsimon, never, stefank, rehn, neliasso, dholmes, kbarrett, coleenp
|
2019-05-01 12:31:29 -07:00 |
|
Coleen Phillimore
|
ccb2e9d925
|
8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
Fixed use cases in code except CMS.
Reviewed-by: rehn, dcubed
|
2019-04-29 16:01:52 -04:00 |
|
Coleen Phillimore
|
fbafef11c0
|
8222811: Consolidate MutexLockerEx and MutexLocker
Make MutexLocker be MutexLockerEx implementation, remove MutexLockerEx calls.
Reviewed-by: dcubed, dholmes, pliden, rehn
|
2019-04-25 10:56:31 -04:00 |
|
Jean Christophe Beyler
|
ec3edf99f9
|
8221853: Data race in compile broker (set_last_compile)
Remove the debug code provoking it
Reviewed-by: kvn, thartmann
|
2019-04-09 19:34:05 -07:00 |
|
Tobias Hartmann
|
ac17b61a59
|
8163511: Allocation of compile task fails with assert: "Leaking compilation tasks?"
Use weak handles for compile tasks to allow unloading of referenced methods.
Reviewed-by: kvn, coleenp, eosterlund
|
2019-03-07 08:38:16 +01:00 |
|
Robbin Ehn
|
046a1f0ff7
|
8218041: Assorted wrong/missing includes
Reviewed-by: dholmes, kbarrett, stefank, shade
|
2019-01-31 10:31:39 +01:00 |
|
Doug Simon
|
5f5d4425c2
|
8217445: [JVMCI] incorrect management of JVMCI compilation failure reason string
Reviewed-by: kvn, thartmann
|
2019-01-22 10:12:05 +01:00 |
|
Claes Redestad
|
d3cd2cb795
|
8217387: Remove dead develop flag CIFireOOMAt
Reviewed-by: shade, kbarrett
|
2019-01-20 16:55:21 +01:00 |
|
Lutz Schmidt
|
92e750fb58
|
8216314: SIGILL in CodeHeapState::print_names()
Reviewed-by: thartmann, kvn
|
2019-01-16 09:48:35 +01:00 |
|
Igor Ignatyev
|
5ff302e6bb
|
8214917: CTW testlibrary shouldn't ignore errors raised by the library itself
Reviewed-by: kvn, roland
|
2018-12-10 11:04:55 -08:00 |
|
Aleksey Shipilev
|
ffeae5bd65
|
8212070: Introduce diagnostic flag to abort VM on failed JIT compilation
Reviewed-by: mikael, thartmann
|
2018-11-19 11:51:27 +01:00 |
|
Tobias Hartmann
|
2fe0a0f20b
|
8213014: Crash in CompileBroker::make_thread due to OOM
Added missing null checks and checks for pending exception.
Reviewed-by: kvn, dholmes, mdoerr
|
2018-11-01 14:15:35 +01:00 |
|
Martin Doerr
|
a241cf4367
|
8213086: Compiler thread creation should be bounded by available space in memory and Code Cache
Reviewed-by: kvn, thartmann
|
2018-10-31 14:48:36 +01:00 |
|
Daniil Titov
|
93021808e6
|
8195627: [Graal] nsk/jdi/VirtualMachine/redefineClasses/redefineclasses026 hangs with Graal in Xcomp mode
Reviewed-by: sspitsyn, kvn
|
2018-10-30 19:29:21 -07:00 |
|
Coleen Phillimore
|
432605be5c
|
8209889: RedefineStress tests crash
Create CompileTaskWrapper before potential safepoint
Reviewed-by: mdoerr, dlong
|
2018-10-05 09:15:52 -04:00 |
|
Jesper Wilhelmsson
|
d40735db17
|
Merge
|
2018-08-29 19:48:28 +02:00 |
|
Tobias Hartmann
|
aef7c93375
|
8209670: CompilerThread releasing code buffer in destructor is unsafe
Don't free temporary code buffers in compiler thread destructor to avoid interference with safepoint code.
Reviewed-by: kvn, dholmes, zgu
|
2018-08-21 17:47:59 +02:00 |
|
Coleen Phillimore
|
647c7d5344
|
8164683: Solaris: JVM abuses thread preemption control
Complete removal of preemption control and command line arguments (were deprecated in 11).
Reviewed-by: hseigel, pchilanomate, dholmes
|
2018-08-10 09:36:01 -04:00 |
|
Tobias Hartmann
|
a16ca4799e
|
8205472: Deadlock in Kitchensink when trying to print compile queues causing timeout
Do not acquire the MethodCompileQueue_lock in CompileBroker::print_compile_queues().
Reviewed-by: kvn, kbarrett, dholmes
|
2018-07-10 15:33:55 +02:00 |
|
Tobias Hartmann
|
5e002c7aa7
|
8205499: C1 temporary code buffers are not removed with -XX:+UseDynamicNumberOfCompilerThreads
Deallocate C1 code buffers in the compiler thread destructor.
Reviewed-by: neliasso, kvn, mdoerr
|
2018-06-29 11:08:38 +02:00 |
|
Rene Schuenemann
|
83ece1407f
|
8204476: Add additional statistics to CodeCache::print_summary
Reviewed-by: kvn, stuefe
|
2018-05-30 14:46:17 +02:00 |
|
Ioi Lam
|
1ae12b4328
|
8203381: Replace InstanceKlass::allocate_instance_handle with JavaCalls::construct_new_instance
Reviewed-by: lfoltan, dholmes, coleenp, minqi
|
2018-05-18 09:15:08 -07:00 |
|
Erik Gahlin
|
a060be188d
|
8199712: Flight Recorder
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Reviewed-by: coleenp, ihse, erikj, dsamersoff, mseledtsov, egahlin, mgronlun
|
2018-05-15 20:24:34 +02:00 |
|
Martin Doerr
|
5e1a7651cd
|
8198756: Lazy allocation of compiler threads
Reviewed-by: kvn
|
2018-04-18 11:19:32 +02:00 |
|
Tobias Hartmann
|
c530e2724d
|
8200230: [Graal] Compilations should not be enqueued before Graal is initialized
Split compiler initialization into two phases to avoid compilations being enqueued before Graal is initialized.
Reviewed-by: kvn, dnsimon
|
2018-03-27 11:51:39 +02:00 |
|
Lutz Schmidt
|
b7cb1a07e4
|
8198691: CodeHeap State Analytics
Reviewed-by: kvn, thartmann
|
2018-03-26 12:59:45 -07:00 |
|
Stefan Karlsson
|
1a1aecd166
|
8200106: Move NoSafepointVerifier out from gcLocker.hpp
Reviewed-by: coleenp
|
2018-03-23 18:54:12 +01:00 |
|
Coleen Phillimore
|
221d0f4c54
|
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
Remove frame.inline.hpp,etc from header files and adjust transitive includes.
Reviewed-by: stefank, stuefe
|
2018-03-21 19:45:24 -04:00 |
|
Tobias Hartmann
|
eda7916ce8
|
8199624: [Graal] Blocking jvmci compilations time out
Handle blocking jvmci compilations that time out.
Reviewed-by: kvn, dnsimon
|
2018-03-21 08:18:54 +01:00 |
|
Coleen Phillimore
|
fde89a34d0
|
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
InterfaceSupport.hpp is an inline file so moved to interfaceSupport.inline.hpp and stopped including it in .hpp files
Reviewed-by: stefank, rehn, kvn
|
2018-03-16 09:12:13 -04:00 |
|
Harold Seigel
|
c0bc887c36
|
8191102: Incorrect include file use in classLoader.hpp
Move appropriate methods to <fiile>.inline.hpp files. Create <file>.inline.hpp files when needed.
Reviewed-by: coleenp, dholmes
|
2018-03-05 10:29:23 -05:00 |
|
Dean Long
|
bfe4e0e4a2
|
8193323: Crash in "failed dependencies, but counter didn't change" with enabled UseJVMCICompiler
Reviewed-by: kvn
|
2017-12-13 20:35:09 -08:00 |
|
Coleen Phillimore
|
e908052a71
|
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
Removed hotspot version of jvm*h and jni*h files.
Reviewed-by: ihse, mchung, dholmes
|
2017-10-31 11:55:09 -04:00 |
|
Roman Kennke
|
7030019135
|
8171853: Remove Shark compiler
Reviewed-by: dholmes, kvn, erikj, ihse
|
2017-10-15 22:54:03 +02:00 |
|
Erik Joelsson
|
3789983e89
|
8187443: Forest Consolidation: Move files to unified layout
Reviewed-by: darcy, ihse
|
2017-09-12 19:03:39 +02:00 |
|