Searched refs:frame (Results 351 - 375 of 611) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp40 #include "runtime/frame.inline.hpp"
52 const int method_offset = frame::interpreter_frame_method_offset * wordSize;
53 const int bci_offset = frame::interpreter_frame_bcx_offset * wordSize;
54 const int locals_offset = frame::interpreter_frame_locals_offset * wordSize;
61 // Note: There should be a minimal interpreter frame set up when stack
67 frame::interpreter_frame_monitor_block_top_offset * wordSize));
70 __ jcc(Assembler::aboveEqual, L); // check if frame is complete
71 __ stop ("interpreter frame not set up");
75 // Restore bcp under the assumption that the current frame is still
146 __ movptr(Address(rbp, frame
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFrame.java46 * The size of the frame includes any area designated for the
50 * value cannot be obtained until the frame is made displayable
53 * frame, the border effectively obscures a portion of the frame,
60 * The default layout for a frame is <code>BorderLayout</code>.
62 * A frame may have its native decorations (i.e. <code>Frame</code>
64 * with <code>setUndecorated</code>. This can only be done while the frame
229 * frame state with all state bits cleared.
236 * This state bit indicates that frame is iconified.
243 * This state bit indicates that frame i
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64Frame.java52 // Address raw_fp; // frame pointer only 1.4.2
70 IA64Frame frame = new IA64Frame();
71 frame.raw_sp = raw_sp;
72 frame.iframe = iframe;
73 frame.pc = pc;
74 return frame;
180 // Must be native-compiled frame, i.e. the marshaling code for native
192 // Java frame called from C; skip all C frames and return top C
193 // frame of that chunk as the sender
197 Assert.that(jcw.getLastJavaSP().greaterThan(getSP()), "must be above this frame o
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DXMLFormatter.java197 StackTraceElement frame = trace[i];
198 sb.append(" <frame>\n");
200 escape(sb, frame.getClassName());
203 escape(sb, frame.getMethodName());
206 if (frame.getLineNumber() >= 0) {
208 sb.append(frame.getLineNumber());
211 sb.append(" </frame>\n");
/openjdk7/hotspot/src/share/vm/interpreter/
H A DabstractInterpreter.hpp83 // interpreter*: generic frame creation and handling.
145 static address _rethrow_exception_entry; // rethrows an activation in previous frame
209 (frame*)NULL,
210 (frame*)NULL,
222 frame* caller,
223 frame* interpreter_frame,
249 return ((frame::interpreter_frame_expression_stack_direction() * n) * stackElementSize);
/openjdk7/jdk/test/com/sun/jdi/
H A DPopSynchronousTest.java123 StackFrame frame = (StackFrame)it.next();
124 if (frame.location().method().name().equals(methodName)) {
125 return frame;
155 return mainThread.frame(0).location().method().name().equals(methodName);
159 Location loc = mainThread.frame(0).location();
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadStackTrace.java136 int frame = stack.length - 1;
138 if (! stack[frame].getMethodName().equals(expectedStack[i])) {
140 "Expected " + expectedStack[i] + " in frame " + frame +
141 " but got " + stack[frame].getMethodName());
143 frame--;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java78 * Frame has exactly the same locals as the previous stack map frame and
84 * Frame has exactly the same locals as the previous stack map frame and
95 * Frame has exactly the same locals as the previous stack map frame and
102 * frame, except that the k last locals are absent. The value of k is given
108 * Frame has exactly the same locals as the previous stack map frame and
115 * frame, except that k additional locals are defined. The value of k is
121 * Full frame
277 * The offset of the last frame that was written in the StackMapTable
283 * The last frame that was written in the StackMapTable attribute.
285 * @see #frame
303 private int[] frame; field in class:MethodWriter
[all...]
H A DLabel.java101 * Indicates if a stack map frame must be stored for this label.
198 * basic block, called the "output frame", <i>relatively</i> to the frame
200 * frame", and which is <i>unknown</i> during this step. The second step,
202 * computes information about the input frame of each basic block, from the
240 Frame frame; field in class:Label
443 return !ClassReader.FRAMES || frame == null ? this : frame.owner;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DObjectReferenceImpl.java246 JavaVFrame frame = jt.getLastJavaVFrameDbg();
247 while (frame != null) {
248 List monitors = frame.getMonitors();
252 if (mi.eliminated() && frame.isCompiledFrame()) continue; // skip eliminated monitor
257 frame = (JavaVFrame) frame.javaSender();
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp49 #include "runtime/frame.inline.hpp"
67 frame os::get_sender_for_C_frame(frame* fr) {
71 frame os::current_frame() {
74 // - Step 110 (printing stack bounds) uses the sp in the frame
79 // The frame we create has a NULL pc, which is ignored as an
80 // invalid frame.
81 frame dummy = frame();
114 frame o
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp44 #include "runtime/frame.inline.hpp"
62 frame os::get_sender_for_C_frame(frame* fr) {
66 frame os::current_frame() {
69 // - Step 110 (printing stack bounds) uses the sp in the frame
74 // The frame we create has a NULL pc, which is ignored as an
75 // invalid frame.
76 frame dummy = frame();
109 frame o
[all...]
/openjdk7/jdk/test/java/awt/MouseAdapter/MouseAdapterUnitTest/
H A DMouseAdapterUnitTest.java41 static Frame frame = new Frame("Test Frame"); field in class:MouseAdapterUnitTest
87 frame.add(b);
88 frame.pack();
89 frame.setVisible(true);
444 public TestDialog( Frame frame, String name ) argument
446 super( frame, name );
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTable.hpp60 int32_t _frame_count; // Stackmap frame count
73 // Match and/or update current_frame to the frame in stackmap table with
78 // Match and/or update current_frame to the frame in stackmap table with
79 // specified offset and frame index. Return true if the two frames match.
86 void check_jump_target(StackMapFrame* frame, int32_t target, TRAPS) const;
90 // Returns the frame array index where the frame with offset is stored.
95 const StackMapFrame* frame, int32_t target, TRAPS) const;
138 int32_t _frame_count; // frame count
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DStackTraceTool.java87 // If the user selects a new current frame, display it in
94 // If the current frame of the thread appearing in this
143 StackFrame frame = (StackFrame)value;
144 Location loc = frame.location();
166 // Point this view at the given thread and frame.
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.hpp31 // A frame represents a physical stack frame (an activation). Frames can be
33 // In contrast, vframes represent source-level activations, so that one physical frame
35 // A frame is comprised of {pc, sp, younger_sp}
38 // Layout of asm interpreter frame:
43 // .. Note: incoming args are copied to local frame area upon entry
81 // It is accessed in the frame under the name "bcx".
93 // must be cleverly copied from the top of stack to the outgoing param area in the frame,
95 // Layout of C++ interpreter frame:
131 // Note: On SPARC, unlike Intel, the saved PC for a stack frame
[all...]
/openjdk7/jdk/test/java/awt/Component/UpdatingBootTime/
H A DUpdatingBootTime.java158 public TestDialog( Frame frame, String name ) argument
160 super( frame, name );
/openjdk7/jdk/test/java/awt/FileDialog/FileDialogReturnTest/
H A DFileDialogReturnTest.java182 public TestDialog( Frame frame, String name ) argument
184 super( frame, name );
/openjdk7/jdk/test/java/awt/FileDialog/MultipleMode/
H A DMultipleMode.java225 public TestDialog( Frame frame, String name ) argument
227 super( frame, name );
/openjdk7/jdk/test/java/awt/FileDialog/RegexpFilterTest/
H A DRegexpFilterTest.java162 public TestDialog( Frame frame, String name ) argument
164 super( frame, name );
/openjdk7/jdk/test/java/awt/List/MouseDraggedOutCauseScrollingTest/
H A DMouseDraggedOutCauseScrollingTest.java182 public TestDialog( Frame frame, String name ) argument
184 super( frame, name );
/openjdk7/jdk/test/java/awt/List/SetFontTest/
H A DSetFontTest.java170 public TestDialog( Frame frame, String name ) argument
172 super( frame, name );
/openjdk7/jdk/test/java/awt/PrintJob/PrintCheckboxTest/
H A DPrintCheckboxManualTest.java82 "1. Click the 'Print' button on the frame",
84 "3. If the frame with checkbox and button on it is printed successfully test PASSED else FAILED"
231 public TestDialog( Frame frame, String name ) argument
233 super( frame, name );
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnD/
H A DImageDecoratedDnD.java142 public TestDialog(Frame frame, String name) { argument
143 super(frame, name);
/openjdk7/jdk/test/java/awt/event/KeyEvent/KeyReleasedInAppletTest/
H A DKeyReleasedInAppletTest.java175 public TestDialog(Frame frame, String name) { argument
176 super(frame, name);

Completed in 240 milliseconds

<<11121314151617181920>>