Searched refs:current_sp (Results 1 - 9 of 9) sorted by relevance

/external/lldb/source/DataFormatters/
H A DLibCxxList.cpp240 ValueObjectSP current_sp(current.advance(idx));
241 if (!current_sp)
243 current_sp = current_sp->GetChildMemberWithName(ConstString("__value_"), true);
244 if (!current_sp)
246 // we need to copy current_sp into a new object otherwise we will end up with all items named __value_
248 current_sp->GetData(data);
/external/qemu/target-arm/
H A Dmachine.c107 qemu_put_be32(f, env->v7m.current_sp);
234 env->v7m.current_sp = qemu_get_be32(f);
H A Dhelper.c755 if (env->v7m.current_sp != process) {
759 env->v7m.current_sp = process;
801 if (env->v7m.current_sp)
2309 return env->v7m.current_sp ? env->v7m.other_sp : env->regs[13];
2311 return env->v7m.current_sp ? env->regs[13] : env->v7m.other_sp;
2353 if (env->v7m.current_sp)
2359 if (env->v7m.current_sp)
H A Dcpu.h196 int current_sp; member in struct:CPUARMState::__anon30108
/external/chromium_org/v8/src/mips/
H A Dsimulator-mips.cc3254 int current_sp = get_register(sp);
3255 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp);
3257 set_register(sp, current_sp + sizeof(uintptr_t));
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc443 const Register& current_sp = __ StackPointer(); local
445 DCHECK(!current_sp.Is(csp));
446 __ mov(current_sp, fp);
448 __ ldp(fp, lr, MemOperand(current_sp, 2 * kXRegSize, PostIndex));
454 __ add(current_sp, current_sp, ip0);
H A Dsimulator-arm64.cc325 intptr_t current_sp = sp(); local
326 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp);
329 set_sp(current_sp + 2 * kXRegSize);
/external/chromium_org/v8/src/arm/
H A Dsimulator-arm.cc3830 int current_sp = get_register(sp); local
3831 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp);
3833 set_register(sp, current_sp + sizeof(uintptr_t));
/external/chromium_org/v8/src/mips64/
H A Dsimulator-mips64.cc3432 int64_t current_sp = get_register(sp);
3433 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp);
3435 set_register(sp, current_sp + sizeof(uintptr_t));

Completed in 3542 milliseconds