Home
last modified time | relevance | path

Searched refs:NSec (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DMachOLinkGraphBuilder.cpp80 bool MachOLinkGraphBuilder::isDebugSection(const NormalizedSection &NSec) { in isDebugSection() argument
81 return (NSec.Flags & MachO::S_ATTR_DEBUG && in isDebugSection()
82 strcmp(NSec.SegName, "__DWARF") == 0); in isDebugSection()
111 NormalizedSection NSec; in createNormalizedSections() local
124 memcpy(&NSec.SectName, &Sec64.sectname, 16); in createNormalizedSections()
125 NSec.SectName[16] = '\0'; in createNormalizedSections()
126 memcpy(&NSec.SegName, Sec64.segname, 16); in createNormalizedSections()
127 NSec.SegName[16] = '\0'; in createNormalizedSections()
129 NSec.Address = Sec64.addr; in createNormalizedSections()
130 NSec.Size = Sec64.size; in createNormalizedSections()
[all …]
DMachO_x86_64.cpp203 auto &NSec = in addRelocations() local
205 if (!NSec.GraphSection) { in addRelocations()
208 << NSec.SegName << "/" << NSec.SectName in addRelocations()
230 auto &NSec = in addRelocations()
232 dbgs() << " " << NSec.SectName << " + " in addRelocations()
DMachO_arm64.cpp201 auto &NSec = in addRelocations() local
203 if (!NSec.GraphSection) { in addRelocations()
206 << NSec.SegName << "/" << NSec.SectName in addRelocations()
227 auto &NSec = in addRelocations()
229 dbgs() << " " << NSec.SectName << " + " in addRelocations()
DMachOLinkGraphBuilder.h160 static bool isDebugSection(const NormalizedSection &NSec);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachOLinkGraphBuilder.cpp106 NormalizedSection NSec; in createNormalizedSections() local
119 NSec.Address = Sec64.addr; in createNormalizedSections()
120 NSec.Size = Sec64.size; in createNormalizedSections()
121 NSec.Alignment = 1ULL << Sec64.align; in createNormalizedSections()
122 NSec.Flags = Sec64.flags; in createNormalizedSections()
126 NSec.Address = Sec32.addr; in createNormalizedSections()
127 NSec.Size = Sec32.size; in createNormalizedSections()
128 NSec.Alignment = 1ULL << Sec32.align; in createNormalizedSections()
129 NSec.Flags = Sec32.flags; in createNormalizedSections()
134 dbgs() << " " << *Name << ": " << formatv("{0:x16}", NSec.Address) in createNormalizedSections()
[all …]