Home | History | Annotate | Download | only in mips

Lines Matching refs:stack

471       } else if (strcmp(cmd, "stack") == 0 || strcmp(cmd, "mem") == 0) {
476 if (strcmp(cmd, "stack") == 0) {
611 PrintF("stack [<words>]\n");
612 PrintF(" dump stack content, default dump 10 words)\n");
757 stack_size_ = 1 * 1024*1024; // allocate 1MB for stack
776 // allocated stack area. To be safe in potential stack underflows we leave
1128 // Returns the limit of the stack area to enable checking for stack overflows.
1130 // Leave a safety margin of 256 bytes to prevent overrunning the stack when
1172 // Check if stack is aligned. Error if not aligned is reported below to
1187 // the stack to overflow. For some reason arm doesn't need this
1188 // stack check here.
1190 int32_t* stack = reinterpret_cast<int32_t*>(stack_);
1191 if (stack_pointer >= stack && stack_pointer < stack + stack_size_) {
1219 PrintF(" with unaligned stack %08x\n", get_register(sp));
1251 PrintF(" with unaligned stack %08x\n", get_register(sp));
2325 // Remaining arguments passed on stack.
2327 // Compute position of stack on entry to generated code.
2333 // Store remaining arguments on stack, from low to high memory.
2405 // Pop stack passed arguments.