Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFThumb.h28 Expected<object::SymbolRef::Type> SymTypeOrErr = Symbol->getType(); in isThumbFunc() local
29 if (!SymTypeOrErr) { in isThumbFunc()
32 logAllUnhandledErrors(SymTypeOrErr.takeError(), OS); in isThumbFunc()
36 if (*SymTypeOrErr != object::SymbolRef::ST_Function) in isThumbFunc()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp248 Expected<SymbolRef::Type> SymTypeOrErr = Sym.getType(); in notifyObjectLoaded() local
249 if (!SymTypeOrErr) { in notifyObjectLoaded()
251 consumeError(SymTypeOrErr.takeError()); in notifyObjectLoaded()
254 SymbolRef::Type SymType = *SymTypeOrErr; in notifyObjectLoaded()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp250 Expected<SymbolRef::Type> SymTypeOrErr = Sym.getType(); in notifyObjectLoaded() local
251 if (!SymTypeOrErr) { in notifyObjectLoaded()
253 consumeError(SymTypeOrErr.takeError()); in notifyObjectLoaded()
256 SymbolRef::Type SymType = *SymTypeOrErr; in notifyObjectLoaded()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp252 if (auto SymTypeOrErr = I->getType()) in loadObjectImpl() local
253 SymType = *SymTypeOrErr; in loadObjectImpl()
255 return SymTypeOrErr.takeError(); in loadObjectImpl()
H A DRuntimeDyldELF.cpp1627 Expected<SymbolRef::Type> SymTypeOrErr = Symbol->getType(); in processRelocationRef() local
1628 if (!SymTypeOrErr) { in processRelocationRef()
1631 logAllUnhandledErrors(SymTypeOrErr.takeError(), OS); in processRelocationRef()
1634 SymType = *SymTypeOrErr; in processRelocationRef()