Home
last modified time | relevance | path

Searched refs:SymType (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectFileInterface.cpp61 if (auto SymType = Sym.getType()) { in getMachOObjectFileSymbolInfo() local
62 if (*SymType == object::SymbolRef::ST_File) in getMachOObjectFileSymbolInfo()
65 return SymType.takeError(); in getMachOObjectFileSymbolInfo()
118 if (auto SymType = Sym.getType()) { in getELFObjectFileSymbolInfo() local
119 if (*SymType == object::SymbolRef::ST_File) in getELFObjectFileSymbolInfo()
122 return SymType.takeError(); in getELFObjectFileSymbolInfo()
195 if (auto SymType = Sym.getType()) { in getCOFFObjectFileSymbolInfo() local
196 if (*SymType == object::SymbolRef::ST_File) in getCOFFObjectFileSymbolInfo()
199 return SymType.takeError(); in getCOFFObjectFileSymbolInfo()
254 if (auto SymType = Sym.getType()) { in getGenericObjectFileSymbolInfo() local
[all …]
H A DRTDyldObjectLinkingLayer.cpp116 if (auto SymType = Sym.getType()) { in emit() local
117 if (*SymType == object::SymbolRef::ST_File) in emit()
120 ES.reportError(SymType.takeError()); in emit()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp84 Expected<SymbolRef::Type> SymType = Sym.getType(); in convert() local
85 if (!SymType) { in convert()
86 consumeError(SymType.takeError()); in convert()
94 if (SymType.get() != SymbolRef::Type::ST_Function || in convert()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolSerializer.h51 template <typename SymType>
52 static CVSymbol writeOneSymbol(SymType &Sym, BumpPtrAllocator &Storage, in writeOneSymbol()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp251 object::SymbolRef::Type SymType; in loadObjectImpl() local
253 SymType = *SymTypeOrErr; in loadObjectImpl()
298 SymType != object::SymbolRef::ST_File) { in loadObjectImpl()
307 LLVM_DEBUG(dbgs() << "\tType: " << SymType << " (absolute) Name: " << Name in loadObjectImpl()
317 } else if (SymType == object::SymbolRef::ST_Function || in loadObjectImpl()
318 SymType == object::SymbolRef::ST_Data || in loadObjectImpl()
319 SymType == object::SymbolRef::ST_Unknown || in loadObjectImpl()
320 SymType == object::SymbolRef::ST_Other) { in loadObjectImpl()
344 LLVM_DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name in loadObjectImpl()
H A DRuntimeDyldELF.cpp1242 SymbolRef::Type SymType = SymbolRef::ST_Unknown; in processRelocationRef() local
1255 SymType = *SymTypeOrErr; in processRelocationRef()
1263 switch (SymType) { in processRelocationRef()
1566 bool IsExtern = Value.SymbolName || SymType == SymbolRef::ST_Unknown; in processRelocationRef()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp213 uint8_t SymType = Sym->isCallable() ? MachO::N_FUN : MachO::N_GSYM; in startSynthesis() local
217 {*Sym, Builder.addSymbol(Sym->getName(), SymType, 1, 0, 0), in startSynthesis()
218 Builder.addSymbol(Sym->getName(), SymType, 0, 0, 0)}); in startSynthesis()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp254 SymbolRef::Type SymType = *SymTypeOrErr; in notifyObjectLoaded() local
255 if (SymType != SymbolRef::ST_Function) in notifyObjectLoaded()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp253 SymbolRef::Type SymType = *SymTypeOrErr; in notifyObjectLoaded() local
254 if (SymType != SymbolRef::ST_Function) in notifyObjectLoaded()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp673 uint16_t SymType = XCOFFSym.getSymbolType(); in getSymbolFlags() local
674 if ((SymType & VISIBILITY_MASK) == SYM_V_HIDDEN) in getSymbolFlags()
677 if ((SymType & VISIBILITY_MASK) == SYM_V_EXPORTED) in getSymbolFlags()
924 uint8_t SymType = CsectAuxRef.getSymbolType(); in getSymbolSize() local
925 if (SymType == XCOFF::XTY_SD || SymType == XCOFF::XTY_CM) in getSymbolSize()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp975 uint32_t SymType = *TypeOrErr; in getSymbolNMTypeChar() local
977 if (SymType == SymbolRef::ST_File) in getSymbolNMTypeChar()
1715 uint16_t SymType = XCOFFSym.getSymbolType(); in getXCOFFExports() local
1716 if ((SymType & XCOFF::VISIBILITY_MASK) == XCOFF::SYM_V_INTERNAL) in getXCOFFExports()
1718 if ((SymType & XCOFF::VISIBILITY_MASK) == XCOFF::SYM_V_HIDDEN) in getXCOFFExports()
1765 uint16_t SymType = XCOFFSym.getSymbolType(); in getXCOFFExports() local
1766 if ((SymType & XCOFF::VISIBILITY_MASK) == XCOFF::SYM_V_PROTECTED) in getXCOFFExports()
1768 else if ((SymType & XCOFF::VISIBILITY_MASK) == XCOFF::SYM_V_EXPORTED) in getXCOFFExports()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1247 const SymbolRef::Type SymType = unwrapOrError(Symbol.getType(), FileName); in createSymbolInfo() local
1248 return SymbolInfoTy(Addr, Name, SymType, /*IsMappingSymbol=*/false, in createSymbolInfo()