/external/valgrind/main/include/ |
pub_tool_execontext.h | 96 // Find the ExeContext that has the given ECU, if any. 103 // Is this a plausible-looking ECU ? Catches some obvious stupid 104 // cases, but does not guarantee that the ECU is really valid, that 106 static inline Bool VG_(is_plausible_ECU)( UInt ecu ) { 107 return (ecu > 0) && ((ecu & 3) == 0);
|
pub_tool_tooliface.h | 538 For the _new functions, a tool may specify with with-ECU 539 (ExeContext Unique) or without-ECU version for each size, but not 540 both. If the with-ECU version is supplied, then the core will 541 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)); [all...] |
/external/valgrind/main/coregrind/ |
m_execontext.c | 83 UInt ecu; member in struct:_ExeContext 97 /* ECU serial number */ 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)
|
m_stacks.c | 276 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 );
|
m_translate.c | 201 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 ); [all...] |
/external/valgrind/main/memcheck/ |
mc_malloc_wrappers.c | 226 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 );
|
mc_main.c | 1592 UInt ecu; local 3250 UInt ecu; local 3298 UInt ecu = convert_nia_to_ecu ( nia ); local [all...] |
mc_errors.c | 1215 UInt ecu = otag & ~3; local [all...] |