Searched defs:nm (Results 1 - 25 of 101) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/memory/
H A DgenRemSet.cpp33 uintx GenRemSet::max_alignment_constraint(Name nm) { argument
34 switch (nm) {
H A Diterator.cpp62 nmethod* nm = cb->as_nmethod_or_null(); local
63 if (nm == NULL) return;
64 if (!nm->test_set_oops_do_mark()) {
65 NOT_PRODUCT(if (TraceScavenge) nm->print_on(tty, "oops_do, 1st visit\n"));
66 do_newly_marked_nmethod(nm);
68 NOT_PRODUCT(if (TraceScavenge) nm->print_on(tty, "oops_do, skipped on 2nd visit\n"));
72 void CodeBlobToOopClosure::do_newly_marked_nmethod(nmethod* nm) { argument
73 nm->oops_do(_cl, /*do_strong_roots_only=*/ true);
78 nmethod* nm = cb->as_nmethod_or_null(); local
79 NOT_PRODUCT(if (TraceScavenge && Verbose && nm !
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassNotFound.java46 public ClassNotFound(Identifier nm) { argument
47 super(nm.toString());
48 name = nm;
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...]
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
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DMakeNotEntrantEvent.java34 MakeNotEntrantEvent(double s, String i, boolean z, NMethod nm) { argument
37 nmethod = nm;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DEntity.java125 * Converts <code>nm</code> string to the corresponding
131 * @param nm the string to be converted
135 public static int name2type(String nm) { argument
136 Integer i = entityTypes.get(nm);
H A DAttributeList.java134 static void defineAttributeType(String nm, int val) { argument
136 attributeTypes.put(nm, num);
137 attributeTypes.put(num, nm);
164 public static int name2type(String nm) { argument
165 Integer i = (Integer)attributeTypes.get(nm);
H A DElement.java171 public static int name2type(String nm) { argument
172 Integer val = contentTypes.get(nm);
/openjdk7/hotspot/src/share/vm/runtime/
H A DdtraceJSDT.cpp71 nmethod* nm = AdapterHandlerLibrary::create_dtrace_nmethod(h_method); local
72 if (nm == NULL) {
78 h_method()->set_code(h_method, nm);
79 probes->nmethod_at_put(count++, nm);
H A DdtraceJSDT.hpp105 void nmethod_at_put(size_t i, nmethod* nm) { argument
107 _nmethods[i] = nm;
H A Drframe.cpp127 nmethod* nm = top_method()->code(); local
128 if (nm != NULL) {
129 return nm->insts_size();
H A Drframe.hpp65 virtual nmethod* nm() const { ShouldNotCallThis(); return NULL; } function in class:RFrame
73 static int computeSends(nmethod* nm);
75 static int computeCumulSends(nmethod* nm);
93 nmethod* nm() const { return _nm; } function in class:CompiledRFrame
H A DsimpleThresholdPolicy.hpp84 nmethod *nm = method->code(); local
85 if (nm != NULL && nm->is_in_use()) {
86 return (CompLevel)nm->comp_level();
91 CompLevel level, nmethod* nm, JavaThread* thread);
93 int bci, CompLevel level, nmethod* nm, JavaThread* thread);
107 int branch_bci, int bci, CompLevel comp_level, nmethod* nm, JavaThread* thread);
H A Dsweeper.hpp66 static void process_nmethod(nmethod *nm);
82 static void record_sweep(nmethod* nm, int line);
91 static void notify(nmethod* nm) { argument
/openjdk7/jdk/src/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
/openjdk7/hotspot/src/share/vm/code/
H A DoopRecorder.cpp55 void OopRecorder::copy_to(nmethod* nm) { argument
58 nm->copy_oops(_handles);
H A DcodeCache.hpp59 static nmethod* _scavenge_root_nmethods; // linked via nm->scavenge_root_link()
60 static nmethod* _saved_nmethods; // linked via nm->saved_nmethod_look()
86 static void nmethods_do(void f(nmethod* nm)); // iterates over all nmethods
147 static void set_scavenge_root_nmethods(nmethod* nm) { _scavenge_root_nmethods = nm; } argument
148 static void add_scavenge_root_nmethod(nmethod* nm);
149 static void drop_scavenge_root_nmethod(nmethod* nm);
179 static void remove_saved_code(nmethod* nm);
180 static void speculatively_disconnect(nmethod* nm);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventSupport.java142 * Adds <tt>l</tt> to list of listeners interested in <tt>nm</tt>.
151 synchronized void addNamingListener(String nm, int scope, argument
156 NotifierArgs args = new NotifierArgs(nm, scope, l);
178 * Adds <tt>l</tt> to list of listeners interested in <tt>nm</tt>
181 synchronized void addNamingListener(String nm, String filter, argument
186 NotifierArgs args = new NotifierArgs(nm, filter, ctls, l);
H A DLdapSearchEnumeration.java201 void setStartName(Name nm) { argument
202 startName = nm;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTextPane.java267 * @param nm the name of the style (must be unique within the
279 public Style addStyle(String nm, Style parent) { argument
281 return doc.addStyle(nm, parent);
288 * @param nm the name of the style to remove
290 public void removeStyle(String nm) { argument
292 doc.removeStyle(nm);
298 * @param nm the name of the style
301 public Style getStyle(String nm) { argument
303 return doc.getStyle(nm);
/openjdk7/jdk/src/share/classes/java/lang/
H A DByte.java268 * @param nm the {@code String} to decode.
270 * value represented by {@code nm}
275 public static Byte decode(String nm) throws NumberFormatException { argument
276 int i = Integer.decode(nm);
279 "Value " + i + " out of range from input " + nm);
H A DShort.java273 * @param nm the {@code String} to decode.
275 * value represented by {@code nm}
280 public static Short decode(String nm) throws NumberFormatException { argument
281 int i = Integer.decode(nm);
284 "Value " + i + " out of range from input " + nm);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.hpp175 static void verify_deopt_original_pc( nmethod* nm, intptr_t* unextended_sp, bool is_method_handle_return = false);
176 static void verify_deopt_mh_original_pc(nmethod* nm, intptr_t* unextended_sp) { argument
177 verify_deopt_original_pc(nm, unextended_sp, true);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiCodeBlobEvents.cpp43 // as void CodeCache::blobs_do(void f(CodeBlob* nm)) and hence requires
233 void JvmtiCodeBlobEvents::build_jvmti_addr_location_map(nmethod *nm, argument
243 methodHandle mh(nm->method());
249 pcds_in_method = (nm->scopes_pcs_end() - nm->scopes_pcs_begin());
252 address scopes_data = nm->scopes_data_begin();
253 for( pcd = nm->scopes_pcs_begin(); pcd < nm->scopes_pcs_end(); ++pcd ) {
254 ScopeDesc sc0(nm, pcd->scope_decode_offset(), pcd->should_reexecute(), pcd->return_oop());
260 map[map_length].start_address = (const void*)pcd->real_pc(nm);
[all...]

Completed in 204 milliseconds

12345