Searched defs:depth (Results 226 - 235 of 235) sorted by relevance

12345678910

/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp1686 juint depth = (tkls->offset() - in_bytes(Klass::primary_supers_offset())) / sizeof(klassOop); local
1688 if( depth < ciKlass::primary_super_limit() ) {
1692 ciKlass *ss = klass->super_of_depth(depth);
1713 // shallow enough depth. Even though the klass is not exact, entries less
1714 // than or equal to its super depth are correct.
1722 juint depth = (tkls->offset() - in_bytes(Klass::primary_supers_offset())) / sizeof(klassOop); local
1724 if( depth < ciKlass::primary_super_limit() &&
1725 depth <= klass->super_depth() ) { // allow self-depth checks to handle self-check case
1729 ciKlass *ss = klass->super_of_depth(depth);
[all...]
H A DgraphKit.cpp118 int jvms_depth = jvms()->depth();
119 if (jvms_depth != parse->depth()) return false;
854 int inputs = 0, depth = 0; local
857 if (compute_stack_effects(inputs, depth)) {
968 assert(out_jvms->depth() == in_jvms->depth(), "depth must match");
987 bool GraphKit::compute_stack_effects(int& inputs, int& depth) { argument
997 depth = Bytecodes::depth(cod
1250 int depth = 0; local
[all...]
H A Dlibrary_call.cpp540 C->print_inlining(callee, jvms->depth() - 1, bci, is_virtual() ? "(intrinsic, virtual)" : "(intrinsic)");
559 C->print_inlining(callee, jvms->depth() - 1, bci, msg);
589 C->print_inlining(callee, jvms->depth() - 1, bci, is_virtual() ? "(intrinsic, virtual)" : "(intrinsic)");
606 C->print_inlining(kit.callee(), jvms->depth() - 1, bci, msg);
1939 int depth = 0; // Limit search depth for speed local
1942 if (++depth >= 100) break;
3856 // The depth value must be a constant in order for the runtime call
3862 tty->print_cr(" Bailing out because caller depth was not a constant");
3871 // requested depth befor
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.cpp3833 MatchRule::MatchRule(ArchDesc &ad, MatchNode* mroot, int depth, char *cnstr, argument
3835 : MatchNode(ad,*mroot), _depth(depth), _construct(cnstr),
4168 fprintf(fp,"\n nesting depth = %d\n", _depth);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp1486 // depth - pre-checked as non-negative
1490 JvmtiEnv::GetFrameLocation(JavaThread* java_thread, jint depth, jmethodID* method_ptr, jlocation* location_ptr) { argument
1495 err = get_frame_location(java_thread, depth, method_ptr, location_ptr);
1498 VM_GetFrameLocation op(this, java_thread, depth, method_ptr, location_ptr);
1509 // depth - pre-checked as non-negative
1511 JvmtiEnv::NotifyFramePop(JavaThread* java_thread, jint depth) { argument
1528 vframe *vf = vframeFor(java_thread, depth);
1539 int frame_number = state->count_frames() - depth;
1783 // depth - pre-checked as non-negative
1786 JvmtiEnv::GetLocalObject(JavaThread* java_thread, jint depth, jin argument
1809 GetLocalInstance(JavaThread* java_thread, jint depth, jobject* value_ptr) argument
1833 GetLocalInt(JavaThread* java_thread, jint depth, jint slot, jint* value_ptr) argument
1851 GetLocalLong(JavaThread* java_thread, jint depth, jint slot, jlong* value_ptr) argument
1869 GetLocalFloat(JavaThread* java_thread, jint depth, jint slot, jfloat* value_ptr) argument
1887 GetLocalDouble(JavaThread* java_thread, jint depth, jint slot, jdouble* value_ptr) argument
1904 SetLocalObject(JavaThread* java_thread, jint depth, jint slot, jobject value) argument
1921 SetLocalInt(JavaThread* java_thread, jint depth, jint slot, jint value) argument
1938 SetLocalLong(JavaThread* java_thread, jint depth, jint slot, jlong value) argument
1955 SetLocalFloat(JavaThread* java_thread, jint depth, jint slot, jfloat value) argument
1972 SetLocalDouble(JavaThread* java_thread, jint depth, jint slot, jdouble value) argument
[all...]
H A DjvmtiTagMap.cpp1908 (jvmtiHeapRootKind root_kind, jlong thread_tag, jint depth, jmethodID method,
1917 (jvmtiHeapReferenceKind ref_kind, jlong thread_tag, jlong tid, int depth,
1941 static inline bool report_jni_local_root(jlong thread_tag, jlong tid, jint depth,
1943 static inline bool report_stack_ref_root(jlong thread_tag, jlong tid, jint depth,
2025 jint depth,
2043 depth,
2156 int depth,
2190 reference_info.stack_local.depth = depth;
2437 inline bool CallbackInvoker::report_jni_local_root(jlong thread_tag, jlong tid, jint depth, jmethodI argument
2023 invoke_basic_stack_ref_callback(jvmtiHeapRootKind root_kind, jlong thread_tag, jint depth, jmethodID method, jint slot, oop obj) argument
2153 invoke_advanced_stack_ref_callback(jvmtiHeapReferenceKind ref_kind, jlong thread_tag, jlong tid, int depth, jmethodID method, jlocation bci, jint slot, oop obj) argument
2458 report_stack_ref_root(jlong thread_tag, jlong tid, jint depth, jmethodID method, jlocation bci, jint slot, oop obj) argument
2649 set_context(jlong thread_tag, jlong tid, jint depth, jmethodID method) argument
3116 int depth = 0; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c217 jint x, jint y, jint w, jint h , jint border_width, jint depth,
222 border_width, depth, wclass, (Visual *) jlong_to_ptr(visual),
1685 Java_sun_awt_X11_XlibWrapper_XCreatePixmap(JNIEnv *env, jclass clazz, jlong display, jlong drawable, jint width, jint height, jint depth) argument
1688 return XCreatePixmap((Display*)jlong_to_ptr(display), (Drawable)drawable, width, height, depth);
1693 jint depth, jint format, jint offset, jlong data, jint width,
1698 depth, format, offset, (char*) jlong_to_ptr(data),
215 Java_sun_awt_X11_XlibWrapper_XCreateWindow(JNIEnv *env, jclass clazz, jlong display, jlong window, jint x, jint y, jint w, jint h , jint border_width, jint depth, jlong wclass, jlong visual, jlong valuemask, jlong attributes) argument
1691 Java_sun_awt_X11_XlibWrapper_XCreateImage(JNIEnv *env, jclass clazz, jlong display, jlong visual_ptr, jint depth, jint format, jint offset, jlong data, jint width, jint height, jint bitmap_pad, jint bytes_per_line) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java99 border_width, depth,
106 int depth;
113 static native long XCreateWindow(long display, long parent, int x,int y, int width, int height, int border_width, int depth, long wclass, long visual, long valuemask, long attributes); argument
470 static native long XCreatePixmap(long display, long drawable, int width, int height, int depth); argument
471 static native long XCreateImage(long display, long visual_ptr, int depth, int format, argument
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp1658 int depth = 0; local
1664 depth += trace_chunk_size;
1674 depth++;
1677 return depth;
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h505 (jvmtiHeapRootKind root_kind, jlong class_tag, jlong size, jlong* tag_ptr, jlong thread_tag, jint depth, jmethodID method, jint slot, void* user_data);
557 jint depth; member in struct:_jvmtiHeapReferenceInfoStackLocal
565 jint depth; member in struct:_jvmtiHeapReferenceInfoJniLocal
1097 jint depth,
1104 jint depth);
1109 jint depth,
1116 jint depth,
1123 jint depth,
1130 jint depth,
1137 jint depth,
1930 GetFrameLocation(jthread thread, jint depth, jmethodID* method_ptr, jlocation* location_ptr) argument
1937 NotifyFramePop(jthread thread, jint depth) argument
2034 GetLocalObject(jthread thread, jint depth, jint slot, jobject* value_ptr) argument
2041 GetLocalInstance(jthread thread, jint depth, jobject* value_ptr) argument
2047 GetLocalInt(jthread thread, jint depth, jint slot, jint* value_ptr) argument
2054 GetLocalLong(jthread thread, jint depth, jint slot, jlong* value_ptr) argument
2061 GetLocalFloat(jthread thread, jint depth, jint slot, jfloat* value_ptr) argument
2068 GetLocalDouble(jthread thread, jint depth, jint slot, jdouble* value_ptr) argument
2075 SetLocalObject(jthread thread, jint depth, jint slot, jobject value) argument
2082 SetLocalInt(jthread thread, jint depth, jint slot, jint value) argument
2089 SetLocalLong(jthread thread, jint depth, jint slot, jlong value) argument
2096 SetLocalFloat(jthread thread, jint depth, jint slot, jfloat value) argument
2103 SetLocalDouble(jthread thread, jint depth, jint slot, jdouble value) argument
[all...]

Completed in 155 milliseconds

12345678910