Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DELFObjectWriter.cpp742 uint64_t SecEnd = W.OS.tell(); in computeSymbolTable() local
743 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd); in computeSymbolTable()
757 SecEnd = W.OS.tell(); in computeSymbolTable()
758 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd); in computeSymbolTable()
1084 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1085 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd); in writeObject()
1134 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1135 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd); in writeObject()
1163 uint64_t SecEnd = W.OS.tell(); in writeObject() local
1164 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd); in writeObject()
[all …]
/external/llvm/lib/MC/
DELFObjectWriter.cpp932 uint64_t SecEnd = getStream().tell(); in computeSymbolTable() local
933 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd); in computeSymbolTable()
947 SecEnd = getStream().tell(); in computeSymbolTable()
948 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd); in computeSymbolTable()
1244 uint64_t SecEnd = getStream().tell(); in writeObject() local
1245 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd); in writeObject()
1286 uint64_t SecEnd = getStream().tell(); in writeObject() local
1287 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd); in writeObject()
1301 uint64_t SecEnd = getStream().tell(); in writeObject() local
1302 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd); in writeObject()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp259 GlobalVariable *SecEnd = in CreateSecStartEnd() local
262 SecEnd->setVisibility(GlobalValue::HiddenVisibility); in CreateSecStartEnd()
264 return std::make_pair(SecStart, SecEnd); in CreateSecStartEnd()
274 auto SecEnd = SecStartEnd.second; in CreateInitCallsForSections() local
278 {IRB.CreatePointerCast(SecStart, Ty), IRB.CreatePointerCast(SecEnd, Ty)}); in CreateInitCallsForSections()