Searched refs:new_SP (Results 1 – 5 of 5) sorted by relevance
/external/valgrind/main/memcheck/ |
D | mc_main.c | 2574 static void VG_REGPARM(2) mc_new_mem_stack_4_w_ECU(Addr new_SP, UInt ecu) in mc_new_mem_stack_4_w_ECU() argument 2578 if (VG_IS_4_ALIGNED( -VG_STACK_REDZONE_SZB + new_SP )) { in mc_new_mem_stack_4_w_ECU() 2579 make_aligned_word32_undefined_w_otag ( -VG_STACK_REDZONE_SZB + new_SP, otag ); in mc_new_mem_stack_4_w_ECU() 2581 MC_(make_mem_undefined_w_otag) ( -VG_STACK_REDZONE_SZB + new_SP, 4, otag ); in mc_new_mem_stack_4_w_ECU() 2586 static void VG_REGPARM(1) mc_new_mem_stack_4(Addr new_SP) in mc_new_mem_stack_4() argument 2589 if (VG_IS_4_ALIGNED( -VG_STACK_REDZONE_SZB + new_SP )) { in mc_new_mem_stack_4() 2590 make_aligned_word32_undefined ( -VG_STACK_REDZONE_SZB + new_SP ); in mc_new_mem_stack_4() 2592 make_mem_undefined ( -VG_STACK_REDZONE_SZB + new_SP, 4 ); in mc_new_mem_stack_4() 2597 static void VG_REGPARM(1) mc_die_mem_stack_4(Addr new_SP) in mc_die_mem_stack_4() argument 2600 if (VG_IS_4_ALIGNED( -VG_STACK_REDZONE_SZB + new_SP )) { in mc_die_mem_stack_4() [all …]
|
/external/valgrind/main/coregrind/ |
D | m_stacks.c | 276 void VG_(unknown_SP_update)( Addr old_SP, Addr new_SP, UInt ecu ) in VG_() 279 Word delta = (Word)new_SP - (Word)old_SP; in VG_() 283 new_SP < current_stack->start || new_SP > current_stack->end) { in VG_() 284 Stack* new_stack = find_stack_by_addr(new_SP); in VG_() 308 "SP change: 0x%lx --> 0x%lx\n", old_SP, new_SP); in VG_() 318 VG_TRACK( new_mem_stack_w_ECU, new_SP, -delta, ecu ); in VG_() 319 VG_TRACK( new_mem_stack, new_SP, -delta ); in VG_()
|
D | pub_core_stacks.h | 45 void VG_(unknown_SP_update) ( Addr old_SP, Addr new_SP, UInt otag );
|
D | m_translate.c | 547 IRTemp new_SP; in vg_SP_update_pass() local 551 new_SP = newIRTemp(bb->tyenv, typeof_SP); in vg_SP_update_pass() 554 IRStmt_WrTmp( new_SP, IRExpr_Get(offset_SP, typeof_SP) ) in vg_SP_update_pass() 565 IRExpr_RdTmp(new_SP), in vg_SP_update_pass() 570 addStmtToIRSB( bb, IRStmt_Put(offset_SP, IRExpr_RdTmp(new_SP) )); in vg_SP_update_pass()
|
/external/valgrind/main/coregrind/m_gdbserver/ |
D | target.c | 352 Addr old_SP, new_SP; in usr_store_inferior_registers() local 386 VG_(memcpy) (&new_SP, buf, size); in usr_store_inferior_registers() 387 if (old_SP > new_SP) { in usr_store_inferior_registers() 388 Word delta = (Word)new_SP - (Word)old_SP; in usr_store_inferior_registers() 392 (void*) old_SP, (void *) new_SP, in usr_store_inferior_registers() 394 VG_TRACK( new_mem_stack_w_ECU, new_SP, -delta, 0 ); in usr_store_inferior_registers() 395 VG_TRACK( new_mem_stack, new_SP, -delta ); in usr_store_inferior_registers() 397 new_SP, -delta); in usr_store_inferior_registers()
|