Searched refs:nm (Results 51 - 75 of 173) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DElement.java171 public static int name2type(String nm) { argument
172 Integer val = contentTypes.get(nm);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp82 void set_code(nmethod* nm); // _code_handle->set_code(nm)
107 static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL, bool short_form = false) { argument
108 print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(),
109 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false,
H A Ddisassembler.cpp479 void Disassembler::decode(nmethod* nm, outputStream* st) { argument
481 decode_env env(nm, st);
482 env.output()->print_cr("Decoding compiled method " PTR_FORMAT ":", nm);
486 SharkEntry* entry = (SharkEntry *) nm->code_begin();
490 unsigned char* p = nm->code_begin();
491 unsigned char* end = nm->code_end();
509 if (nm->consts_size() > 0) {
510 nm->print_nmethod_labels(env.output(), nm->consts_begin());
512 for (address p = nm
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DadvancedThresholdPolicy.hpp214 CompLevel level, nmethod* nm, JavaThread* thread);
216 int bci, CompLevel level, nmethod* nm, JavaThread* thread);
H A Dframe.cpp145 nmethod* nm = cb()->as_nmethod_or_null(); local
146 if (nm->is_method_handle_return(pc()))
147 return nm->deopt_mh_handler_begin() - pc_return_offset;
149 return nm->deopt_handler_begin() - pc_return_offset;
231 nmethod* nm = (nmethod *)_cb; local
233 tty->print("checking (%s) ", nm->is_marked_for_deoptimization() ? "true" : "false");
234 nm->print_value_on(tty);
238 if( !nm->is_marked_for_deoptimization() )
243 return !nm->is_at_poll_return(pc());
248 nmethod* nm
259 nmethod* nm = (nmethod*)_cb; local
1088 nmethod* nm = (nmethod*)_cb; local
1097 nmethod* nm = (nmethod*)_cb; local
1378 nmethod* nm = cb()->as_nmethod_or_null(); local
1388 nmethod* nm = cb()->as_nmethod_or_null(); local
[all...]
H A DsharedRuntime.cpp485 nmethod* nm = (blob != NULL) ? blob->as_nmethod_or_null() : NULL; local
486 if (nm != NULL) {
488 thread->set_is_method_handle_return(nm->is_method_handle_return(return_address));
490 assert(!nm->is_native_method(), "no exception handler");
491 assert(nm->header_begin() != nm->exception_begin(), "no exception handler");
492 if (nm->is_deopt_pc(return_address)) {
495 return nm->exception_begin();
627 address SharedRuntime::compute_compiled_exc_handler(nmethod* nm, address ret_pc, Handle& exception, argument
629 assert(nm !
821 nmethod* nm = (nmethod*)cb; local
851 nmethod* nm = CodeCache::find_nmethod(pc); local
1687 nmethod* nm = cb->as_nmethod_or_null(); variable
1950 add_method_to_histogram(nmethod* nm) argument
2566 nmethod* nm = NULL; local
2663 nmethod* nm = NULL; local
[all...]
H A Drframe.cpp127 nmethod* nm = top_method()->code(); local
128 if (nm != NULL) {
129 return nm->insts_size();
H A DcompilationPolicy.hpp67 virtual nmethod* event(methodHandle method, methodHandle inlinee, int branch_bci, int bci, CompLevel comp_level, nmethod* nm, JavaThread* thread) = 0;
108 virtual nmethod* event(methodHandle method, methodHandle inlinee, int branch_bci, int bci, CompLevel comp_level, nmethod* nm, JavaThread* thread);
H A DadvancedThresholdPolicy.cpp434 CompLevel level, nmethod* nm, JavaThread* thread) {
449 int bci, CompLevel level, nmethod* nm, JavaThread* thread) {
470 guarantee(nm != NULL, "Should have nmethod here");
477 if (nm->is_osr_method()) {
490 int osr_bci = nm->is_osr_method() ? nm->osr_entry_bci() : InvocationEntryBci;
493 nm->make_not_entrant();
433 method_invocation_event(methodHandle mh, methodHandle imh, CompLevel level, nmethod* nm, JavaThread* thread) argument
448 method_back_branch_event(methodHandle mh, methodHandle imh, int bci, CompLevel level, nmethod* nm, JavaThread* thread) argument
/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/javax/swing/text/
H A DStyledEditorKit.java383 * @param nm the name of the action
385 public StyledTextAction(String nm) { argument
386 super(nm);
502 * @param nm the action name
505 public FontFamilyAction(String nm, String family) { argument
506 super(nm);
558 * @param nm the action name
561 public FontSizeAction(String nm, int size) { argument
562 super(nm);
625 * @param nm th
628 ForegroundAction(String nm, Color fg) argument
694 AlignmentAction(String nm, int a) argument
[all...]
H A DDefaultEditorKit.java1412 public VerticalPageAction(String nm, int direction, boolean select) { argument
1413 super(nm);
1571 public PageAction(String nm, boolean left, boolean select) { argument
1572 super(nm);
1648 * @param nm the name of the action, Action.NAME.
1652 NextVisualPositionAction(String nm, boolean select, int direction) { argument
1653 super(nm);
1735 * @param nm the name of the action, Action.NAME.
1739 BeginWordAction(String nm, boolean select) { argument
1740 super(nm);
1779 EndWordAction(String nm, boolean select) argument
1819 PreviousWordAction(String nm, boolean select) argument
1878 NextWordAction(String nm, boolean select) argument
1943 BeginLineAction(String nm, boolean select) argument
1983 EndLineAction(String nm, boolean select) argument
2023 BeginParagraphAction(String nm, boolean select) argument
2060 EndParagraphAction(String nm, boolean select) argument
2092 BeginAction(String nm, boolean select) argument
2120 EndAction(String nm, boolean select) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp143 void RelocIterator::initialize(nmethod* nm, address begin, address limit) { argument
146 if (nm == NULL && begin != NULL) {
149 nm = cb->as_nmethod_or_null();
151 assert(nm != NULL, "must be able to deduce nmethod from other arguments");
153 _code = nm;
154 _current = nm->relocation_begin() - 1;
155 _end = nm->relocation_end();
156 _addr = nm->content_begin();
159 _section_start[CodeBuffer::SECT_CONSTS] = nm->consts_begin();
160 _section_start[CodeBuffer::SECT_INSTS ] = nm
803 parse_ic(nmethod* &nm, address &ic_call, address &first_oop, oop* &oop_addr, bool *is_optimized) argument
1204 print_blob_locs(nmethod* nm) argument
[all...]
H A DoopRecorder.cpp55 void OopRecorder::copy_to(nmethod* nm) { argument
58 nm->copy_oops(_handles);
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.cpp421 extern "C" void nm(intptr_t p) { function
422 // Actually we look through all CodeBlobs (the nm name has been kept for backwards compatability)
423 Command c("nm");
436 nmethod* nm = cb->as_nmethod_or_null(); local
437 if (nm) {
438 nm->print();
439 Disassembler::decode(nm);
453 nmethod* nm = (nmethod*)cb; local
454 nm->print_nmethod(true);
632 nmethod* nm local
[all...]
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPrinterJob.java80 String nm = System.getProperty("java.awt.printerjob", null);
82 return (PrinterJob)Class.forName(nm).newInstance();
84 throw new AWTError("PrinterJob not found: " + nm);
86 throw new AWTError("Could not instantiate PrinterJob: " + nm);
88 throw new AWTError("Could not access PrinterJob: " + nm);
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogCompilation.java148 NMethod nm = mne.getNMethod();
150 if (nm == null) {
153 cacheSize -= nm.getSize();
159 NMethod nm = (NMethod) e;
160 cacheSize += nm.getSize();
H A DLogParser.java194 for (NMethod nm : log.nmethods.values()) {
195 Compilation c = log.compiles.get(nm.getId());
196 nm.setCompilation(c);
199 c.setNMethod(nm);
354 NMethod nm = nmethods.get(id);
355 if (nm == null) throw new InternalError();
357 atts.getValue("zombie") != null, nm);
392 NMethod nm = new NMethod(Double.parseDouble(search(atts, "stamp")),
396 nmethods.put(id, nm);
397 events.add(nm);
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVFrame.java68 NMethod nm = (NMethod) cb;
73 scope = nm.getScopeDescNearDbg(f.getPC());
75 scope = nm.getScopeDescAt(f.getPC());
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDInputStream.java126 String nm = new String(str, 0, pos);
127 Entity ent = dtd.getEntity(nm);
129 error("undefined entity reference: " + nm);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DLazySearchEnumerationImpl.java153 Name nm = (context != null ?
156 nm, context, env, targetAttrs);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp213 nmethod* nm = sender_blob->as_nmethod_or_null(); local
214 if (nm != NULL) {
215 if (nm->is_deopt_mh_entry(sender_pc) || nm->is_deopt_entry(sender_pc)) {
385 void frame::verify_deopt_original_pc(nmethod* nm, intptr_t* unextended_sp, bool is_method_handle_return) { argument
393 address original_pc = nm->get_original_pc(&fr);
394 assert(nm->insts_contains(original_pc), "original PC must be in nmethod");
395 assert(nm->is_method_handle_return(original_pc) == is_method_handle_return, "must be");
/openjdk7/hotspot/src/share/vm/memory/
H A DgenRemSet.hpp96 // (This must be static, and dispatch on "nm", because it is called
98 static uintx max_alignment_constraint(Name nm);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchParser.java87 Identifier nm = t.getName();
88 //System.out.println("package " + nm);
252 Identifier nm = name.getName();
271 if (nm.equals(idInit)) {
307 doc, mod, t, nm,
/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DMapCheck.java132 static void t1(String nm, int n, Map s, Object[] key, int expect) { argument
135 timer.start(nm, n * iters);
145 static void t2(String nm, int n, Map s, Object[] key, int expect) { argument
147 timer.start(nm, n);
155 static void t3(String nm, int n, Map s, Object[] key, int expect) { argument
157 timer.start(nm, n);
165 static void t4(String nm, int n, Map s, Object[] key, int expect) { argument
167 timer.start(nm, n);
175 static void t5(String nm, int n, Map s, Object[] key, int expect) { argument
177 timer.start(nm,
185 t6(String nm, int n, Map s, Object[] k1, Object[] k2) argument
196 t7(String nm, int n, Map s, Object[] k1, Object[] k2) argument
207 t8(String nm, int n, Map s, Object[] key, int expect) argument
[all...]

Completed in 129 milliseconds

1234567