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

/external/valgrind/main/include/
H A Dpub_tool_execontext.h108 static inline Bool VG_(is_plausible_ECU)( UInt ecu ) {
109 return (ecu > 0) && ((ecu & 3) == 0);
H A Dpub_tool_tooliface.h569 arrange to pass, as the ecu argument, a 32-bit int which uniquely
576 void VG_(track_new_mem_stack_4_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
577 void VG_(track_new_mem_stack_8_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
578 void VG_(track_new_mem_stack_12_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
579 void VG_(track_new_mem_stack_16_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
580 void VG_(track_new_mem_stack_32_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
581 void VG_(track_new_mem_stack_112_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
582 void VG_(track_new_mem_stack_128_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
583 void VG_(track_new_mem_stack_144_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
584 void VG_(track_new_mem_stack_160_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
[all...]
/external/valgrind/main/coregrind/
H A Dpub_core_stacks.h48 ( Addr old_SP, Addr new_SP, UInt ecu );
H A Dm_execontext.c85 UInt ecu; member in struct:_ExeContext
151 // null execontext must be the first one created and get ecu 4.
152 vg_assert(null_ExeContext->ecu == 4);
170 VG_(message)(Vg_DebugMsg, " exectx: stacktrace ecu %u n_ips %u\n",
171 ec->ecu, ec->n_ips);
431 new_ec->ecu = ec_next_ecu;
474 vg_assert(VG_(is_plausible_ECU)(e->ecu));
475 return e->ecu;
483 ExeContext* VG_(get_ExeContext_from_ECU)( UInt ecu )
487 vg_assert(VG_(is_plausible_ECU)(ecu));
[all...]
H A Dm_stacks.c355 void VG_(unknown_SP_update_w_ECU)( Addr old_SP, Addr new_SP, UInt ecu ) {
360 VG_TRACK( new_mem_stack_w_ECU, new_SP, -delta, ecu );
H A Dm_translate.c205 UInt ecu; local
209 ecu = VG_(get_ECU_from_ExeContext)( ec );
210 vg_assert(VG_(is_plausible_ECU)(ecu));
211 /* This is always safe to do, since ecu is only 32 bits, and
213 return mkIRExpr_HWord( (HWord)ecu );
/external/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c399 UInt ecu = VG_(get_ECU_from_ExeContext)(MC_(allocated_at)(mc)); local
400 tl_assert(VG_(is_plausible_ECU)(ecu));
401 MC_(make_mem_undefined_w_otag)( p, szB, ecu | MC_OKIND_HEAP );
599 UInt ecu; local
606 // We have to do that after VG_(HT_add_node) to ensure the ecu
608 ecu = VG_(get_ECU_from_ExeContext)(MC_(allocated_at)(new_mc));
609 tl_assert(VG_(is_plausible_ECU)(ecu));
612 ecu | MC_OKIND_HEAP );
680 UInt ecu = VG_(get_ECU_from_ExeContext)(ec); local
682 ecu | MC_OKIND_HEA
[all...]
H A Dmc_main.c1811 UInt ecu; local
1818 ecu = VG_(get_ECU_from_ExeContext)(here);
1819 tl_assert(VG_(is_plausible_ECU)(ecu));
1820 MC_(make_mem_undefined_w_otag) ( a, len, ecu | okind );
2779 static void VG_REGPARM(2) mc_new_mem_stack_4_w_ECU(Addr new_SP, UInt ecu) argument
2781 UInt otag = ecu | MC_OKIND_STACK;
2815 static void VG_REGPARM(2) mc_new_mem_stack_8_w_ECU(Addr new_SP, UInt ecu) argument
2817 UInt otag = ecu | MC_OKIND_STACK;
2860 static void VG_REGPARM(2) mc_new_mem_stack_12_w_ECU(Addr new_SP, UInt ecu) argument
2862 UInt otag = ecu | MC_OKIND_STAC
2920 mc_new_mem_stack_16_w_ECU(Addr new_SP, UInt ecu) argument
2979 mc_new_mem_stack_32_w_ECU(Addr new_SP, UInt ecu) argument
3051 mc_new_mem_stack_112_w_ECU(Addr new_SP, UInt ecu) argument
3126 mc_new_mem_stack_128_w_ECU(Addr new_SP, UInt ecu) argument
3207 mc_new_mem_stack_144_w_ECU(Addr new_SP, UInt ecu) argument
3294 mc_new_mem_stack_160_w_ECU(Addr new_SP, UInt ecu) argument
3475 UInt ecu; local
3523 UInt ecu = convert_nia_to_ecu ( nia ); local
5695 UInt ecu; local
[all...]
H A Dmc_errors.c1017 UInt ecu = otag & ~3; local
1019 if (VG_(is_plausible_ECU)(ecu)) {
1020 *origin_ec = VG_(get_ExeContext_from_ECU)( ecu );

Completed in 160 milliseconds