Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DObjDumper.cpp81 const uint8_t *SecEnd = SectionContent.bytes_end(); in printSectionAsString() local
83 while (CurrentWord <= SecEnd) { in printSectionAsString()
85 SecEnd - CurrentWord); in printSectionAsString()
113 const uint8_t *SecEnd = SecContent + SectionContent.size(); in printSectionAsHex() local
115 for (const uint8_t *SecPtr = SecContent; SecPtr < SecEnd; SecPtr += 16) { in printSectionAsHex()
122 for (i = 0; TmpSecPtr < SecEnd && i < 4; ++i) { in printSectionAsHex()
123 for (k = 0; TmpSecPtr < SecEnd && k < 4; k++, TmpSecPtr++) { in printSectionAsHex()
140 for (i = 0; TmpSecPtr + i < SecEnd && i < 16; ++i) in printSectionAsHex()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DELFObjectWriter.cpp757 uint64_t SecEnd = W.OS.tell(); in computeSymbolTable() local
772 SecEnd = W.OS.tell(); in computeSymbolTable()
1099 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1100 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd); in writeObject()
1151 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1152 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd); in writeObject()
1180 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1187 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1199 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1206 uint64_t SecEnd = W.OS.tell(); in writeObject() local
[all …]
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp261 GlobalVariable *SecEnd = in CreateSecStartEnd() local
264 SecEnd->setVisibility(GlobalValue::HiddenVisibility); in CreateSecStartEnd()
266 Value *SecEndPtr = IRB.CreatePointerCast(SecEnd, Ty); in CreateSecStartEnd()
283 auto SecEnd = SecStartEnd.second; in CreateInitCallsForSections() local
286 M, SanCovModuleCtorName, InitFunctionName, {Ty, Ty}, {SecStart, SecEnd}); in CreateInitCallsForSections()