Searched refs:Addr (Results 1 - 25 of 467) sorted by relevance

1234567891011>>

/external/valgrind/coregrind/
H A Dpub_core_stacktrace.h55 /*OUT*/Addr* ips, UInt n_ips,
56 /*OUT*/Addr* sps, /*OUT*/Addr* fps,
58 Addr fp_max_orig );
H A Dpub_core_stacks.h50 extern UWord VG_(register_stack) ( Addr start, Addr end );
52 extern void VG_(change_stack) ( UWord id, Addr start, Addr end );
53 extern void VG_(stack_limits) ( Addr SP, Addr *start, Addr *end );
57 ( Addr old_SP, Addr new_SP, UInt ecu );
59 void VG_(unknown_SP_update) ( Addr old_S
[all...]
H A Dpub_core_initimg.h35 #include "pub_core_basics.h" // Addr
76 Addr sp_at_startup;
77 Addr clstack_end; // Highest stack addressable byte
86 Addr initial_client_SP;
88 Addr initial_client_IP;
89 Addr initial_client_TOC;
100 Addr sp_at_startup;
101 Addr clstack_end; // highest stack addressable byte
105 Addr entry; /* &_start */
106 Addr init_i
[all...]
H A Dpub_core_debuginfo.h66 extern ULong VG_(di_notify_mmap)( Addr a, Bool allow_SkFileV, Int use_fd );
68 extern void VG_(di_notify_munmap)( Addr a, SizeT len );
70 extern void VG_(di_notify_mprotect)( Addr a, SizeT len, UInt prot );
73 extern void VG_(di_notify_pdb_debuginfo)( Int fd, Addr avma,
78 extern void VG_(di_notify_vm_protect)( Addr a, SizeT len, UInt prot );
89 Bool VG_(get_fnname_raw) ( Addr a, const HChar** buf );
95 Bool VG_(get_fnname_no_cxx_demangle) ( Addr a, const HChar** buf,
102 Bool VG_(get_inst_offset_in_function)( Addr a, /*OUT*/PtrdiffT* offset );
111 struct { Addr xip; Addr xs
[all...]
H A Dpub_core_ume.h51 Addr exe_base; // INOUT: lowest (allowed) address of exe
52 Addr exe_end; // INOUT: highest (allowed) address
55 Addr phdr; // OUT: address phdr was mapped at
60 Addr stack_start; // OUT: address of start of stack segment (hot)
61 Addr stack_end; // OUT: address of end of stack segment (cold)
62 Addr text; // OUT: address of executable's Mach header
68 Addr init_thrptr; // OUT: architecture-specific user per-thread location
73 Addr entry; // OUT: entrypoint in main executable
74 Addr init_ip; // OUT: address of first instruction to execute
75 Addr brkbas
[all...]
H A Dpub_core_redir.h58 #include "pub_core_basics.h" // Addr
76 extern void VG_(redir_add_ifunc_target)( Addr old_from, Addr new_from );
87 extern Addr VG_(redir_do_lookup) ( Addr orig, Bool* isWrap );
127 //extern void VG_(wrap_function)(Addr eip, const FuncWrapper *wrapper);
128 //extern const FuncWrapper *VG_(is_wrapped)(Addr eip);
129 //extern Bool VG_(is_wrapper_return)(Addr eip);
H A Dpub_core_transtab.h48 Addr guest;
49 Addr host;
56 #define TRANSTAB_BOGUS_GUEST_ADDR ((Addr)1)
87 Addr entry,
88 Addr code,
107 extern Bool VG_(search_transtab) ( /*OUT*/Addr* res_hcode,
110 Addr guest_addr,
113 extern void VG_(discard_translations) ( Addr start, ULong range,
125 Addr entry,
126 Addr cod
[all...]
H A Dpub_core_trampoline.h58 extern Addr VG_(trampoline_stuff_start);
59 extern Addr VG_(trampoline_stuff_end);
62 extern Addr VG_(x86_linux_SUBST_FOR_sigreturn);
63 extern Addr VG_(x86_linux_SUBST_FOR_rt_sigreturn);
69 extern Addr VG_(amd64_linux_SUBST_FOR_rt_sigreturn);
70 extern Addr VG_(amd64_linux_REDIR_FOR_vgettimeofday);
71 extern Addr VG_(amd64_linux_REDIR_FOR_vtime);
72 extern Addr VG_(amd64_linux_REDIR_FOR_vgetcpu);
77 extern Addr VG_(ppc32_linux_SUBST_FOR_sigreturn);
78 extern Addr VG
[all...]
H A Dpub_core_tooliface.h136 void (*tool_discard_superblock_info)(Addr, VexGuestExtents);
158 void (*tool_info_location)(Addr a);
180 void (*track_new_mem_startup) (Addr, SizeT, Bool, Bool, Bool, ULong);
181 void (*track_new_mem_stack_signal)(Addr, SizeT, ThreadId);
182 void (*track_new_mem_brk) (Addr, SizeT, ThreadId);
183 void (*track_new_mem_mmap) (Addr, SizeT, Bool, Bool, Bool, ULong);
185 void (*track_copy_mem_remap) (Addr src, Addr dst, SizeT);
186 void (*track_change_mem_mprotect) (Addr, SizeT, Bool, Bool, Bool);
187 void (*track_die_mem_stack_signal)(Addr, Size
[all...]
H A Dm_addrinfo.c51 static ThreadId find_tid_with_stack_containing (Addr a)
54 Addr start, end;
73 Addr stack_min, stack_max;
89 void VG_(describe_addr) ( Addr a, /*OUT*/AddrInfo* ai )
94 ai->Addr.Variable.descr1
97 ai->Addr.Variable.descr2
101 (void) VG_(get_data_description)( ai->Addr.Variable.descr1,
102 ai->Addr.Variable.descr2, a );
109 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr1, 0 ))) {
110 VG_(deleteXA)( ai->Addr
[all...]
/external/valgrind/drd/
H A Ddrd_cond.h30 #include "pub_tool_basics.h" /* Addr */
40 extern Addr DRD_(pthread_cond_initializer);
48 struct cond_info* DRD_(cond_get)(const Addr cond);
49 void DRD_(cond_pre_init)(const Addr cond);
50 void DRD_(cond_post_destroy)(const Addr cond, const Bool destroy_succeeded);
51 void DRD_(cond_pre_wait)(const Addr cond, const Addr mutex);
52 void DRD_(cond_post_wait)(const Addr cond);
53 void DRD_(cond_pre_signal)(const Addr cond);
54 void DRD_(cond_pre_broadcast)(const Addr con
[all...]
H A Ddrd_suppression.h14 void DRD_(start_suppression)(const Addr a1, const Addr a2,
16 void DRD_(finish_suppression)(const Addr a1, const Addr a2);
17 Bool DRD_(is_suppressed)(const Addr a1, const Addr a2);
18 Bool DRD_(is_any_suppressed)(const Addr a1, const Addr a2);
19 void DRD_(mark_hbvar)(const Addr a1);
20 Bool DRD_(range_contains_suppression_or_hbvar)(const Addr a
[all...]
H A Ddrd_cond_initializer.c7 Addr DRD_(pthread_cond_initializer) = (Addr)&pthread_cond_initializer;
H A Ddrd_hb.h30 #include "pub_tool_basics.h" /* Addr */
41 struct hb_info* DRD_(hb_get)(const Addr hb);
42 struct hb_info* DRD_(hb_get_or_allocate)(const Addr hb);
43 void DRD_(hb_init)(const Addr hb);
44 void DRD_(hb_destroy)(const Addr hb);
45 void DRD_(hb_happens_after)(const DrdThreadId tid, const Addr hb);
46 void DRD_(hb_happens_before)(const DrdThreadId tid, const Addr hb);
47 void DRD_(hb_happens_done)(const DrdThreadId tid, const Addr hb);
H A Ddrd_barrier.h34 #include "pub_tool_basics.h" // Addr
41 void DRD_(barrier_init)(const Addr barrier,
44 void DRD_(barrier_destroy)(const Addr barrier, const BarrierT barrier_type);
45 void DRD_(barrier_pre_wait)(const DrdThreadId tid, const Addr barrier,
47 void DRD_(barrier_post_wait)(const DrdThreadId tid, const Addr barrier,
50 void DRD_(barrier_stop_using_mem)(const Addr a1, const Addr a2);
H A Ddrd_malloc_wrappers.h33 typedef void (*StartUsingMem)(const Addr a1, const SizeT len, UInt ec_uniq);
34 typedef void (*StopUsingMem)(const Addr a1, const SizeT len);
39 void DRD_(malloclike_block)(const ThreadId tid, const Addr p, const SizeT size);
40 Bool DRD_(freelike_block)(const ThreadId tid, const Addr p, const Bool dealloc);
41 Bool DRD_(heap_addrinfo)(Addr const a,
42 Addr* const data,
H A Ddrd_semaphore.h33 #include "pub_tool_basics.h" // Addr
40 struct semaphore_info* DRD_(semaphore_init)(const Addr semaphore,
43 void DRD_(semaphore_destroy)(const Addr semaphore);
44 struct semaphore_info* DRD_(semaphore_open)(const Addr semaphore,
47 void DRD_(semaphore_close)(const Addr semaphore);
48 void DRD_(semaphore_pre_wait)(const Addr semaphore);
49 void DRD_(semaphore_post_wait)(const DrdThreadId tid, const Addr semaphore,
51 void DRD_(semaphore_pre_post)(const DrdThreadId tid, const Addr semaphore);
52 void DRD_(semaphore_post_post)(const DrdThreadId tid, const Addr semaphore,
H A Dpub_drd_bitmap.h37 #include "pub_tool_basics.h" /* Addr, SizeT */
62 Addr a1;
85 const Addr a1, const Addr a2,
88 const Addr a1, const Addr a2);
89 void DRD_(bm_access_load_1)(struct bitmap* const bm, const Addr a1);
90 void DRD_(bm_access_load_2)(struct bitmap* const bm, const Addr a1);
91 void DRD_(bm_access_load_4)(struct bitmap* const bm, const Addr a1);
92 void DRD_(bm_access_load_8)(struct bitmap* const bm, const Addr a
[all...]
H A Ddrd_error.h103 Addr addr; // Conflicting address in current thread.
110 Addr mutex;
117 Addr cond;
122 Addr cond;
123 Addr mutex;
129 Addr cond;
130 Addr mutex;
135 Addr cond;
136 Addr mutex1;
137 Addr mutex
[all...]
H A Ddrd_mutex.h31 #include "pub_tool_basics.h" // Addr
39 struct mutex_info* DRD_(mutex_init)(const Addr mutex, const MutexT mutex_type);
40 void DRD_(mutex_ignore_ordering)(const Addr mutex);
41 void DRD_(mutex_post_destroy)(const Addr mutex);
42 void DRD_(not_a_mutex)(const Addr mutex);
43 struct mutex_info* DRD_(mutex_get)(const Addr mutex);
44 void DRD_(mutex_pre_lock)(const Addr mutex, const MutexT mutex_type,
46 void DRD_(mutex_post_lock)(const Addr mutex, const Bool took_lock,
48 void DRD_(mutex_unlock)(const Addr mutex, const MutexT mutex_type);
49 void DRD_(spinlock_init_or_unlock)(const Addr spinloc
[all...]
/external/elfutils/libcpu/
H A Dmemory-access.h53 # define read_2ubyte_unaligned(Addr) \
55 ? bswap_16 (*((const uint16_t *) (Addr))) \
56 : *((const uint16_t *) (Addr)))
57 # define read_2sbyte_unaligned(Addr) \
59 ? (int16_t) bswap_16 (*((const int16_t *) (Addr))) \
60 : *((const int16_t *) (Addr)))
62 # define read_4ubyte_unaligned_noncvt(Addr) \
63 *((const uint32_t *) (Addr))
64 # define read_4ubyte_unaligned(Addr) \
66 ? bswap_32 (*((const uint32_t *) (Addr))) \
[all...]
/external/elfutils/libdw/
H A Dmemory-access.h131 # define read_2ubyte_unaligned(Dbg, Addr) \
133 ? bswap_16 (*((const uint16_t *) (Addr))) \
134 : *((const uint16_t *) (Addr)))
135 # define read_2sbyte_unaligned(Dbg, Addr) \
137 ? (int16_t) bswap_16 (*((const int16_t *) (Addr))) \
138 : *((const int16_t *) (Addr)))
140 # define read_4ubyte_unaligned_noncvt(Addr) \
141 *((const uint32_t *) (Addr))
142 # define read_4ubyte_unaligned(Dbg, Addr) \
144 ? bswap_32 (*((const uint32_t *) (Addr))) \
[all...]
/external/valgrind/helgrind/
H A Dhg_addrdescr.h40 extern void HG_(describe_addr) ( Addr a, /*OUT*/AddrInfo* ai );
45 extern Bool HG_(get_and_pp_addrdescr) (Addr a);
57 /*OUT*/Addr* payload,
59 Addr data_addr );
/external/valgrind/include/
H A Dpub_tool_aspacehl.h42 extern Addr* VG_(get_segment_starts)( UInt kind_mask, /*OUT*/Int* n_acquired );
H A Dpub_tool_transtab.h36 void VG_(discard_translations_safely) ( Addr start, SizeT len,

Completed in 3312 milliseconds

1234567891011>>