Searched refs:nm (Results 1 - 25 of 236) sorted by relevance

12345678910

/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DClassNotFound.java47 public ClassNotFound(Identifier nm) { argument
48 super(nm.toString());
49 name = nm;
H A DParserActions.java50 void packageDeclaration(long off, IdentifierToken nm); argument
55 void importClass(long off, IdentifierToken nm); argument
60 void importPackage(long off, IdentifierToken nm); argument
69 int mod, IdentifierToken nm,
85 IdentifierToken nm, IdentifierToken args[],
68 beginClass(long off, String doc, int mod, IdentifierToken nm, IdentifierToken sup, IdentifierToken impl[]) argument
83 defineField(long where, ClassDefinition c, String doc, int mod, Type t, IdentifierToken nm, IdentifierToken args[], IdentifierToken exp[], Node val) argument
H A DImports.java140 Identifier nm = t.getName();
147 if (env.isExemptPackage(nm)) {
154 Identifier rnm = env.resolvePackageQualifiedName(nm);
164 nm = rnm;
165 } else if (!env.getPackage(nm).exists()) {
166 env.error(where, "package.not.found", nm, "import");
168 // nm exists, and rnm.getTopName() is a parent package
171 resolvedPackages.addElement(new IdentifierToken(where, nm));
180 Identifier nm = t.getName();
182 Identifier pkg = nm
260 resolve(Environment env, Identifier nm) argument
385 forceResolve(Environment env, Identifier nm) argument
407 addClass(Identifier nm) argument
496 resolve(Identifier nm) argument
[all...]
/openjdk10/hotspot/src/share/vm/memory/
H A Diterator.cpp53 void CodeBlobToOopClosure::do_nmethod(nmethod* nm) { argument
54 nm->oops_do(_cl);
56 nm->fix_oop_relocations();
61 nmethod* nm = cb->as_nmethod_or_null(); local
62 if (nm != NULL) {
63 do_nmethod(nm);
68 nmethod* nm = cb->as_nmethod_or_null(); local
69 if (nm != NULL && !nm->test_set_oops_do_mark()) {
70 do_nmethod(nm);
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1CodeBlobClosure.cpp40 assert(!_g1h->is_in_cset(o) || hr->rem_set()->strong_code_roots_list_contains(_nm), "if o still in collection set then evacuation failed and nm must already be in the remset");
54 nmethod* nm = cb->as_nmethod_or_null(); local
55 if (nm != NULL) {
56 if (!nm->test_set_oops_do_mark()) {
57 _oc.set_nm(nm);
58 nm->oops_do(&_oc);
59 nm->fix_oop_relocations();
H A Dg1CodeRootSetTable.hpp39 unsigned int compute_hash(nmethod* nm) { argument
40 uintptr_t hash = (uintptr_t)nm;
45 Entry* new_entry(nmethod* nm);
52 bool add(nmethod* nm);
53 bool remove(nmethod* nm);
56 bool contains(nmethod* nm);
H A Dg1CodeBlobClosure.hpp48 void set_nm(nmethod* nm) { argument
49 _nm = nm;
/openjdk10/hotspot/test/compiler/stable/
H A DTestStableMemoryBarrier.java62 NotDominate nm = new NotDominate();
63 nm.v = n;
64 return nm;
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/image/
H A DXbmImageDecoder.java75 char nm[] = new char[80];
91 nm[i++] = (char) c;
97 nm[0] != '#' ||
98 nm[1] != 'd' ||
99 nm[2] != 'e' ||
100 nm[3] != 'f' ||
101 nm[4] != 'i' ||
102 nm[5] != 'n' ||
103 nm[6] != 'e')
109 if (nm[n
[all...]
/openjdk10/langtools/test/tools/javac/MethodParameters/
H A DLocalClassTest.java38 public void foo(int m, int nm) {}
44 public void foo(int m, int nm) {}
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiCodeBlobEvents.hpp52 static void build_jvmti_addr_location_map(nmethod *nm, jvmtiAddrLocationMap** map,
/openjdk10/hotspot/src/share/vm/code/
H A DdependencyContext.cpp65 nmethod* nm = b->get_nmethod(); local
68 if (b->count() > 0 && nm->is_alive() && !nm->is_marked_for_deoptimization() && nm->check_dependency_on(changes)) {
73 nm->print();
74 nm->print_dependencies();
76 changes.mark_for_deoptimization(nm);
89 void DependencyContext::add_dependent_nmethod(nmethod* nm, bool expunge) { argument
92 if (nm == b->get_nmethod()) {
97 set_dependencies(new nmethodBucket(nm, dependencie
114 remove_dependent_nmethod(nmethod* nm, bool expunge) argument
204 nmethod* nm = b->get_nmethod(); local
237 nmethod* nm = b->get_nmethod(); local
250 is_dependent_nmethod(nmethod* nm) argument
[all...]
H A DcodeCache.cpp118 nmethod* nm = cb->as_nmethod_or_null(); local
119 code_size += nm->insts_size();
120 stub_size += nm->stub_size();
122 scopes_oop_size += nm->oops_size();
123 scopes_metadata_size += nm->metadata_size();
124 scopes_data_size += nm->scopes_data_size();
125 scopes_pcs_size += nm->scopes_pcs_size();
603 bool CodeCache::contains(nmethod *nm) { argument
604 return contains((void *)nm);
636 void CodeCache::blobs_do(void f(CodeBlob* nm)) { argument
645 nmethods_do(void f(nmethod* nm)) argument
738 add_scavenge_root_nmethod(nmethod* nm) argument
751 unlink_scavenge_root_nmethod(nmethod* nm, nmethod* prev) argument
769 drop_scavenge_root_nmethod(nmethod* nm) argument
840 nmethod* nm = iter.method(); local
852 nmethod* nm = iter.method(); local
867 nmethod* nm = iter.method(); local
881 CompiledMethod *nm = cb->as_compiled_method_or_null(); local
921 nmethod* nm = iter.method(); local
1168 CompiledMethod* nm = old_method->code(); local
1177 CompiledMethod* nm = iter.method(); local
1200 CompiledMethod* nm = iter.method(); local
1213 CompiledMethod* nm = iter.method(); local
1228 CompiledMethod* nm = iter.method(); local
1444 nmethod* nm = (nmethod*)cb; local
1488 nmethod* nm = iter.method(); local
[all...]
H A DexceptionHandlerTable.hpp102 ExceptionHandlerTable(const CompiledMethod* nm);
119 void copy_to(CompiledMethod* nm);
152 ImplicitExceptionTable( const nmethod *nm );
161 void copy_to(nmethod* nm);
163 void verify(nmethod *nm) const;
/openjdk10/hotspot/src/share/vm/runtime/
H A Dsweeper.hpp93 static MethodStateChange process_compiled_method(CompiledMethod *nm);
94 static void release_compiled_method(CompiledMethod* nm);
113 static void record_sweep(CompiledMethod* nm, int line);
125 static void report_state_change(nmethod* nm);
127 static void possibly_flush(nmethod* nm);
H A Dsweeper.cpp50 #define SWEEP(nm) record_sweep(nm, __LINE__)
114 void NMethodSweeper::record_sweep(CompiledMethod* nm, int line) { argument
117 _records[_sweep_index].traversal_mark = nm->is_nmethod() ? ((nmethod*)nm)->stack_traversal_mark() : 0;
118 _records[_sweep_index].compile_id = nm->compile_id();
119 _records[_sweep_index].kind = nm->compile_kind();
120 _records[_sweep_index].state = nm->get_state();
121 _records[_sweep_index].vep = nm->verified_entry_point();
122 _records[_sweep_index].uep = nm
167 nmethod* nm = (nmethod*)cb; local
181 nmethod* nm = (nmethod*)cb; local
437 CompiledMethod* nm = _current.method(); local
544 report_state_change(nmethod* nm) argument
579 release_compiled_method(CompiledMethod* nm) argument
700 possibly_flush(nmethod* nm) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DStyledDocument.java42 * @param nm the name of the style (must be unique within the
53 public Style addStyle(String nm, Style parent); argument
58 * @param nm the name of the style to remove
60 public void removeStyle(String nm); argument
65 * @param nm the name of the style
68 public Style getStyle(String nm); argument
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/
H A DPartialCompositeContext.java143 Name nm = name;
146 answer = ctx.p_resolveToClass(nm, contextType, cont);
148 nm = cont.getRemainingName();
150 answer = ctx.p_resolveToClass(nm, contextType, cont);
174 Name nm = name;
177 answer = ctx.p_lookup(nm, cont);
179 nm = cont.getRemainingName();
181 answer = ctx.p_lookup(nm, cont);
196 Name nm = name;
201 ctx.p_bind(nm, newOb
[all...]
H A DPartialCompositeDirContext.java138 Name nm = name;
141 answer = ctx.p_getAttributes(nm, attrIds, cont);
143 nm = cont.getRemainingName();
145 answer = ctx.p_getAttributes(nm, attrIds, cont);
164 Name nm = name;
167 ctx.p_modifyAttributes(nm, mod_op, attrs, cont);
169 nm = cont.getRemainingName();
171 ctx.p_modifyAttributes(nm, mod_op, attrs, cont);
189 Name nm = name;
192 ctx.p_modifyAttributes(nm, mod
[all...]
/openjdk10/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DMakeNotEntrantEvent.java45 MakeNotEntrantEvent(double s, String i, boolean z, NMethod nm) { argument
48 nmethod = nm;
/openjdk10/hotspot/test/native/code/
H A Dtest_dependencyContext.cpp74 nmethod* nm = c._nmethods[id]; local
75 depContext.remove_dependent_nmethod(nm, delete_immediately);
80 NOT_PRODUCT(ASSERT_TRUE(depContext.is_dependent_nmethod(nm)));
86 NOT_PRODUCT(ASSERT_FALSE(depContext.is_dependent_nmethod(nm)));
/openjdk10/jaxp/test/javax/xml/jaxp/functional/org/w3c/dom/ptests/
H A DDocumentTypeTest.java66 NamedNodeMap nm = documentType.getNotations();
67 assertEquals(nm.getLength(), 2); // should return 2 because the notation
71 assertEquals(nm.item(0).getNodeName(), "gs");
72 assertEquals(nm.item(1).getNodeName(), "name");
H A DNotationTest.java67 NamedNodeMap nm = document.getDoctype().getNotations();
68 for (int i = 0; i < nm.getLength(); i++) {
69 if (nm.item(i).getNodeName().equals(name)) {
70 return (Notation) nm.item(i);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ci/
H A DciMethod.java79 NMethod nm = method.getNativeMethod();
80 if (nm != null) return (int)nm.codeEnd().minus(nm.getVerifiedEntryPoint());
94 NMethod nm = method.getNativeMethod();
/openjdk10/hotspot/src/share/vm/compiler/
H A DcompileTask.hpp151 void set_code(nmethod* nm); // _code_handle->set_code(nm)
185 static void print(outputStream* st, const nmethod* nm, const char* msg = NULL, bool short_form = false, bool cr = true) { argument
186 print_impl(st, nm->method(), nm->compile_id(), nm->comp_level(),
187 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false,
190 static void print_ul(const nmethod* nm, cons
[all...]

Completed in 462 milliseconds

12345678910