Lines Matching defs:frame
19 * 32-bit corner case. On x86_32, the hardware stack frame is
21 * maximum-length frame. If we enter from CPL 0, the top 8 bytes of
31 * In vm86 mode, the hardware frame is much longer still, so add 16
34 * x86_64 has a fixed-length stack frame.
170 * entirely contained by a single stack frame.
173 * GOOD_FRAME if within a frame
174 * BAD_STACK if placed across a frame boundary (or outside stack)
175 * NOT_STACK unable to determine (no frame pointers, etc)
182 const void *frame = NULL;
187 frame = __builtin_frame_address(2);
194 while (stack <= frame && frame < stackend) {
196 * If obj + len extends past the last frame, this
197 * check won't pass and the next frame will be 0,
201 if (obj + len <= frame)
204 oldframe = frame;
205 frame = *(const void * const *)frame;