Home
last modified time | relevance | path

Searched refs:ecu (Results 1 – 9 of 9) sorted by relevance

/external/valgrind/coregrind/
Dm_execontext.c83 UInt ecu; member
150 vg_assert(null_ExeContext->ecu == 4); in init_ExeContext_storage()
171 ec->ecu, ec->n_ips); in VG_()
436 new_ec->ecu = ec_next_ecu; in record_ExeContext_wrk2()
479 vg_assert(VG_(is_plausible_ECU)(e->ecu)); in VG_()
480 return e->ecu; in VG_()
488 ExeContext* VG_(get_ExeContext_from_ECU)( UInt ecu ) in VG_()
492 vg_assert(VG_(is_plausible_ECU)(ecu)); in VG_()
496 if (ec->ecu == ecu) in VG_()
Dpub_core_stacks.h57 ( Addr old_SP, Addr new_SP, UInt ecu );
Dm_stacks.c434 void VG_(unknown_SP_update_w_ECU)( Addr old_SP, Addr new_SP, UInt ecu ) { in VG_()
439 VG_TRACK( new_mem_stack_w_ECU, new_SP, -delta, ecu ); in VG_()
Dm_translate.c214 UInt ecu; in mk_ecu_Expr() local
218 ecu = VG_(get_ECU_from_ExeContext)( ec ); in mk_ecu_Expr()
219 vg_assert(VG_(is_plausible_ECU)(ecu)); in mk_ecu_Expr()
222 return mkIRExpr_HWord( (HWord)ecu ); in mk_ecu_Expr()
/external/valgrind/include/
Dpub_tool_tooliface.h574 void VG_(track_new_mem_stack_4_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
575 void VG_(track_new_mem_stack_8_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
576 void VG_(track_new_mem_stack_12_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
577 void VG_(track_new_mem_stack_16_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
578 void VG_(track_new_mem_stack_32_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
579 void VG_(track_new_mem_stack_112_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
580 void VG_(track_new_mem_stack_128_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
581 void VG_(track_new_mem_stack_144_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
582 void VG_(track_new_mem_stack_160_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
584 UInt ecu));
Dpub_tool_execontext.h109 static inline Bool VG_(is_plausible_ECU)( UInt ecu ) { in VG_()
110 return (ecu > 0) && ((ecu & 3) == 0); in VG_()
/external/valgrind/memcheck/
Dmc_malloc_wrappers.c372 UInt ecu = VG_(get_ECU_from_ExeContext)(MC_(allocated_at)(mc)); in MC_() local
373 tl_assert(VG_(is_plausible_ECU)(ecu)); in MC_()
374 MC_(make_mem_undefined_w_otag)( p, szB, ecu | MC_OKIND_HEAP ); in MC_()
577 UInt ecu; in MC_() local
586 ecu = VG_(get_ECU_from_ExeContext)(MC_(allocated_at)(new_mc)); in MC_()
587 tl_assert(VG_(is_plausible_ECU)(ecu)); in MC_()
590 ecu | MC_OKIND_HEAP ); in MC_()
658 UInt ecu = VG_(get_ECU_from_ExeContext)(ec); in MC_() local
660 ecu | MC_OKIND_HEAP ); in MC_()
Dmc_main.c1815 UInt ecu; in make_mem_undefined_w_tid_and_okind() local
1822 ecu = VG_(get_ECU_from_ExeContext)(here); in make_mem_undefined_w_tid_and_okind()
1823 tl_assert(VG_(is_plausible_ECU)(ecu)); in make_mem_undefined_w_tid_and_okind()
1824 MC_(make_mem_undefined_w_otag) ( a, len, ecu | okind ); in make_mem_undefined_w_tid_and_okind()
2787 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
2789 UInt otag = ecu | MC_OKIND_STACK; in mc_new_mem_stack_4_w_ECU()
2823 static void VG_REGPARM(2) mc_new_mem_stack_8_w_ECU(Addr new_SP, UInt ecu) in mc_new_mem_stack_8_w_ECU() argument
2825 UInt otag = ecu | MC_OKIND_STACK; in mc_new_mem_stack_8_w_ECU()
2868 static void VG_REGPARM(2) mc_new_mem_stack_12_w_ECU(Addr new_SP, UInt ecu) in mc_new_mem_stack_12_w_ECU() argument
2870 UInt otag = ecu | MC_OKIND_STACK; in mc_new_mem_stack_12_w_ECU()
[all …]
Dmc_errors.c1097 UInt ecu = otag & ~3; in update_origin() local
1099 if (VG_(is_plausible_ECU)(ecu)) { in update_origin()
1100 *origin_ec = VG_(get_ExeContext_from_ECU)( ecu ); in update_origin()