Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DRegisterEHFrames.cpp91 Error walkLibunwindEHFrameSection(const char *const SectionStart, in walkLibunwindEHFrameSection() argument
93 const char *CurCFIRecord = SectionStart; in walkLibunwindEHFrameSection()
94 const char *End = SectionStart + SectionSize; in walkLibunwindEHFrameSection()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp169 uint64_t SectionStart = OutputStream->tell(); in markSectionStart() local
176 return SectionStart; in markSectionStart()
202 SecType Type, uint32_t LayoutIdx, uint64_t SectionStart) { in addNewSection() argument
211 SecHdrTable.push_back({Type, Entry.Flags, SectionStart - FileStart, in addNewSection()
212 OutputStream->tell() - SectionStart, LayoutIdx}); in addNewSection()
441 uint64_t SectionStart = markSectionStart(Type, LayoutIdx); in writeOneSection() local
478 if (std::error_code EC = addNewSection(Type, LayoutIdx, SectionStart)) in writeOneSection()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp476 uint32_t SectionStart = Section->VirtualAddress; in getRvaPtr() local
478 if (SectionStart <= Addr && Addr < SectionEnd) { in getRvaPtr()
489 Addr >= SectionStart + Section->SizeOfRawData) { in getRvaPtr()
492 uint32_t Offset = Addr - SectionStart; in getRvaPtr()
511 uint32_t SectionStart = Section->VirtualAddress; in getRvaAndSizeAsBytes() local
514 uint32_t OffsetIntoSection = RVA - SectionStart; in getRvaAndSizeAsBytes()
515 if (SectionStart <= RVA && OffsetIntoSection < Section->VirtualSize && in getRvaAndSizeAsBytes()
H A DXCOFFObjectFile.cpp453 uintptr_t SectionStart = reinterpret_cast<uintptr_t>(base() + SectionOffset); in getSectionFileOffsetToRawData() local
454 if (Error E = Binary::checkOffset(Data, SectionStart, SizeOfSection)) { in getSectionFileOffsetToRawData()
487 return SectionStart; in getSectionFileOffsetToRawData()
H A DWasmObjectFile.cpp1409 const uint8_t *SectionStart = Ctx.Ptr; in parseGlobalSection() local
1416 Global.Offset = static_cast<uint32_t>(GlobalStart - SectionStart); in parseGlobalSection()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp1316 bool LastInSection, const MCSymbol &SectionStart);
1706 const MCSymbol &SectionStart) { in EmitFDE() argument
1735 makeEndMinusStartExpr(context, SectionStart, cieStart, 0); in EmitFDE()
1869 MCSymbol *SectionStart = Context.createTempSymbol(); in Emit() local
1870 Streamer.emitLabel(SectionStart); in Emit()
1903 Emitter.EmitFDE(*LastCIEStart, Frame, I == E, *SectionStart); in Emit()
H A DMachObjectWriter.cpp909 uint64_t SectionStart = SectionDataStart + getSectionAddress(&Sec); in writeObject() local
914 !isUInt<32>(SectionStart)) { in writeObject()
925 writeSection(Asm, Sec, getSectionAddress(&Sec), SectionStart, Flags, in writeObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfWriter.h302 uint64_t SectionStart);