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.cpp194 const uint8_t *SecEnd = SecContent + SectionContent.size(); in printSectionsAsHex() local
196 for (const uint8_t *SecPtr = SecContent; SecPtr < SecEnd; SecPtr += 16) { in printSectionsAsHex()
204 for (i = 0; TmpSecPtr < SecEnd && i < 4; ++i) { in printSectionsAsHex()
205 for (k = 0; TmpSecPtr < SecEnd && k < 4; k++, TmpSecPtr++) { in printSectionsAsHex()
223 for (i = 0; TmpSecPtr + i < SecEnd && i < 16; ++i) in printSectionsAsHex()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp655 uint64_t SecEnd = W.OS.tell(); in computeSymbolTable() local
656 SymtabSection->setOffsets(SecStart, SecEnd); in computeSymbolTable()
669 SecEnd = W.OS.tell(); in computeSymbolTable()
670 SymtabShndxSection->setOffsets(SecStart, SecEnd); in computeSymbolTable()
1039 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1040 Section.setOffsets(SecStart, SecEnd); in writeObject()
1080 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1081 Group->setOffsets(SecStart, SecEnd); in writeObject()
1105 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1106 RelSection->setOffsets(SecStart, SecEnd); in writeObject()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp357 GlobalVariable *SecEnd = new GlobalVariable(M, Ty, false, Linkage, nullptr, in CreateSecStartEnd() local
359 SecEnd->setVisibility(GlobalValue::HiddenVisibility); in CreateSecStartEnd()
362 return std::make_pair(SecStart, SecEnd); in CreateSecStartEnd()
368 return std::make_pair(GEP, SecEnd); in CreateSecStartEnd()
378 auto SecEnd = SecStartEnd.second; in CreateInitCallsForSections() local
381 M, CtorName, InitFunctionName, {PtrTy, PtrTy}, {SecStart, SecEnd}); in CreateInitCallsForSections()