Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceELFObjectWriter.cpp128 ELFRelocationSection *RelSection = createSection<ELFRelocationSection>( in createRelocationSection() local
130 RelSection->setRelatedSection(RelatedSection); in createRelocationSection()
131 return RelSection; in createRelocationSection()
146 ELFRelocationSection *RelSection = *RelIt; in assignRelSectionNumInPairs() local
147 if (RelSection->getRelatedSection() == UserSection) { in assignRelSectionNumInPairs()
148 RelSection->setInfoNum(UserSection->getNumber()); in assignRelSectionNumInPairs()
149 RelSection->setNumber(CurSectionNumber++); in assignRelSectionNumInPairs()
150 RelSection->setNameStrIndex(ShStrTab->getIndex(RelSection->getName())); in assignRelSectionNumInPairs()
151 AllSections.push_back(RelSection); in assignRelSectionNumInPairs()
226 ELFRelocationSection *RelSection = nullptr; in writeFunctionCode() local
[all …]
/external/llvm/lib/MC/
DELFObjectWriter.cpp1247 MCSectionELF *RelSection = createRelocationSection(Ctx, Section); in writeObject() local
1261 if (RelSection) in writeObject()
1262 Members.push_back(RelSection); in writeObject()
1266 if (RelSection) { in writeObject()
1267 SectionIndexMap[RelSection] = addToSectionTable(RelSection); in writeObject()
1268 Relocations.push_back(RelSection); in writeObject()
1293 for (MCSectionELF *RelSection : Relocations) { in writeObject()
1294 align(RelSection->getAlignment()); in writeObject()
1299 writeRelocations(Asm, *RelSection->getAssociatedSection()); in writeObject()
1302 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd); in writeObject()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DELFObjectWriter.cpp1087 MCSectionELF *RelSection = createRelocationSection(Ctx, Section); in writeObject() local
1101 if (RelSection) in writeObject()
1102 Members.push_back(RelSection); in writeObject()
1106 if (RelSection) { in writeObject()
1107 SectionIndexMap[RelSection] = addToSectionTable(RelSection); in writeObject()
1108 Relocations.push_back(RelSection); in writeObject()
1154 for (MCSectionELF *RelSection : Relocations) { in writeObject()
1155 align(RelSection->getAlignment()); in writeObject()
1161 cast<MCSectionELF>(*RelSection->getAssociatedSection())); in writeObject()
1164 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd); in writeObject()
/external/swiftshader/third_party/LLVM/lib/MC/
DELFObjectWriter.cpp548 const MCSectionELF *RelSection = RelMap.lookup(&Section); in ComputeIndexMap() local
549 if (RelSection) in ComputeIndexMap()
550 SectionIndexMap[RelSection] = Index++; in ComputeIndexMap()