Home
last modified time | relevance | path

Searched refs:SecEnd (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp190 const uint8_t *SecEnd = SecContent + SectionContent.size(); in printSectionsAsHex() local
192 for (const uint8_t *SecPtr = SecContent; SecPtr < SecEnd; SecPtr += 16) { in printSectionsAsHex()
200 for (i = 0; TmpSecPtr < SecEnd && i < 4; ++i) { in printSectionsAsHex()
201 for (k = 0; TmpSecPtr < SecEnd && k < 4; k++, TmpSecPtr++) { in printSectionsAsHex()
219 for (i = 0; TmpSecPtr + i < SecEnd && i < 16; ++i) in printSectionsAsHex()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp652 uint64_t SecEnd = W.OS.tell(); in computeSymbolTable() local
653 SymtabSection->setOffsets(SecStart, SecEnd); in computeSymbolTable()
666 SecEnd = W.OS.tell(); in computeSymbolTable()
667 SymtabShndxSection->setOffsets(SecStart, SecEnd); in computeSymbolTable()
989 uint64_t SecEnd = W.OS.tell(); in writeObject() local
990 Section.setOffsets(SecStart, SecEnd); in writeObject()
1032 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1033 Group->setOffsets(SecStart, SecEnd); in writeObject()
1058 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1059 RelSection->setOffsets(SecStart, SecEnd); in writeObject()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp327 GlobalVariable *SecEnd = in CreateSecStartEnd() local
330 SecEnd->setVisibility(GlobalValue::HiddenVisibility); in CreateSecStartEnd()
333 return std::make_pair(SecStart, SecEnd); in CreateSecStartEnd()
339 return std::make_pair(GEP, SecEnd); in CreateSecStartEnd()
347 auto SecEnd = SecStartEnd.second; in CreateInitCallsForSections() local
350 M, CtorName, InitFunctionName, {PtrTy, PtrTy}, {SecStart, SecEnd}); in CreateInitCallsForSections()