HomeSort by: relevance | last modified time | path
    Searched refs:SymType (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
ObjectFileTransformer.cpp 84 Expected<SymbolRef::Type> SymType = Sym.getType();
85 if (!SymType) {
86 consumeError(SymType.takeError());
94 if (SymType.get() != SymbolRef::Type::ST_Function ||
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
SymbolSerializer.h 50 template <typename SymType>
51 static CVSymbol writeOneSymbol(SymType &Sym, BumpPtrAllocator &Storage,
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
Mangling.cpp 110 if (auto SymType = Sym.getType()) {
111 if (*SymType == object::SymbolRef::ST_File)
114 return SymType.takeError();
RTDyldObjectLinkingLayer.cpp 114 if (auto SymType = Sym.getType()) {
115 if (*SymType == object::SymbolRef::ST_File)
118 ES.reportError(SymType.takeError());
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
dbghelp_types.d 127 SYM_TYPE SymType;
161 SYM_TYPE SymType;
imagehlp.d 245 SYM_TYPE SymType;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 251 object::SymbolRef::Type SymType;
253 SymType = *SymTypeOrErr;
298 SymType != object::SymbolRef::ST_File) {
307 LLVM_DEBUG(dbgs() << "\tType: " << SymType << " (absolute) Name: " << Name
314 } else if (SymType == object::SymbolRef::ST_Function ||
315 SymType == object::SymbolRef::ST_Data ||
316 SymType == object::SymbolRef::ST_Unknown ||
317 SymType == object::SymbolRef::ST_Other) {
341 LLVM_DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name
RuntimeDyldELF.cpp 1199 SymbolRef::Type SymType = SymbolRef::ST_Unknown;
1213 SymType = *SymTypeOrErr;
1221 switch (SymType) {
1518 // an external symbol (either Value.SymbolName is set, or SymType is
1524 bool IsExtern = Value.SymbolName || SymType == SymbolRef::ST_Unknown;
1555 // SymType is SymbolRef::ST_Unknown) or out of range.
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 253 SymbolRef::Type SymType = *SymTypeOrErr;
254 if (SymType != SymbolRef::ST_Function)
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/PerfJITEvents/
PerfJITEventListener.cpp 254 SymbolRef::Type SymType = *SymTypeOrErr;
255 if (SymType != SymbolRef::ST_Function)
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachODebugMapParser.cpp 568 uint8_t SymType =
570 bool Extern = SymType & (MachO::N_EXT | MachO::N_PEXT);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.cpp 554 if (auto SymType = Sym.getType()) {
555 if (*SymType == object::SymbolRef::ST_File)
558 return SymType.takeError();

Completed in 28 milliseconds