Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
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-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
DMangling.cpp111 if (auto SymType = Sym.getType()) { in getObjectSymbolInfo() local
112 if (*SymType == object::SymbolRef::ST_File) in getObjectSymbolInfo()
115 return SymType.takeError(); in getObjectSymbolInfo()
DRTDyldObjectLinkingLayer.cpp114 if (auto SymType = Sym.getType()) { in emit() local
115 if (*SymType == object::SymbolRef::ST_File) in emit()
118 ES.reportError(SymType.takeError()); in emit()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DSymbolSerializer.h50 template <typename SymType>
51 static CVSymbol writeOneSymbol(SymType &Sym, BumpPtrAllocator &Storage, in writeOneSymbol()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
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()
314 } else if (SymType == object::SymbolRef::ST_Function || in loadObjectImpl()
315 SymType == object::SymbolRef::ST_Data || in loadObjectImpl()
316 SymType == object::SymbolRef::ST_Unknown || in loadObjectImpl()
317 SymType == object::SymbolRef::ST_Other) { in loadObjectImpl()
341 LLVM_DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name in loadObjectImpl()
DRuntimeDyldELF.cpp1202 SymbolRef::Type SymType = SymbolRef::ST_Unknown; in processRelocationRef() local
1216 SymType = *SymTypeOrErr; in processRelocationRef()
1224 switch (SymType) { in processRelocationRef()
1527 bool IsExtern = Value.SymbolName || SymType == SymbolRef::ST_Unknown; in processRelocationRef()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
DPerfJITEventListener.cpp254 SymbolRef::Type SymType = *SymTypeOrErr; in notifyObjectLoaded() local
255 if (SymType != SymbolRef::ST_Function) in notifyObjectLoaded()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp253 SymbolRef::Type SymType = *SymTypeOrErr; in notifyObjectLoaded() local
254 if (SymType != SymbolRef::ST_Function) in notifyObjectLoaded()