Searched refs:NMethod (Results 1 - 25 of 36) sorted by relevance

12

/openjdk10/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DMakeNotEntrantEvent.java43 private NMethod nmethod;
45 MakeNotEntrantEvent(double s, String i, boolean z, NMethod nm) {
51 public NMethod getNMethod() {
H A DNMethod.java33 public class NMethod extends BasicLogEvent { class in inherits:BasicLogEvent
45 NMethod(double s, String i, long a, long sz) { method in class:NMethod
H A DCompilation.java108 private NMethod nmethod;
313 public NMethod getNMethod() {
317 public void setNMethod(NMethod NMethod) { argument
318 this.nmethod = NMethod;
/openjdk10/test/lib/sun/hotspot/code/
H A DNMethod.java29 public class NMethod extends CodeBlob { class in inherits:CodeBlob
31 public static NMethod get(Executable method, boolean isOsr) {
33 return obj == null ? null : new NMethod(obj);
35 private NMethod(Object[] obj) { method in class:NMethod
50 return "NMethod{"
/openjdk10/hotspot/test/compiler/whitebox/
H A DGetNMethodTest.java44 import sun.hotspot.code.NMethod;
64 NMethod nmethod = NMethod.get(method, testCase.isOsr());
95 nmethod = NMethod.get(method, testCase.isOsr());
100 private void checkBlockType(NMethod nmethod, BlobType expectedType) {
H A DDeoptimizeFramesTest.java49 import sun.hotspot.code.NMethod;
79 NMethod nm = NMethod.get(method, testCase.isOsr());
84 NMethod nm2 = NMethod.get(method, testCase.isOsr());
106 nm2 = NMethod.get(method, testCase.isOsr());
H A DCompilerWhiteBoxTest.java28 import sun.hotspot.code.NMethod;
282 NMethod nm = NMethod.get(method, testCase.isOsr());
345 NMethod.get(method, false).compile_id);
355 NMethod.get(method, true).compile_id);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DPCDesc.java84 public Address getRealPC(NMethod code) {
99 public void print(NMethod code) {
103 public void printOn(PrintStream tty, NMethod code) {
H A DDebugInfoReadStream.java35 private NMethod code;
39 public DebugInfoReadStream(NMethod code, int offset) {
46 public DebugInfoReadStream(NMethod code, int offset, List objectPool) {
H A DCodeCache.java64 virtualConstructor.addMapping("nmethod", NMethod.class);
76 public NMethod scavengeRootMethods() {
77 return (NMethod) VMObjectFactory.newObject(NMethod.class, scavengeRootNMethodsField.getValue());
149 public NMethod findNMethod(Address start) {
154 return (NMethod) cb;
157 public NMethod findNMethodUnsafe(Address start) {
162 return (NMethod) cb;
H A DScopeDesc.java40 /** NMethod information */
41 private NMethod code;
54 private ScopeDesc(NMethod code, int decodeOffset, List objects, boolean reexecute) {
72 public ScopeDesc(NMethod code, int decodeOffset, int objectDecodeOffset, boolean reexecute) {
90 public NMethod getNMethod() { return code; }
H A DNMethod.java35 public class NMethod extends CompiledMethod { class in inherits:CompiledMethod
66 /** NMethod Flushing lock (if non-zero, then the nmethod is not removed) */
113 public NMethod(Address addr) { method in class:NMethod
250 public NMethod getOSRLink() {
251 return (NMethod) VMObjectFactory.newObject(NMethod.class, osrLinkField.getValue(addr));
254 public NMethod getScavengeRootLink() {
255 return (NMethod) VMObjectFactory.newObject(NMethod.class, scavengeRootLinkField.getValue(addr));
464 return "NMethod fo
[all...]
/openjdk10/hotspot/test/compiler/jvmci/compilerToVM/
H A DCompileCodeTestCase.java32 import sun.hotspot.code.NMethod;
78 public NMethod compile() {
108 public NMethod compile(int level) {
123 return NMethod.get(executable, isOsr);
145 public NMethod toNMethod() {
146 return NMethod.get(executable, isOsr);
150 NMethod nmethod = toNMethod();
169 public NMethod deoptimizeAndCompile() {
H A DDisassembleCodeBlobTest.java53 import sun.hotspot.code.NMethod;
87 NMethod nMethod = testCase.deoptimizeAndCompile();
H A DInvalidateInstalledCodeTest.java60 import sun.hotspot.code.NMethod;
103 NMethod beforeInvalidation = testCase.toNMethod();
112 NMethod afterInvalidation = testCase.toNMethod();
H A DExecuteInstalledCodeTest.java52 import sun.hotspot.code.NMethod;
82 NMethod nMethod = testCase.compile();
H A DHasCompiledCodeForOSRTest.java54 import sun.hotspot.code.NMethod;
96 NMethod nm = testCase.compile();
H A DAllocateCompileIdTest.java54 import sun.hotspot.code.NMethod;
153 NMethod nm = testCase.deoptimizeAndCompile();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ci/
H A DciMethod.java79 NMethod nm = method.getNativeMethod();
94 NMethod nm = method.getNativeMethod();
/openjdk10/hotspot/test/compiler/intrinsics/klass/
H A DCastNullCheckDroppingsTest.java46 import sun.hotspot.code.NMethod;
302 NMethod nm = getNMethod(method);
314 static NMethod getNMethod(Method test) {
320 NMethod nm = NMethod.get(test, false); // not OSR nmethod
330 static void checkDeoptimization(Method method, NMethod nmOrig, boolean deopt) {
339 NMethod nm = NMethod.get(method, false); // not OSR nmethod
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DMethod.java31 import sun.jvm.hotspot.code.NMethod;
149 public NMethod getNativeMethod() {
151 return (NMethod) VMObjectFactory.newObject(NMethod.class, addr);
347 NMethod nm = getNativeMethod();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/asm/
H A DDisassembler.java31 import sun.jvm.hotspot.code.NMethod;
42 private NMethod nmethod;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DPointerFinder.java98 NMethod nm = (NMethod) loc.blob;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DVFrame.java68 NMethod nm = (NMethod) cb;
/openjdk10/hotspot/test/compiler/intrinsics/bmi/verifycode/
H A DBmiIntrinsicBase.java30 import sun.hotspot.code.NMethod;
107 final byte[] nativeCode = NMethod.get(executable, false).insts;

Completed in 230 milliseconds

12