| /external/valgrind/main/include/ |
| pub_tool_addrinfo.h | 127 } Addr; 135 extern void VG_(describe_addr) ( Addr a, /*OUT*/AddrInfo* ai ); 140 extern void VG_(pp_addrinfo) ( Addr a, AddrInfo* ai ); 143 * maybe_gcc indicates Addr a was just below the stack ptr when the error 147 extern void VG_(pp_addrinfo_mc) ( Addr a, AddrInfo* ai, Bool maybe_gcc );
|
| /external/chromium_org/third_party/android_crazy_linker/src/src/ |
| crazy_linker_elf_view.cpp | 15 bool ElfView::InitUnmapped(ELF::Addr load_address, 20 ELF::Addr min_vaddr = 0; 63 ELF::Addr elf_addr = load_bias_ + entry->p_vaddr; 65 ELF::Addr offset = ehdr->e_phoff; 76 ELF::Addr phdr0_addr = reinterpret_cast<ELF::Addr>(phdr0); 77 ELF::Addr phdr0_limit = phdr0_addr + sizeof(ELF::Phdr) * phdr_count;
|
| crazy_linker_elf_relocations.cpp | 150 ELF::Addr dyn_value = dyn.GetValue(); 153 const ELF::Addr tag = dyn.GetTag(); 164 RLOG(" DT_JMPREL addr=%p\n", dyn_addr); 173 RLOG(" %s addr=%p\n", 204 RLOG(" DT_PLTGOT addr=%p\n", dyn_addr); 205 plt_got_ = reinterpret_cast<ELF::Addr*>(dyn_addr); 321 ELF::Addr sym_addr, 328 const ELF::Addr reloc = static_cast<ELF::Addr>(rela->r_offset + load_bias_); 337 ELF::Addr* CRAZY_UNUSED target = reinterpret_cast<ELF::Addr*>(reloc) [all...] |
| /ndk/sources/android/crazy_linker/src/ |
| crazy_linker_elf_view.cpp | 11 bool ElfView::InitUnmapped(ELF::Addr load_address, 16 ELF::Addr min_vaddr = 0; 59 ELF::Addr elf_addr = load_bias_ + entry->p_vaddr; 61 ELF::Addr offset = ehdr->e_phoff; 72 ELF::Addr phdr0_addr = reinterpret_cast<ELF::Addr>(phdr0); 73 ELF::Addr phdr0_limit = phdr0_addr + sizeof(ELF::Phdr) * phdr_count;
|
| crazy_linker_elf_relocations.cpp | 150 ELF::Addr dyn_value = dyn.GetValue(); 153 const ELF::Addr tag = dyn.GetTag(); 164 RLOG(" DT_JMPREL addr=%p\n", dyn_addr); 173 RLOG(" %s addr=%p\n", 204 RLOG(" DT_PLTGOT addr=%p\n", dyn_addr); 205 plt_got_ = reinterpret_cast<ELF::Addr*>(dyn_addr); 321 ELF::Addr sym_addr, 328 const ELF::Addr reloc = static_cast<ELF::Addr>(rela->r_offset + load_bias_); 337 ELF::Addr* CRAZY_UNUSED target = reinterpret_cast<ELF::Addr*>(reloc) [all...] |
| /external/llvm/lib/Target/Mips/ |
| MipsSEISelDAGToDAG.h | 43 bool selectAddrFrameIndex(SDValue Addr, SDValue &Base, SDValue &Offset) const; 44 bool selectAddrFrameIndexOffset(SDValue Addr, SDValue &Base, SDValue &Offset, 47 bool selectAddrRegImm(SDValue Addr, SDValue &Base, 50 bool selectAddrRegReg(SDValue Addr, SDValue &Base, 53 bool selectAddrDefault(SDValue Addr, SDValue &Base, 56 bool selectIntAddr(SDValue Addr, SDValue &Base, 59 bool selectAddrRegImm10(SDValue Addr, SDValue &Base, 62 bool selectAddrRegImm12(SDValue Addr, SDValue &Base, 65 bool selectIntAddrMM(SDValue Addr, SDValue &Base, 68 bool selectIntAddrMSA(SDValue Addr, SDValue &Base [all...] |
| Mips16ISelDAGToDAG.cpp | 162 SDNode *Parent, SDValue Addr, SDValue &Base, SDValue &Offset, 164 EVT ValTy = Addr.getValueType(); 169 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { 176 if (Addr.getOpcode() == MipsISD::Wrapper) { 177 Base = Addr.getOperand(0); 178 Offset = Addr.getOperand(1); 182 if ((Addr.getOpcode() == ISD::TargetExternalSymbol || 183 Addr.getOpcode() == ISD::TargetGlobalAddress)) 187 if (CurDAG->isBaseWithConstantOffset(Addr)) { 188 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)) [all...] |
| MipsISelDAGToDAG.h | 57 virtual bool selectAddrRegImm(SDValue Addr, SDValue &Base, 62 virtual bool selectAddrRegReg(SDValue Addr, SDValue &Base, 66 virtual bool selectAddrDefault(SDValue Addr, SDValue &Base, 70 virtual bool selectIntAddr(SDValue Addr, SDValue &Base, 73 virtual bool selectIntAddrMM(SDValue Addr, SDValue &Base, 76 /// Match addr+simm10 and addr 77 virtual bool selectIntAddrMSA(SDValue Addr, SDValue &Base,
|
| /external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| RuntimeDyldImpl.h | 256 void writeInt16BE(uint8_t *Addr, uint16_t Value) { 259 *Addr = (Value >> 8) & 0xFF; 260 *(Addr + 1) = Value & 0xFF; 263 void writeInt32BE(uint8_t *Addr, uint32_t Value) { 266 *Addr = (Value >> 24) & 0xFF; 267 *(Addr + 1) = (Value >> 16) & 0xFF; 268 *(Addr + 2) = (Value >> 8) & 0xFF; 269 *(Addr + 3) = Value & 0xFF; 272 void writeInt64BE(uint8_t *Addr, uint64_t Value) { 275 *Addr = (Value >> 56) & 0xFF [all...] |
| RuntimeDyld.cpp | 56 uint64_t Addr = Sections[i].LoadAddress; 58 << format("%p", (uint8_t *)Addr) << "\n"); 59 resolveRelocationList(Relocations[i], Addr); 363 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *), 365 if (!Addr) 368 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0)); 369 memset(Addr, 0, TotalSize); 371 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID << " new addr: " 372 << format("%p", Addr) << " DataSize: " << TotalSize << "\n"); 383 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align) [all...] |
| /external/valgrind/main/drd/ |
| drd_bitmap.c | 30 #include "pub_tool_basics.h" /* Addr, SizeT */ 130 const Addr a1, const Addr a2, 141 void DRD_(bm_access_range_load)(struct bitmap* const bm, Addr a1, Addr a2) 143 Addr b, b_next; 153 Addr b_start; 154 Addr b_end; 167 if (make_address(bm2->addr, 0) < a1) 170 if (make_address(bm2->addr, 0) < a2 [all...] |
| drd_clientobj.c | 80 * Return the data associated with the client object at client address addr. 84 DrdClientobj* DRD_(clientobj_get_any)(const Addr addr) 86 return VG_(OSetGen_Lookup)(s_clientobj_set, &addr); 90 * Return the data associated with the client object at client address addr 94 DrdClientobj* DRD_(clientobj_get)(const Addr addr, const ObjType t) 97 p = VG_(OSetGen_Lookup)(s_clientobj_set, &addr); 106 Bool DRD_(clientobj_present)(const Addr a1, const Addr a2 [all...] |
| /external/llvm/lib/Target/R600/ |
| AMDGPUISelDAGToDAG.cpp | 56 bool SelectADDRParam(SDValue Addr, SDValue& R1, SDValue& R2); 82 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr); 83 bool SelectGlobalValueVariableOffset(SDValue Addr, SDValue &BaseReg, 85 bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset); 86 bool SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset); 87 bool SelectMUBUFAddr64(SDValue Addr, SDValue &Ptr, SDValue &Offset, 154 SDValue Addr, SDValue& R1, SDValue& R2) { 156 if (Addr.getOpcode() == ISD::FrameIndex) { 157 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { 161 R1 = Addr; [all...] |
| /external/valgrind/main/coregrind/m_sigframe/ |
| sigframe-amd64-darwin.c | 89 static Bool extend ( ThreadState *tst, Addr addr, SizeT size ) 92 VG_TRACK( new_mem_stack_signal, addr - VG_STACK_REDZONE_SZB, 104 Addr sp_top_of_frame, 113 Addr rsp; 154 vg_assert(rsp == (Addr)&frame->returnAddr); 164 (Addr)frame, 1*sizeof(ULong) ); 169 tst->arch.vex.guest_RSI = (Addr) &frame->fake_siginfo;/* oh well */ 170 tst->arch.vex.guest_RDX = (Addr) &frame->fake_ucontext; /* oh well */ 173 (Addr)frame, 1*sizeof(ULong) ) [all...] |
| sigframe-x86-darwin.c | 92 static Bool extend ( ThreadState *tst, Addr addr, SizeT size ) 102 addr - VG_STACK_REDZONE_SZB, size, tid ); 113 Addr sp_top_of_frame, 122 Addr esp; 163 vg_assert(esp == (Addr)&frame->returnAddr); 173 (Addr)frame, 4*sizeof(UInt) ); 179 (Addr)frame, 4*sizeof(UInt) ); 181 (Addr)&frame->fake_siginfo, sizeof(frame->fake_siginfo)); 183 (Addr)&frame->fake_ucontext, sizeof(frame->fake_ucontext)) [all...] |
| sigframe-mips32-linux.c | 81 static Bool extend ( ThreadState *tst, Addr addr, SizeT size ) 86 if (VG_(extend_stack)(addr, tst->client_stack_szB)) 88 stackseg = VG_(am_find_nsegment)(addr); 95 addr, tid ); 103 VG_(synth_fault_mapping)( tid, addr ); 112 VG_TRACK( new_mem_stack_signal, addr - VG_STACK_REDZONE_SZB, 126 (Addr)sc, sizeof(unsigned long long)*34 ); 165 Addr sp_top_of_frame, 173 Addr sp [all...] |
| sigframe-x86-linux.c | 123 Addr retaddr; 135 Addr retaddr; 139 Addr psigInfo; 142 Addr puContext; 400 static Bool extend ( ThreadState *tst, Addr addr, SizeT size ) 405 if (VG_(extend_stack)(addr, tst->client_stack_szB)) { 406 stackseg = VG_(am_find_nsegment)(addr); 409 addr, stackseg->start, stackseg->end); 416 addr, tid) [all...] |
| /external/llvm/lib/Target/AArch64/Disassembler/ |
| AArch64Disassembler.cpp | 149 uint64_t Addr, const void *Decoder); 151 uint64_t Addr, 154 uint64_t Addr, const void *Decoder); 156 uint64_t Addr, 159 uint64_t Addr, const void *Decoder); 161 uint64_t Addr, 164 uint64_t Addr, const void *Decoder); 166 uint64_t Addr, const void *Decoder); 168 uint64_t Addr, const void *Decoder); 170 uint64_t Addr, const void *Decoder) [all...] |
| /external/valgrind/main/coregrind/m_syswrap/ |
| syswrap-xen.c | 103 (Addr)ARG2, sizeof(vki_xen_domid_t)); 110 (Addr)&arg->max_extents, sizeof(arg->max_extents)); 112 (Addr)&arg->extent_start, sizeof(arg->extent_start)); 120 (Addr)&arg->domid, sizeof(arg->domid)); 122 (Addr)&arg->map, sizeof(arg->map)); 140 (Addr)memory_reservation->extent_start.p, 146 (Addr)memory_reservation->extent_start.p, 158 (Addr)&memory_reservation->extent_start, 161 (Addr)&memory_reservation->nr_extents, 164 (Addr)&memory_reservation->extent_order [all...] |
| syswrap-linux.c | 323 Addr ML_(allocstack)(ThreadId tid) 327 Addr initial_SP; 344 tst->os_state.valgrind_stack_base = (Addr)stack; 365 Addr sp; 391 sp &= ~((Addr)0xF); 396 sp &= ~((Addr)0xF); 408 (Addr)sp, /* stack */ 793 (Addr)&tx->field, sizeof(tx->field)) 797 PRE_MEM_READ( "adjtimex(timex->offset)", (Addr)&tx->offset, sizeof(tx->offset)); 827 (Addr)&tx->field, sizeof(tx->field) 3633 Addr addr; local [all...] |
| /external/chromium_org/net/disk_cache/blockfile/ |
| index_table_v3.h | 28 #include "net/disk_cache/blockfile/addr.h" 60 Addr GetAddress() const; 73 Addr address, 83 EntryCell(int32 cell_num, uint32 hash, Addr address, bool small_table); 119 struct CellInfo { uint32 hash; Addr address; }; 188 EntryCell CreateEntryCell(uint32 hash, Addr address); 194 EntryCell FindEntryCell(uint32 hash, Addr address); 206 void SetSate(uint32 hash, Addr address, EntryState state); 207 void UpdateTime(uint32 hash, Addr address, base::Time current); 235 EntryCell FindEntryCellImpl(uint32 hash, Addr address, bool allow_deleted) [all...] |
| /external/llvm/lib/Target/NVPTX/ |
| NVPTXISelDAGToDAG.h | 84 bool SelectADDRri_imp(SDNode *OpNode, SDValue Addr, SDValue &Base, 86 bool SelectADDRri(SDNode *OpNode, SDValue Addr, SDValue &Base, 88 bool SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base, 91 bool SelectADDRsi_imp(SDNode *OpNode, SDValue Addr, SDValue &Base, 93 bool SelectADDRsi(SDNode *OpNode, SDValue Addr, SDValue &Base, 95 bool SelectADDRsi64(SDNode *OpNode, SDValue Addr, SDValue &Base,
|
| /external/llvm/include/llvm/ExecutionEngine/ |
| ObjectImage.h | 56 uint64_t Addr) = 0; 58 uint64_t Addr) = 0;
|
| RTDyldMemoryManager.h | 71 /// \p Addr parameter provides the local address of the EH frame section 75 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size); 77 virtual void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size);
|
| /development/ndk/platforms/android-3/include/ |
| link.h | 40 ElfW(Addr) dlpi_addr;
|