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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp118 Expected<SymbolRef::Type> SymTypeOrErr = Sym.getType(); local
119 if (!SymTypeOrErr) {
121 consumeError(SymTypeOrErr.takeError());
124 SymbolRef::Type SymType = *SymTypeOrErr;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFThumb.h27 Expected<object::SymbolRef::Type> SymTypeOrErr = Symbol->getType(); local
28 if (!SymTypeOrErr) {
31 logAllUnhandledErrors(SymTypeOrErr.takeError(), OS);
36 if (*SymTypeOrErr != object::SymbolRef::ST_Function)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp248 Expected<SymbolRef::Type> SymTypeOrErr = Sym.getType(); local
249 if (!SymTypeOrErr) {
251 consumeError(SymTypeOrErr.takeError());
254 SymbolRef::Type SymType = *SymTypeOrErr;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp245 if (auto SymTypeOrErr = I->getType())
246 SymType = *SymTypeOrErr;
248 return SymTypeOrErr.takeError();
H A DRuntimeDyldELF.cpp1139 Expected<SymbolRef::Type> SymTypeOrErr = Symbol->getType(); local
1140 if (!SymTypeOrErr) {
1143 logAllUnhandledErrors(SymTypeOrErr.takeError(), OS);
1147 SymType = *SymTypeOrErr;

Completed in 147 milliseconds