Searched refs:nm (Results 176 - 200 of 236) sorted by relevance

12345678910

/openjdk10/hotspot/src/share/vm/services/
H A DgcNotifier.cpp209 NotificationMark nm(request);
/openjdk10/hotspot/src/share/vm/memory/
H A Diterator.hpp307 void do_nmethod(nmethod* nm);
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/loader/
H A DURLClassPath.java835 String nm;
837 nm = SharedSecrets.javaUtilJarAccess().getRealName(jar, entry);
839 nm = name;
841 url = new URL(getBaseURL(), ParseUtil.encodePath(nm, false));
/openjdk10/hotspot/src/share/vm/jvmci/
H A DjvmciCompilerToVM.cpp1060 nmethod* nm = cb->as_nmethod_or_null();
1061 if (nm != NULL && installed_code_handle->is_scavengable()) {
1062 assert(nm->detect_scavenge_root_oops(), "nm should be scavengable if installed_code is scavengable");
1064 assert(nm->on_scavenge_root_list(), "nm should be on scavengable list");
1177 nmethod* nm = (nmethod*) cb;
1178 if (!nm->is_alive()) {
1208 nmethod* nm = (nmethod*) (address) nmethodValue;
1209 methodHandle mh = nm
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/javac/
H A DSourceClass.java546 Identifier nm = getClassDeclaration().getName();
548 env.output("[checking class " + nm + "]");
588 Identifier simpleName = nm.getName();
614 // if (env.getPackage(nm).exists()) {
615 // env.error(where, "class.package.conflict", nm);
618 // env.error(where, "io.exception.package", nm);
696 Identifier nm = getClassDeclaration().getName();
697 env.error(getWhere(), "final.intf", nm);
2350 Identifier nm =
2353 System.out.println("CLASSFILE " + nm);
[all...]
/openjdk10/jdk/test/java/util/Collection/
H A DMOAT.java1094 NavigableMap<Integer,Integer> nm =
1096 testNavigableMapRemovers(nm);
1097 testNavigableMap(nm);
1098 testNavigableMap(nm.headMap(6, false));
1099 testNavigableMap(nm.headMap(5, true));
1100 testNavigableMap(nm.tailMap(0, false));
1101 testNavigableMap(nm.tailMap(1, true));
1102 testNavigableMap(nm.subMap(1, true, 6, false));
1103 testNavigableMap(nm.subMap(0, false, 5, true));
/openjdk10/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp2066 CompiledMethod* nm = m->code(); local
2067 if (nm != NULL && !m->is_method_handle_intrinsic()) {
2069 nm->make_not_entrant();
2084 CompiledMethod* nm = m->code(); local
2085 if (nm != NULL && !m->is_method_handle_intrinsic()) {
2087 nm->make_not_entrant();
H A DjavaClasses.cpp1847 CompiledMethod* nm = method->code(); local
1848 if (WizardMode && nm != NULL) {
1849 sprintf(buf + (int)strlen(buf), "(nmethod " INTPTR_FORMAT ")", (intptr_t)nm);
1968 CompiledMethod* nm = NULL; local
1979 DebugInfoReadStream stream(nm, decode_offset);
1981 method = (Method*)nm->metadata_at(stream.read_int());
1993 // HMMM QQQ might be nice to have frame return nm as NULL if cb is non-NULL
1999 nm = cb->as_compiled_method();
2000 if (nm->method()->is_native()) {
2001 method = nm
4083 const char* nm = "java/lang/AssertionStatusDirectives"; local
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java388 protected String genNMethodHref(NMethod nm) { argument
389 return genBaseHref() + "nmethod=" + nm.getAddress();
404 protected String genNMethodLink(NMethod nm) { argument
406 buf.link(genNMethodHref(nm), genNMethodTitle(nm));
1025 protected String genSafepointInfo(NMethod nm, ScopeDesc sd) { argument
/openjdk10/hotspot/src/share/vm/runtime/
H A Dos.cpp1042 nmethod* nm = b->as_nmethod_or_null(); local
1043 if (nm != NULL) {
1046 p2i(addr), (int)(addr - nm->entry_point()), p2i(nm));
1049 nm->method()->print_value_on(st);
1052 nm->print_nmethod(verbose);
H A Dvframe.cpp71 CompiledMethod* nm = (CompiledMethod*)cb; local
72 return new compiledVFrame(f, reg_map, thread, nm);
H A DsharedRuntime.hpp192 static address compute_compiled_exc_handler(CompiledMethod* nm, address ret_pc, Handle& exception,
211 static address deoptimize_for_implicit_exception(JavaThread* thread, address pc, CompiledMethod* nm, int deopt_reason);
/openjdk10/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp617 void copy_values_to(nmethod* nm) { argument
619 oop_recorder()->copy_values_to(nm);
/openjdk10/hotspot/src/cpu/s390/vm/
H A DnativeInst_s390.cpp183 nmethod *nm = (nmethod *)cb; local
189 return nm->verified_entry_point() == sig_addr;
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1CollectedHeap.hpp1400 virtual void register_nmethod(nmethod* nm);
1403 virtual void unregister_nmethod(nmethod* nm);
/openjdk10/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DClassReader.java424 int nm = readUnsignedShort();
425 for (int i = 0; i < nm; i++) {
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DNewInstanceExpression.java123 Identifier nm = oc.resolveInnerClass(env, typeName);
124 right = new TypeExpression(right.where, Type.tClass(nm));
/openjdk10/hotspot/src/cpu/ppc/vm/
H A DnativeInst_ppc.hpp382 address destination(nmethod *nm = NULL) const;
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A DnativeInst_aarch64.hpp504 address destination(nmethod *nm = NULL) const;
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DUtil.java179 NameModifier nm = new NameModifierImpl() ;
180 return fileName( entry, nm, extension ) ;
201 NameModifier nm = new NameModifierImpl() ;
202 return stream(entry, nm, extension);
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DFont.java1587 * {@code nm} is treated as the name of a system property to be
1594 * @param nm the property name
1597 * @throws NullPointerException if nm is null.
1601 public static Font getFont(String nm) { argument
1602 return getFont(nm, null);
1764 * @param nm the case-insensitive property name
1766 * {@code nm} is not defined
1768 * @throws NullPointerException if nm is null.
1771 public static Font getFont(String nm, Font font) { argument
1774 str =System.getProperty(nm);
[all...]
/openjdk10/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp479 CompiledMethod* nm = cb->as_compiled_method_or_null(); local
480 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk10/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp595 CompiledMethod* nm = (cb != NULL) ? cb->as_compiled_method_or_null() : NULL; local
596 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk10/hotspot/src/os_cpu/linux_aarch64/vm/
H A Dos_linux_aarch64.cpp429 CompiledMethod* nm = (cb != NULL) ? cb->as_compiled_method_or_null() : NULL; local
430 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk10/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp433 CompiledMethod* nm = (cb != NULL) ? cb->as_compiled_method_or_null() : NULL; local
434 if (nm != NULL && nm->has_unsafe_access()) {

Completed in 252 milliseconds

12345678910