/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
D | JITLink.cpp | 93 return OS << formatv("{0:x16}", B.getAddress()) << " -- " in operator <<() 94 << formatv("{0:x16}", B.getAddress() + B.getSize()) << ": " in operator <<() 129 << ", addr = " << formatv("{0:x16}", Sym.getAddress()) << " (" in operator <<() 130 << formatv("{0:x16}", Sym.getAddressable().getAddress()) << " + " in operator <<() 140 OS << "edge@" << formatv("{0:x16}", B.getAddress() + E.getOffset()) << ": " in printEdge() 141 << formatv("{0:x16}", B.getAddress()) << " + " << E.getOffset() << " -- " in printEdge() 166 ? createZeroFillBlock(B.getSection(), SplitIndex, B.getAddress(), in splitBlock() 170 B.getAddress(), B.getAlignment(), B.getAlignmentOffset()); in splitBlock() 173 B.setAddress(B.getAddress() + SplitIndex); in splitBlock() 238 OS << " " << format("0x%016" PRIx64, Sym->getAddress()) << ": " << *Sym in dump() [all …]
|
D | MachO_x86_64.cpp | 166 FixupValue -= ToSymbol->getAddress(); in parsePairRelocation() 175 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation() 180 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation() 197 JITTargetAddress SectionAddress = S.getAddress(); in addRelocations() 234 BlockToFix->getAddress() + BlockToFix->getContent().size()) in addRelocations() 240 (FixupAddress - BlockToFix->getAddress()); in addRelocations() 277 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations() 297 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations() 311 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations() 336 Edge GE(*Kind, FixupAddress - BlockToFix->getAddress(), *TargetSymbol, in addRelocations() [all …]
|
D | MachO_arm64.cpp | 164 FixupValue -= ToSymbol->getAddress(); in parsePairRelocation() 173 Addend = FixupValue + (FixupAddress - FromSymbol->getAddress()); in parsePairRelocation() 178 Addend = FixupValue - (FixupAddress - ToSymbol->getAddress()); in parsePairRelocation() 195 JITTargetAddress SectionAddress = S.getAddress(); in addRelocations() 226 BlockToFix->getAddress() + BlockToFix->getContent().size()) in addRelocations() 232 (FixupAddress - BlockToFix->getAddress()); in addRelocations() 304 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations() 367 Edge GE(*Kind, FixupAddress - BlockToFix->getAddress(), *TargetSymbol, in addRelocations() 373 BlockToFix->addEdge(*Kind, FixupAddress - BlockToFix->getAddress(), in addRelocations() 533 JITTargetAddress FixupAddress = B.getAddress() + E.getOffset(); in applyFixup() [all …]
|
D | EHFrameSupport.cpp | 68 dbgs() << " Processing block at " << formatv("{0:x16}", B.getAddress()) in processBlock() 89 << formatv("{0:x16}", B.getAddress()) << "\n"; in processBlock() 157 return LHS->getAddress() < RHS->getAddress(); in operator ()() 171 dbgs() << " Processing block at " << formatv("{0:x16}", B.getAddress()) in processBlock() 193 " block at address " + formatv("{0:x16}", B.getAddress())); in processBlock() 205 << formatv("{0:x16}", B.getAddress() + RecordStartOffset) << "\n"; in processBlock() 229 formatv("{0:x16}", B.getAddress() + RecordStartOffset)); in processBlock() 335 formatv("{0:x16}", CIESymbol.getAddress())); in processCIE() 348 formatv("{0:x16}", CIESymbol.getAddress())); in processCIE() 363 formatv("{0:x16}", CIESymbol.getAddress())); in processCIE() [all …]
|
D | JITLinkGeneric.cpp | 157 if (LHS->getAddress() != RHS->getAddress()) in layOutBlocks() 158 return LHS->getAddress() < RHS->getAddress(); in layOutBlocks() 264 assert(Sym->getAddress() == 0 && in getExternalSymbolNames() 281 assert(Sym->getAddress() == 0 && "Symbol already resolved"); in applyLookupResult() 285 Sym->getAddressable().setAddress(ResultI->second.getAddress()); in applyLookupResult() 295 << formatv("{0:x16}", Sym->getAddress()) << "\n"; in applyLookupResult() 299 return Sym->getAddress() != 0 || in applyLookupResult()
|
D | MachOLinkGraphBuilder.h | 144 if (Address < Sym->getAddress() + Sym->getSize()) in findSymbolByAddress() 159 auto *&CanonicalSymEntry = AddrToCanonicalSymbol[Sym.getAddress()]; in setCanonicalSymbol()
|
D | MachOLinkGraphBuilder.cpp | 291 assert(!AddrToCanonicalSymbol.count(Sym.getAddress()) && in addSectionStartSymAndBlock() 293 AddrToCanonicalSymbol[Sym.getAddress()] = &Sym; in addSectionStartSymAndBlock() 509 if (LastCanonicalAddr != Sym.getAddress()) { in graphifyRegularSymbols() 512 LastCanonicalAddr = Sym.getAddress(); in graphifyRegularSymbols()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/ |
D | JITLink.h | 120 JITTargetAddress getAddress() const { return Address; } in getAddress() function 460 JITTargetAddress getAddress() const { return Base->getAddress() + Offset; } in getAddress() function 622 if (B->getAddress() < First->getAddress()) in SectionRange() 624 if (B->getAddress() > Last->getAddress()) in SectionRange() 641 return First ? First->getAddress() : 0; in getStart() 644 return Last ? Last->getAddress() + Last->getSize() : 0; in getEnd() 1029 static bool includeNonNull(const Block &B) { return B.getAddress(); } in includeNonNull() 1040 auto I = AddrToBlock.upper_bound(B.getAddress()); 1045 if (B.getAddress() + B.getSize() > I->second->getAddress()) 1053 if (PrevBlock.getAddress() + PrevBlock.getSize() > B.getAddress()) [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 48 uint8_t *Src = Sections[RE.SectionID].getAddress() + RE.Offset; in memcpyAddend() 76 uint64_t SectionBaseAddr = TargetSI->getAddress(); in processScatteredVANILLA() 133 uint64_t Addr = Sec.getAddress(); in getRelocationValueRef() 145 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress(); in makeValueAddendPCRel() 151 uint8_t *LocalAddress = Section.getAddress() + RE.Offset; in dumpRelocationToResolve() 169 uint64_t SAddr = SI->getAddress(); in getSectionByAddress() 336 uint8_t *P = EHFrame->getAddress(); in registerEHFrames() 342 MemMgr.registerEHFrames(EHFrame->getAddress(), EHFrame->getLoadAddress(), in registerEHFrames()
|
D | RuntimeDyldELF.cpp | 231 uint8_t *EHFrameAddr = Sections[EHFrameSID].getAddress(); in registerEHFrames() 301 Section.getAddress()[Offset] = TruncOffset; in resolveX86_64Relocation() 1077 RelocationEntry REmovz_g3(SectionID, StubTargetAddr - Section.getAddress(), in resolveAArch64Branch() 1080 StubTargetAddr - Section.getAddress() + 4, in resolveAArch64Branch() 1083 StubTargetAddr - Section.getAddress() + 8, in resolveAArch64Branch() 1086 StubTargetAddr - Section.getAddress() + 12, in resolveAArch64Branch() 1243 RelocationEntry RE(SectionID, StubTargetAddr - Section.getAddress(), in processRelocationRef() 1301 RelocationEntry REHi(SectionID, StubTargetAddr - Section.getAddress(), in processRelocationRef() 1304 StubTargetAddr - Section.getAddress() + 4, in processRelocationRef() 1397 RelocationEntry REHi(SectionID, StubTargetAddr - Section.getAddress(), in processRelocationRef() [all …]
|
D | JITSymbol.cpp | 76 if (auto AddrOrErr = Sym.getAddress()) in lookup() 88 if (auto AddrOrErr = Sym.getAddress()) in lookup()
|
D | RuntimeDyld.cpp | 87 if (S.getAddress() == nullptr) { in dumpSectionMemory() 94 uint8_t *DataAddr = S.getAddress(); in dumpSectionMemory() 162 if (Sections[i].getAddress() == LocalAddress) { in mapSectionAddress() 172 Expected<uint64_t> AddressOrErr = Sym.getAddress(); in getOffset() 175 Result = *AddressOrErr - Sec.getAddress(); in getOffset() 293 if (auto AddrOrErr = I->getAddress()) in loadObjectImpl() 1064 if (Sections[RE.SectionID].getAddress() == nullptr) in resolveRelocationList() 1090 Addr = RRI->second.getAddress(); in applyExternalSymbolRelocations()
|
D | RuntimeDyldImpl.h | 87 uint8_t *getAddress() const { return Address; } in getAddress() function 484 return Sections[SectionID].getAddress(); in getSectionAddress() 488 return StringRef(reinterpret_cast<char *>(Sections[SectionID].getAddress()), in getSectionContent()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
D | SymbolizableObjectFile.cpp | 67 OpdAddress = Section->getAddress(); in create() 175 Expected<uint64_t> SymbolAddressOrErr = Symbol.getAddress(); in addSymbol() 193 SymbolAddress = OpdExtractor->getAddress(&OpdOffset); in addSymbol() 325 if (Address >= Sec.getAddress() && in getModuleSectionIndexForAddress() 326 Address < Sec.getAddress() + Sec.getSize()) in getModuleSectionIndexForAddress()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | IndirectBrExpandPass.cpp | 175 cast<IntegerType>(DL.getIntPtrType(IBr->getAddress()->getType())); in runOnFunction() 182 IBr->getAddress(), CommonITy, in runOnFunction() 183 Twine(IBr->getAddress()->getName()) + ".switch_cast", IBr); in runOnFunction()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | AttributeLayoutTest.cpp | 77 virtual const char *getAddress() = 0; 88 const char *getAddress() override { return mMemory; } in getAddress() function in __anon879ca3b10111::Memory 102 const char *getAddress() override { return nullptr; } in getAddress() function in __anon879ca3b10111::Buffer 145 mContainer->getAddress() + mOffset); in enable() 150 bool inClientMemory(void) const { return mContainer->getAddress() != nullptr; } in inClientMemory()
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | AttributeLayoutTest.cpp | 77 virtual const char *getAddress() = 0; 88 const char *getAddress() override { return mMemory; } in getAddress() function in __anon6ed30ec60111::Memory 102 const char *getAddress() override { return nullptr; } in getAddress() function in __anon6ed30ec60111::Buffer 145 mContainer->getAddress() + mOffset); in enable() 150 bool inClientMemory(void) const { return mContainer->getAddress() != nullptr; } in inClientMemory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
D | JITSymbol.h | 223 JITTargetAddress getAddress() const { return Address; } in getAddress() function 257 : CachedAddr(Sym.getAddress()), Flags(Sym.getFlags()) {} in JITSymbol() 313 Expected<JITTargetAddress> getAddress() { in getAddress() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/OProfileJIT/ |
D | OProfileJITEventListener.cpp | 101 Expected<uint64_t> AddrOrErr = Sym.getAddress(); in notifyObjectLoaded() 157 Expected<uint64_t> AddrOrErr = I->getAddress(); in notifyFreeingObject()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | GsymReader.cpp | 209 Optional<uint64_t> GsymReader::getAddress(size_t Index) const { in getAddress() function in GsymReader 252 if (Optional<uint64_t> OptAddr = getAddress(*AddressIndex)) { in getFunctionInfo() 274 if (Optional<uint64_t> OptAddr = getAddress(*AddressIndex)) in lookup()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ObjectFile.h | 98 uint64_t getAddress() const; 184 Expected<uint64_t> getAddress() const; 381 inline Expected<uint64_t> SymbolRef::getAddress() const { in getAddress() function 438 inline uint64_t SectionRef::getAddress() const { in getAddress() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | DataExtractor.h | 226 uint64_t getAddress(uint64_t *offset_ptr) const { in getAddress() function 233 uint64_t getAddress(Cursor &C) const { return getUnsigned(C, AddressSize); } in getAddress() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachORelocation.h | 43 uint32_t getAddress() const { return r_scattered ? r_value : r_address; } in getAddress() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldMachOARM.h | 330 RE.SectionID, StubTargetAddr - Section.getAddress(), in processBranchRelocation() 381 uint64_t SectionABase = SAI->getAddress(); in processHALFSECTDIFFRelocation() 395 uint64_t SectionBBase = SBI->getAddress(); in processHALFSECTDIFFRelocation()
|
D | RuntimeDyldMachOX86_64.h | 196 Addend += SecB.getAddress(); in processSubtractRelocation() 222 Addend -= SecA.getAddress(); in processSubtractRelocation()
|