| /external/llvm/lib/ExecutionEngine/MCJIT/ |
| MCJIT.cpp | 298 uint64_t Addr = getExistingSymbolAddress(Name); 299 if (Addr) 300 return Addr; 320 Addr = getExistingSymbolAddress(Name); 321 if (Addr) 322 return Addr; 360 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure); 361 addGlobalMapping(F, Addr); 362 return Addr;
|
| /external/valgrind/main/coregrind/m_debuginfo/ |
| priv_d3basics.h | 41 #include "pub_core_basics.h" // Addr 588 (Addr aMin; Addr aMax; UShort nbytes; ..bytes..; UChar isEnd) 623 struct { Addr ip; Addr sp; Addr fp; } 678 Addr ML_(get_CFA) ( Addr ip, Addr sp, Addr fp [all...] |
| /external/valgrind/main/drd/ |
| drd_load_store.c | 93 void DRD_(trace_mem_access)(const Addr addr, const SizeT size, 98 if (DRD_(is_any_traced)(addr, addr + size)) 105 " vc %s)", addr, size, stored_value_lo, 114 " / vc %s)", addr, size, sv, sv, 122 addr, size, DRD_(thread_get_running_tid)(), vc); 130 static VG_REGPARM(2) void drd_trace_mem_load(const Addr addr, const SizeT size) 132 return DRD_(trace_mem_access)(addr, size, eLoad, 0, 0) 653 IRExpr* addr = sg->addr; local [all...] |
| drd_clientreq.c | 101 .addr = 0, 111 DRD_(malloclike_block)(vg_tid, arg[1]/*addr*/, arg[2]/*size*/); 115 if (!DRD_(freelike_block)(vg_tid, arg[1]/*addr*/, False)) 119 .addr = 0, 127 DRD_(malloclike_block)(vg_tid, arg[1]/*addr*/, arg[3]/*newSize*/); 131 if (arg[1] && ! DRD_(freelike_block)(vg_tid, arg[1]/*addr*/, False)) 135 .addr = 0, 249 DRD_(pthread_cond_initializer) = (Addr)arg[1]; 411 const Addr cond = arg[1]; 412 const Addr mutex = arg[2] [all...] |
| /external/clang/lib/CodeGen/ |
| CGValue.h | 329 /// \param Addr - The base address of the bit-field sequence this 333 static LValue MakeBitfield(llvm::Value *Addr, 338 R.V = Addr; 363 llvm::Value *Addr; 422 static AggValueSlot forAddr(llvm::Value *addr, CharUnits align, 429 AV.Addr = addr; 474 return Addr; 478 return Addr == nullptr;
|
| /external/llvm/lib/CodeGen/ |
| AtomicExpandLoadLinkedPass.cpp | 136 Value *Addr = AI->getPointerOperand(); 141 // Given: atomicrmw some_op iN* %addr, iN %incr ordering 147 // %loaded = @load.linked(%addr) 149 // %stored = @store_conditional(%new, %addr) 172 TM->getTargetLowering()->emitLoadLinked(Builder, Addr, MemOpOrder); 219 Builder, NewVal, Addr, MemOpOrder); 236 Value *Addr = CI->getPointerOperand(); 241 // Given: cmpxchg some_op iN* %addr, iN %desired, iN %new success_ord fail_ord 247 // %loaded = @load.linked(%addr) 252 // %stored = @store_conditional(%new, %addr) [all...] |
| /external/valgrind/main/coregrind/ |
| m_mallocfree.c | 226 Addr perm_malloc_current; // first byte free in perm_malloc sb. 227 Addr perm_malloc_limit; // maximum usable byte in perm_malloc sb. 391 // Given the addr of a block, return the addr of its payload, and vice versa. 398 // Given the addr of a block's payload, return the addr of the block itself. 776 Addr a = (Addr)p; 826 VG_(am_set_segment_isCH_if_SkAnonC)( VG_(am_find_nsegment)( (Addr)sb ) ); 840 vg_assert(0 == (Addr)sb % VG_MIN_MALLOC_SZB) [all...] |
| pub_core_mallocfree.h | 136 const HChar* name; // arena name, !NULL if Addr a points in an arena. 141 /* If Addr a points in one of the allocation arenas, describes Addr a in *aai 145 extern void VG_(describe_arena_addr) ( Addr a, /*OUT*/AddrArenaInfo* aai );
|
| vg_preloaded.c | 79 Addr result = 0;
|
| m_signals.c | 404 static inline Addr VG_UCONTEXT_INSTR_PTR( void* ucV ) { 410 static inline Addr VG_UCONTEXT_STACK_PTR( void* ucV ) { 462 static inline Addr VG_UCONTEXT_INSTR_PTR( void* ucV ) { 468 static inline Addr VG_UCONTEXT_STACK_PTR( void* ucV ) { 518 # define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.regs.psw.addr) 526 { (srP)->r_pc = (ULong)((uc)->uc_mcontext.regs.psw.addr); \ 1715 Addr addr = (Addr)info->VKI_SIGINFO_si_addr; local [all...] |
| /external/chromium_org/net/disk_cache/blockfile/ |
| backend_impl_v3.cc | 124 Addr* block_address) { 138 Addr entry_addr = entry->entry()->address(); 156 parent_entry->SetNextAddress(Addr(child)); 165 void BackendImplV3::OnEntryDestroyBegin(Addr address) { 178 EntryImplV3* BackendImplV3::GetOpenEntry(Addr address) const { 443 EntryImpl* cache_entry = MatchEntry(key, hash, false, Addr(), &error); 487 Addr entry_address(data_->table[hash & mask_]); 492 EntryImpl* old_entry = MatchEntry(key, hash, false, Addr(), &error); 496 EntryImpl* parent_entry = MatchEntry(key, hash, true, Addr(), &error); 527 Addr node_address(0) [all...] |
| backend_worker_v3.cc | 277 base::FilePath BackendImpl::GetFileName(Addr address) const { 422 Addr address(data_->header.stats); 426 FileType file_type = Addr::RequiredFileType(size); 428 int num_blocks = Addr::RequiredBlocks(size, file_type);
|
| block_bitmaps_v3_unittest.cc | 5 #include "net/disk_cache/blockfile/addr.h" 32 disk_cache::Addr address[kSize];
|
| /external/valgrind/main/drd/tests/ |
| unit_vc.c | 48 Bool DRD_(is_suppressed)(const Addr a1, const Addr a2)
|
| /frameworks/compile/mclinker/include/mcld/ADT/ |
| SizeTraits.h | 49 typedef llvm::ELF::Elf32_Addr Addr; // Program address 68 typedef llvm::ELF::Elf64_Addr Addr;
|
| /external/llvm/include/llvm/ExecutionEngine/ |
| ExecutionEngine.h | 335 void addGlobalMapping(const GlobalValue *GV, void *Addr); 346 /// address. This updates both maps as required. If "Addr" is null, the 349 void *updateGlobalMapping(const GlobalValue *GV, void *Addr); 419 const GlobalValue *getGlobalValueAtAddress(void *Addr); 428 void InitializeMemory(const Constant *Init, void *Addr);
|
| /external/valgrind/main/coregrind/m_gdbserver/ |
| valgrind-low-arm.c | 126 Addr thumb_pc (Addr pc) 148 Addr entrypoint; 149 Addr ptoc; // unused but needed.
|
| server.h | 113 extern Addr thumb_pc (Addr pc); 184 typedef Addr CORE_ADDR; 309 void* C2v(CORE_ADDR addr);
|
| /external/llvm/lib/Target/X86/ |
| X86AtomicExpandPass.cpp | 212 Value *Addr = AI->getPointerOperand(); 217 // Given: atomicrmw some_op iN* %addr, iN %incr ordering 221 // %init_loaded = load atomic iN* %addr 226 // %pair = cmpxchg iN* %addr, iN %loaded, iN %new 243 LoadInst *InitLoaded = Builder.CreateLoad(Addr); 256 Addr, Loaded, NewVal, Order,
|
| /external/valgrind/main/coregrind/m_syswrap/ |
| syswrap-arm-linux.c | 71 void ML_(call_on_new_stack_0_1) ( Addr stack, 72 Addr retaddr, 154 static void assign_guest_tls(ThreadId ctid, Addr tlsptr); 155 static SysRes sys_set_tls ( ThreadId tid, Addr tlsptr ); 168 UInt flags, Addr sp, 171 Addr child_tls) 218 seg = VG_(am_find_nsegment)((Addr)sp); 220 ctst->client_stack_highest_word = (Addr)VG_PGROUNDUP(sp); 285 static void assign_guest_tls(ThreadId tid, Addr tlsptr) 294 static SysRes sys_set_tls ( ThreadId tid, Addr tlsptr [all...] |
| syswrap-s390x-linux.c | 76 void ML_(call_on_new_stack_0_1) ( Addr stack, 77 Addr retaddr, 148 Addr tlsaddr, 208 Addr sp, ULong flags, 211 Addr tlsaddr) 270 seg = VG_(am_find_nsegment)((Addr)sp); 272 ctst->client_stack_highest_word = (Addr)VG_PGROUNDUP(sp); 350 containing the real addr, data, and len field pointed to by ARG3 359 long, request, long, pid, long, addr, long, data); 461 PRE_MEM_READ( "sys_mmap(args)", (Addr) args, 6*sizeof(UWord) ) [all...] |
| syswrap-ppc64-linux.c | 68 void ML_(call_on_new_stack_0_1) ( Addr stack, 69 Addr retaddr, 262 UInt flags, Addr sp, 265 Addr child_tls) 347 ctst->client_stack_highest_word = (Addr)VG_PGROUNDUP(sp); 577 (Addr)ARG2, /* child SP */ 580 (Addr)ARG4)); /* child_tls */ 638 // ret addr */ 640 //tst->arch.vex.guest_ESP -= sizeof(Addr); [all...] |
| /external/valgrind/main/exp-sgcheck/ |
| pc_common.c | 105 XE_Heap, // h: mismatched ptr/addr segments on load/store 125 Addr addr; member in struct:__anon36512::__anon36513::__anon36514 132 Addr addr; member in struct:__anon36512::__anon36513::__anon36515 147 Addr lo; 148 Addr hi; 158 Addr addr, SSizeT sszB, 164 xe.XE.SorG.addr = addr [all...] |
| /external/valgrind/main/lackey/ |
| lk_main.c | 408 IRAtom* addr; member in struct:__anon36714 451 static VG_REGPARM(2) void trace_instr(Addr addr, SizeT size) 453 VG_(printf)("I %08lx,%lu\n", addr, size); 456 static VG_REGPARM(2) void trace_load(Addr addr, SizeT size) 458 VG_(printf)(" L %08lx,%lu\n", addr, size); 461 static VG_REGPARM(2) void trace_store(Addr addr, SizeT size) 463 VG_(printf)(" S %08lx,%lu\n", addr, size) [all...] |
| /external/llvm/lib/ExecutionEngine/ |
| ExecutionEngine.cpp | 168 void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) { 172 << "\' to [" << Addr << "]\n";); 174 assert((!CurVal || !Addr) && "GlobalMapping already established!"); 175 CurVal = Addr; 180 EEState.getGlobalAddressReverseMap()[Addr]; 203 void *ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) { 210 if (!Addr) 218 CurVal = Addr; 223 EEState.getGlobalAddressReverseMap()[Addr]; 238 const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) { [all...] |