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.
160 * entirely contained by a single stack frame.
163 * GOOD_FRAME if within a frame
164 * BAD_STACK if placed across a frame boundary (or outside stack)
165 * NOT_STACK unable to determine (no frame pointers, etc)
177 const void *frame = NULL;
182 frame = __builtin_frame_address(2);
189 while (stack <= frame && frame < stackend) {
191 * If obj + len extends past the last frame, this
192 * check won't pass and the next frame will be 0,
196 if (obj + len <= frame)
199 oldframe = frame;
200 frame = *(const void * const *)frame;