Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8245289: Clean up offset code in JavaClasses
Make offset member names consistent and private, move static initializations near owning classes Reviewed-by: fparain, lfoltan
- Loading branch information
Showing
with
789 additions
and 843 deletions.
- +10 −10 src/hotspot/cpu/aarch64/methodHandles_aarch64.cpp
- +2 −3 src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp
- +2 −2 src/hotspot/cpu/arm/c1_CodeStubs_arm.cpp
- +11 −13 src/hotspot/cpu/arm/methodHandles_arm.cpp
- +1 −2 src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp
- +2 −2 src/hotspot/cpu/ppc/c1_CodeStubs_ppc.cpp
- +15 −17 src/hotspot/cpu/ppc/methodHandles_ppc.cpp
- +2 −3 src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp
- +2 −2 src/hotspot/cpu/s390/c1_CodeStubs_s390.cpp
- +11 −13 src/hotspot/cpu/s390/methodHandles_s390.cpp
- +2 −3 src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp
- +2 −2 src/hotspot/cpu/x86/c1_CodeStubs_x86.cpp
- +11 −13 src/hotspot/cpu/x86/methodHandles_x86.cpp
- +2 −3 src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp
- +3 −4 src/hotspot/share/c1/c1_LIRGenerator.cpp
- +4 −4 src/hotspot/share/ci/ciField.cpp
- +1 −1 src/hotspot/share/ci/ciInstanceKlass.cpp
- +509 −530 src/hotspot/share/classfile/javaClasses.cpp
- +128 −139 src/hotspot/share/classfile/javaClasses.hpp
- +22 −29 src/hotspot/share/classfile/javaClasses.inline.hpp
- +3 −3 src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp
- +5 −5 src/hotspot/share/gc/shared/c1/barrierSetC1.cpp
- +3 −3 src/hotspot/share/gc/shared/referenceProcessor.cpp
- +2 −2 src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp
- +1 −1 src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.cpp
- +3 −3 src/hotspot/share/gc/z/zBarrier.inline.hpp
- +1 −1 src/hotspot/share/interpreter/interpreterRuntime.cpp
- +1 −1 src/hotspot/share/jvmci/jvmciCompilerToVM.hpp
- +1 −1 src/hotspot/share/oops/instanceKlass.cpp
- +6 −6 src/hotspot/share/oops/instanceRefKlass.cpp
- +1 −1 src/hotspot/share/opto/compile.cpp
- +5 −5 src/hotspot/share/opto/graphKit.cpp
- +5 −6 src/hotspot/share/opto/library_call.cpp
- +5 −5 src/hotspot/share/opto/memnode.cpp
- +3 −3 src/hotspot/share/opto/stringopts.cpp
- +2 −2 src/hotspot/share/opto/type.cpp
Oops, something went wrong.