HomeSort by relevance Sort by last modified time
    Searched refs:ecu (Results 1 - 8 of 8) sorted by null

  /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 84 UInt ecu; member in struct:_ExeContext
98 /* ECU serial number */
404 new_ec->ecu = ec_next_ecu;
447 vg_assert(VG_(is_plausible_ECU)(e->ecu));
448 return e->ecu;
456 ExeContext* VG_(get_ExeContext_from_ECU)( UInt ecu )
460 vg_assert(VG_(is_plausible_ECU)(ecu));
464 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 203 UInt ecu; local
207 ecu = VG_(get_ECU_from_ExeContext)( ec );
208 vg_assert(VG_(is_plausible_ECU)(ecu));
209 /* This is always safe to do, since ecu is only 32 bits, and
211 return mkIRExpr_HWord( (HWord)ecu );
    [all...]
  /external/valgrind/main/memcheck/
mc_malloc_wrappers.c 288 UInt ecu = VG_(get_ECU_from_ExeContext)(ec); local
289 tl_assert(VG_(is_plausible_ECU)(ecu));
290 MC_(make_mem_undefined_w_otag)( p, szB, ecu | MC_OKIND_HEAP );
493 UInt ecu; local
498 ecu = VG_(get_ECU_from_ExeContext)(ec);
499 tl_assert(VG_(is_plausible_ECU)(ecu));
506 ecu | MC_OKIND_HEAP );
581 UInt ecu = VG_(get_ECU_from_ExeContext)(ec); local
583 ecu | MC_OKIND_HEAP );
mc_main.c 1612 UInt ecu; local
3270 UInt ecu; local
3318 UInt ecu = convert_nia_to_ecu ( nia ); local
5261 UInt ecu; local
    [all...]
mc_errors.c 1241 UInt ecu = otag & ~3; local
    [all...]

Completed in 730 milliseconds