Searched defs:Address (Results 26 - 50 of 107) sorted by relevance

12345

/external/llvm/lib/Target/X86/InstPrinter/
H A DX86IntelInstPrinter.cpp140 int64_t Address; local
141 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
142 O << formatHex((uint64_t)Address);
/external/llvm/tools/lli/
H A DRemoteTargetExternal.cpp32 uint64_t &Address) {
39 if (!Receive(LLI_AllocationResult, Address)) {
43 if (Address == 0) {
48 format("%llx", Address) << "\n");
52 bool RemoteTargetExternal::loadData(uint64_t Address, const void *Data, size_t Size) { argument
53 DEBUG(dbgs() << "Message [load data] addr: 0x" << format("%llx", Address) <<
55 if (!SendLoadSection(Address, Data, (uint32_t)Size, false)) {
76 bool RemoteTargetExternal::loadCode(uint64_t Address, const void *Data, size_t Size) { argument
77 DEBUG(dbgs() << "Message [load code] addr: 0x" << format("%llx", Address) <<
79 if (!SendLoadSection(Address, Dat
31 allocateSpace(size_t Size, unsigned Alignment, uint64_t &Address) argument
100 executeCode(uint64_t Address, int32_t &RetVal) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DMultipleAddresses.java44 private List<Address> addresses = new ArrayList<Address>();
60 Address address = new Address(type);
75 Address address = new Address(NO_REPLY);
87 public List<Address> getAddressesOfType(String type) {
88 List<Address> answer = new ArrayList<Address>(addresses.size());
89 for (Iterator<Address> i
120 public static class Address { class in class:MultipleAddresses
129 private Address(String type) { method in class:MultipleAddresses.Address
[all...]
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_address.h31 // Address contains various address fields that have been populated from the
33 // "extensible Address Language" (xAL); see
35 class Address { class in namespace:autofill::wallet
41 Address();
43 // Using the raw info in |profile|, create a wallet::Address.
44 explicit Address(const AutofillProfile& profile);
46 Address(const std::string& country_name_code,
58 ~Address();
63 static scoped_ptr<Address> CreateAddress(
68 // Builds an Address fro
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_symbol.c113 BOOL WINAPI j_SymFromAddr(HANDLE hProcess, DWORD64 Address, PDWORD64 Displacement, PSYMBOL_INFO Symbol) argument
118 return pfnSymFromAddr(hProcess, Address, Displacement, Symbol);
/external/lldb/examples/python/
H A Dsymbolication.py40 class Address: class in inherits:
442 symbolicated_address = Address(self.target, load_addr)
456 symbolicated_address = Address(self.target, inlined_parent_so_addr.GetLoadAddress(self.target))
/external/llvm/include/llvm/MC/MCAnalysis/
H A DMCAtom.h33 /// or data (a DataAtom). Address ranges are expressed as _closed_ intervals.
53 /// \param SplitPt Address at which to start a new atom, splitting this one.
110 /// NOTE: Both the Address and Size field are actually redundant when taken in
116 uint64_t Address; member in class:llvm::MCDecodedInst
118 MCDecodedInst(const MCInst &Inst, uint64_t Address, uint64_t Size) argument
119 : Inst(Inst), Address(Address), Size(Size) {}
/external/llvm/include/llvm/Object/
H A DELFYAML.h79 llvm::yaml::Hex64 Address; member in struct:llvm::ELFYAML::Section
H A DRelocVisitor.h223 uint64_t Address; local
224 R.getOffset(Address);
225 return RelocToApply(Value + Addend - Address, 4);
239 uint64_t Address; local
240 R.getOffset(Address);
241 return RelocToApply(Value + Addend - Address, 4);
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp73 uintptr_t Address,
77 Result.Offset = Address - StartAddress;
84 uintptr_t Address,
88 Result.Offset = Address - StartAddress;
157 I->Address,
71 LineStartToIntelJITFormat( uintptr_t StartAddress, uintptr_t Address, DebugLoc Loc) argument
83 DILineInfoToIntelJITFormat(uintptr_t StartAddress, uintptr_t Address, DILineInfo Line) argument
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectSymbolizer.cpp44 uint64_t Address) override;
101 uint64_t Address) {
102 if (const RelocationRef *R = findRelocationAt(Address)) {
131 int64_t Value, uint64_t Address, bool IsBranch,
143 if (const RelocationRef *R = findRelocationAt(Address + Offset)) {
187 int64_t Value, uint64_t Address) {
261 uint64_t Address; local
262 Reloc.getAddress(Address);
264 if (AddrToReloc.find(Address) == AddrToReloc.end())
265 AddrToReloc[Address]
100 tryAddingPcLoadReferenceComment(raw_ostream &cStream, int64_t Value, uint64_t Address) argument
130 tryAddingSymbolicOperand(MCInst &MI, raw_ostream &cStream, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) argument
186 tryAddingPcLoadReferenceComment(raw_ostream &cStream, int64_t Value, uint64_t Address) argument
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsLongBranch.cpp53 uint64_t Size, Address; member in struct:__anon26053::MBBInfo
504 uint64_t Address = 0; local
506 for (I = MBBInfos.begin(); I != E; Address += I->Size, ++I)
507 I->Address = Address;
H A DMipsFastISel.cpp22 typedef struct Address { struct in namespace:__anon26050
33 Address() : BaseType(RegBase), Offset(0) { Base.Reg = 0; } function in struct:__anon26050::Address
34 } Address; typedef in namespace:__anon26050
69 bool ComputeAddress(const Value *Obj, Address &Addr);
72 bool EmitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
74 bool EmitStore(MVT VT, unsigned SrcReg, Address &Addr,
142 bool MipsFastISel::ComputeAddress(const Value *Obj, Address &Addr) {
155 bool MipsFastISel::EmitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
214 bool MipsFastISel::EmitStore(MVT VT, unsigned SrcReg, Address &Addr,
254 Address Add
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZLongBranch.cpp77 uint64_t Address; member in struct:__anon26159::MBBInfo
91 : Address(0), Size(0), Alignment(0), NumTerminators(0) {}
101 uint64_t Address; member in struct:__anon26159::TerminatorInfo
121 uint64_t Address; member in struct:__anon26159::BlockPosition
123 // The number of low bits in Address that are known to be the same
128 : Address(0), KnownBits(InitialAlignment) {}
149 bool mustRelaxBranch(const TerminatorInfo &Terminator, uint64_t Address);
181 Position.Address += ((uint64_t(1) << Block.Alignment) -
188 Position.Address = (Position.Address
305 mustRelaxBranch(const TerminatorInfo &Terminator, uint64_t Address) argument
[all...]
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp138 uint64_t Address; member in struct:__anon26414::MachOSection
163 Section.Address = Sect.addr;
175 Section.Address = Sect.addr;
238 W.printHex("Address", MOSection.Address);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_symbol.c113 BOOL WINAPI j_SymFromAddr(HANDLE hProcess, DWORD64 Address, PDWORD64 Displacement, PSYMBOL_INFO Symbol) argument
118 return pfnSymFromAddr(hProcess, Address, Displacement, Symbol);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_deadcode.c36 unsigned char Address; member in struct:updatemask_state
88 dst->Address = a->Address | b->Address;
132 return &s->R.Address;
/external/clang/lib/CodeGen/
H A DCGBlocks.h208 llvm::AllocaInst *Address; member in class:clang::CodeGen::CGBlockInfo
/external/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h216 Value *Address; member in class:llvm::NonLocalDepResult
219 : Entry(bb, result), Address(address) {}
226 Address = Addr;
238 Value *getAddress() const { return Address; }
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp160 const Value *Address = DI->getAddress(); local
161 if (Address) {
162 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
163 Address = BCI->getOperand(0);
164 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Address)) {
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLine.h94 return LHS.Address < RHS.Address;
99 uint64_t Address; member in struct:llvm::DWARFDebugLine::Row
H A DDWARFUnit.cpp330 DWARFUnit::getSubprogramForAddress(uint64_t Address) { argument
334 DIE.addressRangeContainsAddress(this, Address)) {
342 DWARFUnit::getInlinedChainForAddress(uint64_t Address) { argument
347 getSubprogramForAddress(Address);
354 SubprogramDIE = DWO->getUnit()->getSubprogramForAddress(Address);
363 return SubprogramDIE->getInlinedChainForAddress(ChainCU, Address);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h50 /// Address - address in the linker's memory where the section resides.
51 uint8_t *Address; member in class:llvm::SectionEntry
59 /// space where it was JIT-ed, this just equals Address.
72 : Name(name), Address(address), Size(size),
253 return (uint8_t *)Sections[SectionID].Address;
/external/llvm/lib/Target/R600/
H A DAMDGPUInstrInfo.cpp138 unsigned Address = calculateIndirectAddress(RegIndex, Channel); local
142 getIndirectAddrRegClass()->getRegister(Address));
145 Address, OffsetReg);
153 unsigned Address = calculateIndirectAddress(RegIndex, Channel); local
156 buildMovInstr(MBB, MI, getIndirectAddrRegClass()->getRegister(Address),
/external/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp118 uint64_t Address,
129 uint64_t Address,
141 uint64_t Address,
153 uint64_t Address,
165 uint64_t Address,
178 uint64_t Address,
187 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address,
189 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address,
191 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address,
193 static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address,
116 DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
127 DecodeI64RegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
139 DecodeFPRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
151 DecodeDFPRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
163 DecodeQFPRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
177 DecodeFCCRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
241 getInstruction(MCInst &instr, uint64_t &Size, const MemoryObject &Region, uint64_t Address, raw_ostream &vStream, raw_ostream &cStream) const argument
270 DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder, bool isLoad, DecodeFunc DecodeRD) argument
312 DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address, const void *Decoder) argument
318 DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address, const void *Decoder) argument
324 DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address, const void *Decoder) argument
330 DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address, const void *Decoder) argument
336 DecodeStoreInt(MCInst &Inst, unsigned insn, uint64_t Address, const void *Decoder) argument
342 DecodeStoreFP(MCInst &Inst, unsigned insn, uint64_t Address, const void *Decoder) argument
348 DecodeStoreDFP(MCInst &Inst, unsigned insn, uint64_t Address, const void *Decoder) argument
354 DecodeStoreQFP(MCInst &Inst, unsigned insn, uint64_t Address, const void *Decoder) argument
360 tryAddingSymbolicOperand(int64_t Value, bool isBranch, uint64_t Address, uint64_t Offset, uint64_t Width, MCInst &MI, const void *Decoder) argument
369 DecodeCall(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder) argument
379 DecodeSIMM13(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder) argument
386 DecodeJMPL(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder) argument
420 DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder) argument
448 DecodeSWAP(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder) argument
[all...]

Completed in 3464 milliseconds

12345