Searched refs:isImmutablePIC (Results 1 - 7 of 7) sorted by relevance

/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotCompiledCode.java95 protected final boolean isImmutablePIC; field in class:HotSpotCompiledCode
120 int dataSectionAlignment, DataPatch[] dataSectionPatches, boolean isImmutablePIC, int totalFrameSize, StackSlot deoptRescueSlot) {
132 this.isImmutablePIC = isImmutablePIC;
119 HotSpotCompiledCode(String name, byte[] targetCode, int targetCodeSize, Site[] sites, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, int dataSectionAlignment, DataPatch[] dataSectionPatches, boolean isImmutablePIC, int totalFrameSize, StackSlot deoptRescueSlot) argument
H A DHotSpotCompiledNmethod.java58 int dataSectionAlignment, DataPatch[] dataSectionPatches, boolean isImmutablePIC, int totalFrameSize, StackSlot deoptRescueSlot, HotSpotResolvedJavaMethod method, int entryBCI,
60 super(name, targetCode, targetCodeSize, sites, assumptions, methods, comments, dataSection, dataSectionAlignment, dataSectionPatches, isImmutablePIC, totalFrameSize, deoptRescueSlot);
57 HotSpotCompiledNmethod(String name, byte[] targetCode, int targetCodeSize, Site[] sites, Assumption[] assumptions, ResolvedJavaMethod[] methods, Comment[] comments, byte[] dataSection, int dataSectionAlignment, DataPatch[] dataSectionPatches, boolean isImmutablePIC, int totalFrameSize, StackSlot deoptRescueSlot, HotSpotResolvedJavaMethod method, int entryBCI, int id, long jvmciEnv, boolean hasUnsafeAccess) argument
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/
H A DCompilationResult.java222 private boolean isImmutablePIC; field in class:CompilationResult
232 public CompilationResult(boolean isImmutablePIC) { argument
233 this(null, isImmutablePIC);
236 public CompilationResult(String name, boolean isImmutablePIC) { argument
238 this.isImmutablePIC = isImmutablePIC;
428 public boolean isImmutablePIC() { method in class:CompilationResult
429 return this.isImmutablePIC;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DHotSpotCompiledCodeBuilder.java109 boolean isImmutablePIC = compResult.isImmutablePIC();
125 return new HotSpotCompiledNmethod(name, targetCode, targetCodeSize, sites, assumptions, methods, comments, dataSection, dataSectionAlignment, dataSectionPatches, isImmutablePIC,
128 return new HotSpotCompiledCode(name, targetCode, targetCodeSize, sites, assumptions, methods, comments, dataSection, dataSectionAlignment, dataSectionPatches, isImmutablePIC,
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DAOTBackend.java132 final boolean isImmutablePIC = true;
133 CompilationResult compilationResult = new CompilationResult(resolvedMethod.getName(), isImmutablePIC);
/openjdk9/hotspot/src/share/vm/jvmci/
H A DjvmciJavaClasses.hpp92 boolean_field(HotSpotCompiledCode, isImmutablePIC) \
H A DjvmciCompilerToVM.cpp1025 bool is_immutable_PIC = HotSpotCompiledCode::isImmutablePIC(compiled_code_handle) > 0;

Completed in 115 milliseconds