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

/external/valgrind/include/
H A Dpub_tool_execontext.h109 static inline Bool VG_(is_plausible_ECU)( UInt ecu ) {
110 return (ecu > 0) && ((ecu & 3) == 0);
H A Dpub_tool_tooliface.h567 arrange to pass, as the ecu argument, a 32-bit int which uniquely
574 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));
[all...]
/external/valgrind/coregrind/
H A Dpub_core_stacks.h57 ( Addr old_SP, Addr new_SP, UInt ecu );
H A Dm_execontext.c83 UInt ecu; member in struct:_ExeContext
149 // null execontext must be the first one created and get ecu 4.
150 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);
436 new_ec->ecu = ec_next_ecu;
479 vg_assert(VG_(is_plausible_ECU)(e->ecu));
480 return e->ecu;
488 ExeContext* VG_(get_ExeContext_from_ECU)( UInt ecu )
492 vg_assert(VG_(is_plausible_ECU)(ecu));
[all...]
H A Dm_stacks.c433 void VG_(unknown_SP_update_w_ECU)( Addr old_SP, Addr new_SP, UInt ecu ) {
438 VG_TRACK( new_mem_stack_w_ECU, new_SP, -delta, ecu );
H A Dm_translate.c214 UInt ecu; local
218 ecu = VG_(get_ECU_from_ExeContext)( ec );
219 vg_assert(VG_(is_plausible_ECU)(ecu));
220 /* This is always safe to do, since ecu is only 32 bits, and
222 return mkIRExpr_HWord( (HWord)ecu );
/external/valgrind/memcheck/
H A Dmc_malloc_wrappers.c372 UInt ecu = VG_(get_ECU_from_ExeContext)(MC_(allocated_at)(mc)); local
373 tl_assert(VG_(is_plausible_ECU)(ecu));
374 MC_(make_mem_undefined_w_otag)( p, szB, ecu | MC_OKIND_HEAP );
577 UInt ecu; local
584 // We have to do that after VG_(HT_add_node) to ensure the ecu
586 ecu = VG_(get_ECU_from_ExeContext)(MC_(allocated_at)(new_mc));
587 tl_assert(VG_(is_plausible_ECU)(ecu));
590 ecu | MC_OKIND_HEAP );
658 UInt ecu = VG_(get_ECU_from_ExeContext)(ec); local
660 ecu | MC_OKIND_HEA
[all...]
H A Dmc_main.c1807 UInt ecu; local
1814 ecu = VG_(get_ECU_from_ExeContext)(here);
1815 tl_assert(VG_(is_plausible_ECU)(ecu));
1816 MC_(make_mem_undefined_w_otag) ( a, len, ecu | okind );
2773 static void VG_REGPARM(2) mc_new_mem_stack_4_w_ECU(Addr new_SP, UInt ecu) argument
2775 UInt otag = ecu | MC_OKIND_STACK;
2809 static void VG_REGPARM(2) mc_new_mem_stack_8_w_ECU(Addr new_SP, UInt ecu) argument
2811 UInt otag = ecu | MC_OKIND_STACK;
2854 static void VG_REGPARM(2) mc_new_mem_stack_12_w_ECU(Addr new_SP, UInt ecu) argument
2856 UInt otag = ecu | MC_OKIND_STAC
2914 mc_new_mem_stack_16_w_ECU(Addr new_SP, UInt ecu) argument
2973 mc_new_mem_stack_32_w_ECU(Addr new_SP, UInt ecu) argument
3045 mc_new_mem_stack_112_w_ECU(Addr new_SP, UInt ecu) argument
3120 mc_new_mem_stack_128_w_ECU(Addr new_SP, UInt ecu) argument
3201 mc_new_mem_stack_144_w_ECU(Addr new_SP, UInt ecu) argument
3288 mc_new_mem_stack_160_w_ECU(Addr new_SP, UInt ecu) argument
3469 UInt ecu; local
3517 UInt ecu = convert_nia_to_ecu ( nia ); local
5713 UInt ecu; local
[all...]
H A Dmc_errors.c1097 UInt ecu = otag & ~3; local
1099 if (VG_(is_plausible_ECU)(ecu)) {
1100 *origin_ec = VG_(get_ExeContext_from_ECU)( ecu );

Completed in 371 milliseconds