Searched refs:frame (Results 501 - 525 of 611) sorted by relevance

<<2122232425

/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp475 // previous frame depending on the return address.
478 assert(frame::verify_return_pc(return_address), err_msg("must be a return address: " INTPTR_FORMAT, return_address));
574 oop SharedRuntime::retrieve_receiver( Symbol* sig, frame caller ) {
770 // Stack overflow only occurs upon frame setup; the callee is
784 // We haven't yet entered the callee frame. Fabricate an
824 // => the nmethod is not yet active (i.e., the frame
910 const frame f = thread->last_frame();
911 assert(f.is_interpreted_frame(), "must be an interpreted frame");
1014 // vtable updates, etc. Caller frame must be compiled.
1018 // last java frame o
[all...]
H A Dfprofiler.cpp945 void ThreadProfiler::record_interpreted_tick(JavaThread* thread, frame fr, TickPosition where, int* ticks) {
958 // The frame has been fully validated so we can trust the method and bci
971 void ThreadProfiler::record_compiled_tick(JavaThread* thread, frame fr, TickPosition where) {
1008 void ThreadProfiler::record_tick_for_running_frame(JavaThread* thread, frame fr) {
1028 frame caller = fr.profile_find_Java_sender_frame(thread);
1039 void ThreadProfiler::record_tick_for_calling_frame(JavaThread* thread, frame fr) {
1051 frame caller = fr.profile_find_Java_sender_frame(thread);
1089 frame fr;
1470 print_ticks("Unknown: running frame", unknown_ticks_array[ut_running_frame], active);
1471 print_ticks("Unknown: calling frame", unknown_ticks_arra
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTAccessor.java370 * Sets the state of this frame.
372 void setExtendedState(Frame frame, int state); argument
374 * Gets the state of this frame.
376 int getExtendedState(Frame frame); argument
378 * Gets the maximized bounds of this frame.
380 Rectangle getMaximizedBounds(Frame frame); argument
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp32 #include "runtime/frame.hpp"
84 // Result returned to frame manager
98 friend class frame;
107 method_resume, // frame manager response to return_from_method request (assuming a frame to resume)
108 deopt_resume, // returning from a native call into a deopted frame
110 got_monitors, // frame manager response to more_monitors request
112 // requests to frame manager from C++ interpreter
113 call_method, // request for new frame from interpreter, manager responds with method_entry
129 messages _msg; // frame manage
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A D_AppEventHandler.java154 final Frame frame = allFrames[i];
155 frame.dispatchEvent(new WindowEvent(frame, WindowEvent.WINDOW_CLOSING));
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp34 #include "runtime/frame.inline.hpp"
330 static void trace_codeblob_maps(const frame *fr, const RegisterMap *reg_map) {
357 void OopMapSet::oops_do(const frame *fr, const RegisterMap* reg_map, OopClosure* f) {
363 void OopMapSet::all_do(const frame *fr, const RegisterMap *reg_map,
463 // Update callee-saved register info for the following frame
464 void OopMapSet::update_register_map(const frame *fr, RegisterMap *reg_map) {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java224 return thread.frame(currentFrameIndex);
252 * Set the current stackframe to a specific frame.
259 * requested frame is beyond the stack boundary
277 * requested frame is beyond the stack boundary
290 * requested frame is beyond the stack boundary
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_FrameMap_sparc.hpp32 first_available_sp_in_frame = frame::memory_parameter_word_sp_offset * BytesPerWord,
H A DmethodHandles_sparc.cpp478 // dumping last frame with frame::describe
487 // While trace_method_handle creates a frame, it may be entered
489 // Walking that frame could lead to failures due to that invalid PC.
490 // => carefully detect that frame when doing the stack walking
492 // walk up to the right frame using the "tracing_fp" argument
494 frame cur_frame(cur_sp, frame::unpatchable, NULL);
500 // safely create a frame and call frame
[all...]
H A Dassembler_sparc.cpp78 int disp = ((_number - Argument::n_register_parameters + frame::memory_parameter_word_sp_offset) * BytesPerWord) + STACK_BIAS;
992 // When returning from calling out from Java mode the frame anchor's last_Java_pc
995 // native call having a standard frame linkage where we can find the pc.
1031 save_frame_and_mov(0, Lmethod, Lmethod); // Propagate Lmethod to helper frame for -Xprof
1150 // has already been performed by a stub, and the last Java frame is
1521 // compute size in bytes of sparc frame, given
1525 int nWords = frame::memory_parameter_word_sp_offset;
1535 // save_frame: given number of "extra" words in frame,
1781 stx(O0,SP,frame::register_save_words*wordSize+STACK_BIAS+0*8);
1782 stx(O1,SP,frame
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DmethodHandles_x86.cpp501 // dumping last frame with frame::describe
510 // While trace_method_handle creates a frame, it may be entered
512 // Walking that frame could lead to failures due to that invalid PC.
513 // => carefully detect that frame when doing the stack walking
515 // Current C frame
516 frame cur_frame = os::current_frame();
521 frame trace_calling_frame = os::get_sender_for_C_frame(&cur_frame);
526 // safely create a frame and call frame
[all...]
/openjdk7/hotspot/src/os/posix/vm/
H A Dos_posix.cpp26 #include "runtime/frame.inline.hpp"
69 frame fr = os::current_frame();
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DGUIDemo.java73 buttonSize = myButton.frame().size();
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkContext.cpp68 jbyte_type(), frame::interpreter_frame_monitor_size() * wordSize);
H A DsharkStack.hpp116 // Interface with the frame anchor
151 // Our method's frame
165 // Offsets of things in the frame
192 (max_monitors() - 1 - index) * frame::interpreter_frame_monitor_size();
204 // Addresses of things in the frame
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.hpp240 void pd_ps(frame f);
/openjdk7/jdk/test/com/sun/jdi/
H A DInvokeHangTest.java194 StackFrame sf = thread.frame(0);
/openjdk7/jdk/test/java/awt/Mouse/MouseModifiersUnitTest/
H A DMouseModifiersUnitTest_Extra.java425 MouseModifiersUnitTest_Extra frame = new MouseModifiersUnitTest_Extra();
426 frame.initParams(s);
427 frame.init();
429 frame.start();
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCWrapper.m333 NSRect frame = NSMakeRect(x, y, w, h);
335 [window setFrame:frame display:display];
565 * Method: frame
580 rect = [view frame];
696 * Method: frame
711 rect = [screen frame];
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.hpp33 #include "runtime/frame.hpp"
263 static void post_method_entry (JavaThread *thread, methodOop method, frame current_frame);
264 static void post_method_exit (JavaThread *thread, methodOop method, frame current_frame);
/openjdk7/jdk/test/java/awt/event/KeyEvent/KeyTyped/
H A DCtrlASCII.java72 //Frame frame;
377 public TestDialog( Frame frame, String name ) argument
379 super( frame, name );
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletViewer.java48 * A frame to show the applet tag in.
53 * Create the tag frame.
219 final Frame frame;
221 public AppletEventListener(Frame frame)
223 this.frame = frame;
244 // The cause of this bug is that the frame of the applet
249 // To fix this, we rearrange the AppContext with the frame,
256 AppletPanel.changeFrameAppContext(frame, SunToolkit.targetToAppContext(a));
258 AppletPanel.changeFrameAppContext(frame, AppContex
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/resources/
H A Dhat.js815 var frame = frames[i];
816 var src = frame.sourceFileName;
818 print('\t' + frame.className + "." +
819 frame.methodName + '(' + frame.methodSignature + ') [' +
820 src + ':' + frame.lineNumber + ']');
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp278 TypeOrigin TypeOrigin::local(u2 index, StackMapFrame* frame) {
279 assert(frame != NULL, "Must have a frame");
280 return TypeOrigin(CF_LOCALS, index, StackMapFrame::copy(frame),
281 frame->local_at(index));
283 TypeOrigin TypeOrigin::stack(u2 index, StackMapFrame* frame) {
284 assert(frame != NULL, "Must have a frame");
285 return TypeOrigin(CF_STACK, index, StackMapFrame::copy(frame),
286 frame
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassReader.java1057 * content of the attribute is read one frame at a time
1058 * (i.e. after a frame has been visited, the next frame
1060 * extracted one frame at a time. Thanks to the ordering
1061 * of frames, having only a "one frame lookahead" is not
1066 // TODO true for frame offsets,
1100 // creates the very first (implicit) frame from the method
1159 * for the first explicit frame the offset is not
1161 * implicit frame offset to -1 allow the use of the
1182 // if there is a frame fo
1740 readFrameType( final Object[] frame, final int index, int v, final char[] buf, final Label[] labels) argument
[all...]

Completed in 100 milliseconds

<<2122232425