Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/dsymutil/
H A DMachOUtils.cpp160 static bool transferSymbol(NListTy NList, bool IsLittleEndian, in transferSymbol() argument
165 if ((NList.n_type & MachO::N_TYPE) == MachO::N_UNDF) in transferSymbol()
170 if (NList.n_type == MachO::N_AST) in transferSymbol()
173 StringRef Name = StringRef(Strings.begin() + NList.n_strx); in transferSymbol()
179 (NList.n_type != MachO::N_SO) || (!Name.empty() && Name[0] != '\0'); in transferSymbol()
181 } else if (NList.n_type == MachO::N_SO) { in transferSymbol()
189 NList.n_strx = NewStrings.getStringOffset(Name) + 1; in transferSymbol()
191 MachO::swapStruct(NList); in transferSymbol()
193 NewSymtab.append(reinterpret_cast<char *>(&NList), in transferSymbol()
194 reinterpret_cast<char *>(&NList + 1)); in transferSymbol()
/llvm-project-15.0.7/lld/MachO/
H A DInputFiles.cpp768 template <class NList>
848 template <class NList>
867 template <class NList>
893 template <class NList> static bool isUndef(const NList &sym) { in isUndef()
901 using NList = typename LP::nlist; in parseSymbols() typedef
908 const NList &sym = nList[i]; in parseSymbols()
1024 const NList &sym = nList[i]; in parseSymbols()
1065 using NList = typename LP::nlist; in parse() typedef
1101 ArrayRef<NList> nList(reinterpret_cast<const NList *>(buf + c->symoff), in parse()
1147 ArrayRef<NList> nList(reinterpret_cast<const NList *>(buf + c->symoff), in parseLazy()
[all …]
H A DInputFiles.h188 template <class NList>
189 Symbol *parseNonSectionSymbol(const NList &sym, StringRef name);
/llvm-project-15.0.7/lldb/examples/python/
H A Dmach_o.py1125 nlist = Mach.NList()
1572 class NList: class in Mach
1618 stab = Mach.NList.Type.Stab(self.value)
1645 self.type = Mach.NList.Type()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DDebuggerSupportPlugin.cpp35 using NList = MachO::nlist_64; typedef