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

/external/valgrind/main/include/
H A Dpub_tool_execontext.h106 static inline Bool VG_(is_plausible_ECU)( UInt ecu ) {
107 return (ecu > 0) && ((ecu & 3) == 0);
H A Dpub_tool_tooliface.h541 arrange to pass, as the ecu argument, a 32-bit int which uniquely
548 void VG_(track_new_mem_stack_4_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
549 void VG_(track_new_mem_stack_8_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
550 void VG_(track_new_mem_stack_12_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
551 void VG_(track_new_mem_stack_16_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
552 void VG_(track_new_mem_stack_32_w_ECU) (VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
553 void VG_(track_new_mem_stack_112_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
554 void VG_(track_new_mem_stack_128_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
555 void VG_(track_new_mem_stack_144_w_ECU)(VG_REGPARM(2) void(*f)(Addr new_ESP, UInt ecu));
556 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 Dm_execontext.c83 UInt ecu; member in struct:_ExeContext
406 new_ec->ecu = ec_next_ecu;
448 vg_assert(VG_(is_plausible_ECU)(e->ecu));
449 return e->ecu;
457 ExeContext* VG_(get_ExeContext_from_ECU)( UInt ecu )
461 vg_assert(VG_(is_plausible_ECU)(ecu));
465 if (ec->ecu == ecu)
H A Dm_stacks.c276 void VG_(unknown_SP_update)( Addr old_SP, Addr new_SP, UInt ecu )
318 VG_TRACK( new_mem_stack_w_ECU, new_SP, -delta, ecu );
H A Dm_translate.c201 UInt ecu; local
205 ecu = VG_(get_ECU_from_ExeContext)( ec );
206 vg_assert(VG_(is_plausible_ECU)(ecu));
207 /* This is always safe to do, since ecu is only 32 bits, and
209 return mkIRExpr_HWord( (HWord)ecu );
/external/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c226 UInt ecu = VG_(get_ECU_from_ExeContext)(ec); local
227 tl_assert(VG_(is_plausible_ECU)(ecu));
228 MC_(make_mem_undefined_w_otag)( p, szB, ecu | MC_OKIND_HEAP );
425 UInt ecu; local
430 ecu = VG_(get_ECU_from_ExeContext)(ec);
431 tl_assert(VG_(is_plausible_ECU)(ecu));
438 ecu | MC_OKIND_HEAP );
H A Dmc_main.c1592 UInt ecu; local
1599 ecu = VG_(get_ECU_from_ExeContext)(here);
1600 tl_assert(VG_(is_plausible_ECU)(ecu));
1601 MC_(make_mem_undefined_w_otag) ( a, len, ecu | okind );
2554 static void VG_REGPARM(2) mc_new_mem_stack_4_w_ECU(Addr new_SP, UInt ecu) argument
2556 UInt otag = ecu | MC_OKIND_STACK;
2590 static void VG_REGPARM(2) mc_new_mem_stack_8_w_ECU(Addr new_SP, UInt ecu) argument
2592 UInt otag = ecu | MC_OKIND_STACK;
2635 static void VG_REGPARM(2) mc_new_mem_stack_12_w_ECU(Addr new_SP, UInt ecu) argument
2637 UInt otag = ecu | MC_OKIND_STAC
2695 mc_new_mem_stack_16_w_ECU(Addr new_SP, UInt ecu) argument
2754 mc_new_mem_stack_32_w_ECU(Addr new_SP, UInt ecu) argument
2826 mc_new_mem_stack_112_w_ECU(Addr new_SP, UInt ecu) argument
2901 mc_new_mem_stack_128_w_ECU(Addr new_SP, UInt ecu) argument
2982 mc_new_mem_stack_144_w_ECU(Addr new_SP, UInt ecu) argument
3069 mc_new_mem_stack_160_w_ECU(Addr new_SP, UInt ecu) argument
3250 UInt ecu; local
3298 UInt ecu = convert_nia_to_ecu ( nia ); local
[all...]
H A Dmc_errors.c1215 UInt ecu = otag & ~3; local
1217 if (VG_(is_plausible_ECU)(ecu)) {
1218 *origin_ec = VG_(get_ExeContext_from_ECU)( ecu );

Completed in 106 milliseconds