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

1234567891011>>

/external/valgrind/main/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.h41 extern UWord VG_(register_stack) ( Addr start, Addr end );
43 extern void VG_(change_stack) ( UWord id, Addr start, Addr end );
44 extern void VG_(stack_limits) ( Addr SP, Addr *start, Addr *end );
48 ( Addr old_SP, Addr new_SP, UInt ecu );
50 void VG_(unknown_SP_update) ( Addr old_S
[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, HChar* buf, Int nbuf );
94 Bool VG_(get_fnname_no_cxx_demangle) ( Addr a, HChar* buf, Int nbuf );
100 Bool VG_(get_inst_offset_in_function)( Addr a, /*OUT*/PtrdiffT* offset );
109 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
67 Addr entry; // OUT: entrypoint in main executable
68 Addr init_ip; // OUT: address of first instruction to execute
69 Addr brkbase; // OUT: base address of brk segment
70 Addr init_to
[all...]
H A Dpub_core_initimg.h35 #include "pub_core_basics.h" // Addr
74 Addr sp_at_startup;
75 Addr clstack_top;
84 Addr initial_client_SP;
86 Addr initial_client_IP;
87 Addr initial_client_TOC;
98 Addr sp_at_startup;
99 Addr clstack_top;
103 Addr entry; /* &_start */
104 Addr init_i
[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_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 Dm_addrinfo.c44 void VG_(describe_addr) ( Addr a, /*OUT*/AddrInfo* ai )
47 Addr stack_min, stack_max;
51 ai->Addr.Variable.descr1
54 ai->Addr.Variable.descr2
58 (void) VG_(get_data_description)( ai->Addr.Variable.descr1,
59 ai->Addr.Variable.descr2, a );
66 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr1, 0 ))) {
67 VG_(deleteXA)( ai->Addr.Variable.descr1 );
68 ai->Addr.Variable.descr1 = NULL;
70 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr
[all...]
H A Dpub_core_clientstate.h45 extern Addr VG_(clstk_base); // client stack range
46 extern Addr VG_(clstk_end);
53 extern Addr VG_(brk_base); // start of brk
54 extern Addr VG_(brk_limit); // current brk
87 extern Addr VG_(client___libc_freeres_wrapper);
93 extern Addr VG_(client__dl_sysinfo_int80);
H A Dpub_core_tooliface.h158 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, SizeT);
188 void (*track_die_mem_brk) (Addr, Size
[all...]
/external/valgrind/main/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,
/external/elfutils/0.153/libcpu/
H A Dmemory-access.h50 # define read_2ubyte_unaligned(Addr) \
52 ? bswap_16 (*((const uint16_t *) (Addr))) \
53 : *((const uint16_t *) (Addr)))
54 # define read_2sbyte_unaligned(Addr) \
56 ? (int16_t) bswap_16 (*((const int16_t *) (Addr))) \
57 : *((const int16_t *) (Addr)))
59 # define read_4ubyte_unaligned_noncvt(Addr) \
60 *((const uint32_t *) (Addr))
61 # define read_4ubyte_unaligned(Addr) \
63 ? bswap_32 (*((const uint32_t *) (Addr))) \
[all...]
/external/llvm/lib/Support/
H A DStringRefMemoryObject.cpp14 int StringRefMemoryObject::readByte(uint64_t Addr, uint8_t *Byte) const { argument
15 if (Addr >= Base + getExtent() || Addr < Base)
17 *Byte = Bytes[Addr - Base];
21 int StringRefMemoryObject::readBytes(uint64_t Addr, argument
24 uint64_t Offset = Addr - Base;
25 if (Addr >= Base + getExtent() || Offset + Size > getExtent() || Addr < Base)
/external/valgrind/main/include/
H A Dpub_tool_aspacehl.h40 extern Addr* VG_(get_segment_starts) ( /*OUT*/Int* n_acquired );
H A Dpub_tool_signals.h34 #include "pub_tool_basics.h" // Addr
43 extern void VG_(set_fault_catcher)(void (*catcher)(Int sig, Addr addr));
/external/valgrind/main/helgrind/
H A Dhg_addrdescr.h40 extern void HG_(describe_addr) ( Addr a, /*OUT*/AddrInfo* ai );
44 extern void HG_(pp_addrdescr) (Bool xml, const HChar* what, Addr addr,
51 extern Bool HG_(get_and_pp_addrdescr) (Addr a);
62 /*OUT*/Addr* payload,
64 Addr data_addr );
/external/chromium_org/net/disk_cache/blockfile/
H A Daddr_unittest.cc12 Addr addr1(0);
20 Addr addr2(BLOCK_1K, 3, 5, 25);
29 Addr addr3(BLOCK_4K, 0x44, 0x41508, 0x952536);
39 EXPECT_TRUE(Addr(0).SanityCheckV2());
40 EXPECT_TRUE(Addr(0x80001000).SanityCheckV2());
41 EXPECT_TRUE(Addr(0xC3FFFFFF).SanityCheckV2());
42 EXPECT_TRUE(Addr(0xC0FFFFFF).SanityCheckV2());
43 EXPECT_TRUE(Addr(0xD0001000).SanityCheckV3());
46 EXPECT_FALSE(Addr(0x20).SanityCheckV2());
47 EXPECT_FALSE(Addr(
[all...]
H A Daddr.cc11 int Addr::start_block() const {
16 int Addr::num_blocks() const {
21 bool Addr::SetFileNumber(int file_number) {
29 bool Addr::SanityCheckV2() const {
42 bool Addr::SanityCheckV3() const {
56 bool Addr::SanityCheckForEntryV2() const {
66 bool Addr::SanityCheckForEntryV3() const {
82 bool Addr::SanityCheckForRankings() const {
/external/elfutils/0.153/libdw/
H A Dmemory-access.h151 # define read_2ubyte_unaligned(Dbg, Addr) \
153 ? bswap_16 (*((const uint16_t *) (Addr))) \
154 : *((const uint16_t *) (Addr)))
155 # define read_2sbyte_unaligned(Dbg, Addr) \
157 ? (int16_t) bswap_16 (*((const int16_t *) (Addr))) \
158 : *((const int16_t *) (Addr)))
160 # define read_4ubyte_unaligned_noncvt(Addr) \
161 *((const uint32_t *) (Addr))
162 # define read_4ubyte_unaligned(Dbg, Addr) \
164 ? bswap_32 (*((const uint32_t *) (Addr))) \
[all...]

Completed in 250 milliseconds

1234567891011>>