Lines Matching +defs:stack +defs:limit
63 uintptr_t *stack;
69 stack = (uintptr_t *)frame->tf_rsp;
73 stack = (uintptr_t *)frame->tf_isp + 3;
99 cpu->cpu_dtrace_caller = stack[0];
112 * When accessing the arguments on the stack,
114 * the stack. We can safely set NOFAULT here
119 cpu->cpu_dtrace_caller = stack[i++];
120 arg0 = stack[i++];
121 arg1 = stack[i++];
122 arg2 = stack[i++];
123 arg3 = stack[i++];
124 arg4 = stack[i++];
138 * to ensure that the top frame of a stack()
142 cpu->cpu_dtrace_caller = stack[0];
186 uint8_t *instr, *limit;
201 limit = (uint8_t *) symval->value + symval->size;
204 while (instr < limit) {
214 if (instr >= limit || *instr != FBT_PUSHL_EBP) {
262 if (instr >= limit)
311 if (check + sizeof (caddr_t) > (caddr_t)limit)
316 if (ptr >= (uint8_t *) symval->value && ptr < limit) {