Searched refs:relocation (Results 1 - 8 of 8) sorted by relevance

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/linux/
H A DSharedObject.java34 SharedObject(LinuxDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DSharedObject.java34 SharedObject(ProcDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DSharedObject.java34 SharedObject(BsdDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DCallSiteRelocationSymbol.java36 * Describes a relocation symbol of a call site. That is, WHERE to do a relocation.
63 * Add an {@link RelocType#EXTERNAL_GOT_TO_PLT} relocation to the
68 Relocation relocation = new Relocation(relocationOffset, RelocType.EXTERNAL_GOT_TO_PLT, 8, container, symbol);
69 binaryContainer.addRelocation(relocation);
73 * Add an {@link RelocType#EXTERNAL_PLT_TO_GOT} relocation to the
78 Relocation relocation = new Relocation(relocationOffset, RelocType.EXTERNAL_PLT_TO_GOT, 8, container, symbol);
79 binaryContainer.addRelocation(relocation);
H A DInfopointProcessor.java59 // All calls in compiled code need a symbol and relocation entry.
114 Relocation relocation = new Relocation(methodInfo.getTextSectionOffset() + call.pcOffset, callSiteRelocation.type, call.size, binaryContainer.getCodeContainer(),
116 binaryContainer.addRelocation(relocation);
120 * Get information about the call site. Name of the callee and relocation call type.
134 * Return a relocation symbol for the given call site.
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java32 relocation. */
59 public DSO(String filename, long size, Address relocation) throws ELFException { argument
62 this.addr = relocation;
66 public DSO(long size, Address relocation) throws ELFException { argument
67 this.addr = relocation;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DDLL.java34 relocation. A DLL can represent either a DLL or an EXE file. */
38 public DLL(WindbgDebugger dbg, String filename, long size, Address relocation) throws COFFException { argument
47 addr = relocation;
/openjdk10/hotspot/src/share/vm/code/
H A Dnmethod.cpp131 if (relocation_size != 0) tty->print_cr(" relocation = %d", relocation_size);
164 if (native_relocation_size != 0) tty->print_cr(" N. relocation = %d", native_relocation_size);
806 LOG_OFFSET(xtty, relocation);
1480 assert(iter_at_oop->type() == relocInfo::oop_type, "Wrong relocation type");
2283 if (relocation_size () > 0) tty->print_cr(" relocation [" INTPTR_FORMAT "," INTPTR_FORMAT "] = %d",
2713 // Print relocation information

Completed in 119 milliseconds