Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8249837: Avoid direct or implicit Thread::current() calls when we alr…
…eady have a current thread variable Add current thread OR remove unneeded HandleMark Reviewed-by: kvn, dholmes
- Loading branch information
Showing
with
108 additions
and 143 deletions.
- +2 −2 src/hotspot/share/ci/ciReplay.cpp
- +2 −2 src/hotspot/share/classfile/classLoaderDataGraph.cpp
- +2 −2 src/hotspot/share/classfile/klassFactory.cpp
- +1 −1 src/hotspot/share/classfile/systemDictionaryShared.cpp
- +3 −5 src/hotspot/share/code/nmethod.cpp
- +4 −2 src/hotspot/share/code/scopeDesc.cpp
- +1 −2 src/hotspot/share/code/vtableStubs.cpp
- +0 −2 src/hotspot/share/gc/g1/g1CollectedHeap.cpp
- +0 −4 src/hotspot/share/gc/g1/g1ConcurrentMark.cpp
- +1 −1 src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp
- +0 −1 src/hotspot/share/gc/g1/g1FullCollector.cpp
- +0 −2 src/hotspot/share/gc/g1/g1HeapVerifier.cpp
- +0 −3 src/hotspot/share/gc/parallel/psParallelCompact.cpp
- +0 −3 src/hotspot/share/gc/parallel/psScavenge.cpp
- +6 −5 src/hotspot/share/gc/shared/collectedHeap.cpp
- +0 −1 src/hotspot/share/gc/shared/gcVMOperations.cpp
- +0 −4 src/hotspot/share/gc/shared/genCollectedHeap.cpp
- +3 −2 src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp
- +0 −5 src/hotspot/share/interpreter/interpreterRuntime.cpp
- +0 −1 src/hotspot/share/interpreter/oopMapCache.cpp
- +1 −1 src/hotspot/share/jfr/jni/jfrJavaSupport.cpp
- +3 −2 src/hotspot/share/jfr/recorder/jfrRecorder.cpp
- +2 −2 src/hotspot/share/jvmci/jvmciCodeInstaller.cpp
- +2 −2 src/hotspot/share/jvmci/jvmciCompiler.cpp
- +7 −7 src/hotspot/share/jvmci/jvmciCompilerToVM.cpp
- +1 −1 src/hotspot/share/jvmci/jvmciEnv.cpp
- +4 −4 src/hotspot/share/jvmci/jvmciRuntime.cpp
- +0 −1 src/hotspot/share/memory/dynamicArchive.cpp
- +4 −2 src/hotspot/share/memory/universe.cpp
- +1 −2 src/hotspot/share/oops/klassVtable.cpp
- +2 −2 src/hotspot/share/prims/jni.cpp
- +13 −15 src/hotspot/share/prims/jvmtiEnv.cpp
- +9 −7 src/hotspot/share/prims/jvmtiEnvBase.cpp
- +1 −1 src/hotspot/share/prims/jvmtiExport.cpp
- +3 −2 src/hotspot/share/prims/jvmtiImpl.cpp
- +0 −2 src/hotspot/share/prims/jvmtiTagMap.cpp
- +2 −2 src/hotspot/share/prims/whitebox.cpp
- +7 −5 src/hotspot/share/runtime/deoptimization.cpp
- +1 −1 src/hotspot/share/runtime/handles.cpp
- +1 −2 src/hotspot/share/runtime/handles.hpp
- +0 −4 src/hotspot/share/runtime/handles.inline.hpp
- +0 −1 src/hotspot/share/runtime/init.cpp
- +0 −2 src/hotspot/share/runtime/java.cpp
- +8 −6 src/hotspot/share/runtime/thread.cpp
- +3 −3 src/hotspot/share/runtime/vframe.cpp
- +4 −2 src/hotspot/share/runtime/vframeArray.cpp
- +1 −1 src/hotspot/share/services/attachListener.cpp
- +0 −7 src/hotspot/share/services/heapDumper.cpp
- +3 −2 src/hotspot/share/services/threadService.cpp
- +0 −2 src/hotspot/share/utilities/debug.cpp
Oops, something went wrong.