Searched refs:SecStart (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | ELFObjectWriter.cpp | 503 uint64_t SecStart = align(SymtabSection->getAlign()); in computeSymbolTable() local 653 SymtabSection->setOffsets(SecStart, SecEnd); in computeSymbolTable() 662 SecStart = W.OS.tell(); in computeSymbolTable() 667 SymtabShndxSection->setOffsets(SecStart, SecEnd); in computeSymbolTable() 984 const uint64_t SecStart = align(Section.getAlign()); in writeObject() local 990 Section.setOffsets(SecStart, SecEnd); in writeObject() 1027 const uint64_t SecStart = align(Group->getAlign()); in writeObject() local 1033 Group->setOffsets(SecStart, SecEnd); in writeObject() 1053 const uint64_t SecStart = align(RelSection->getAlign()); in writeObject() local 1059 RelSection->setOffsets(SecStart, SecEnd); in writeObject() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | SanitizerCoverage.cpp | 323 GlobalVariable *SecStart = in CreateSecStartEnd() local 326 SecStart->setVisibility(GlobalValue::HiddenVisibility); in CreateSecStartEnd() 333 return std::make_pair(SecStart, SecEnd); in CreateSecStartEnd() 338 IRB.CreatePtrAdd(SecStart, ConstantInt::get(IntptrTy, sizeof(uint64_t))); in CreateSecStartEnd() 346 auto SecStart = SecStartEnd.first; in CreateInitCallsForSections() local 350 M, CtorName, InitFunctionName, {PtrTy, PtrTy}, {SecStart, SecEnd}); in CreateInitCallsForSections()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | SampleProfReader.cpp | 964 const uint8_t *SecStart, const uint64_t SecSize, in decompressSection() argument 966 Data = SecStart; in decompressSection() 967 End = SecStart + SecSize; in decompressSection() 1003 const uint8_t *SecStart = BufStart + Entry.Offset; in readImpl() local 1015 SecStart, SecSize, DecompressBuf, DecompressBufSize)) in readImpl() 1017 SecStart = DecompressBuf; in readImpl() 1021 if (std::error_code EC = readOneSection(SecStart, SecSize, Entry)) in readImpl() 1023 if (Data != SecStart + SecSize) in readImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | SampleProfReader.h | 711 std::error_code decompressSection(const uint8_t *SecStart,
|