Home
last modified time | relevance | path

Searched refs:EndAddr (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymContext.cpp117 const uint64_t EndAddr = Address.Address + Size; in getLineInfoForAddressRange() local
119 if (StartAddr <= LineEntry.Addr && LineEntry.Addr < EndAddr) { in getLineInfoForAddressRange()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DPerfSupportPlugin.cpp293 ExecutorAddr StartAddr, EndAddr, ImplAddr; in Create() local
297 {ES.intern(RegisterPerfEndSymbolName), &EndAddr}, in Create()
300 return std::make_unique<PerfSupportPlugin>(EPC, StartAddr, EndAddr, ImplAddr, in Create()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp942 uint64_t EndAddr = StartAddr + Size; in mayCrossBoundary() local
944 ((EndAddr - 1) >> Log2(BoundaryAlignment)); in mayCrossBoundary()
955 uint64_t EndAddr = StartAddr + Size; in isAgainstBoundary() local
956 return (EndAddr & (BoundaryAlignment.value() - 1)) == 0; in isAgainstBoundary()
H A DMachObjectWriter.cpp128 uint64_t EndAddr = getSectionAddress(Sec) + Asm.getSectionAddressSize(*Sec); in getPaddingSize() local
136 return offsetToAlignment(EndAddr, NextSec.getAlign()); in getPaddingSize()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp516 uint64_t EndAddr = StartAddr + Lines.header()->CodeSize; in findLineTable() local
519 Entries.push_back({EndAddr, LastLine, ColNum, Group.NameIndex, true}); in findLineTable()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp1395 uint64_t EndAddr = Address.Address + Size; in lookupAddressRangeImpl() local
1433 while (SeqPos != LastSeq && SeqPos->LowPC < EndAddr) { in lookupAddressRangeImpl()
1443 findRowInSeq(CurSeq, {EndAddr - 1, Address.SectionIndex}); in lookupAddressRangeImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h674 void mapVTableAddress(uint64_t StartAddr, uint64_t EndAddr, uint64_t MD5Val) { in mapVTableAddress() argument
675 VTableAddrMap.insert(StartAddr, EndAddr, MD5Val); in mapVTableAddress()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp2921 uint32_t EndAddr = Address + S.Size - 1; in writeSection() local
2922 Type = std::max(SRecord::getType(EndAddr), Type); in writeSection()