#include "llvm/TextAPI/Symbol.h"
#include <string>
namespace llvm {
namespace MachO {
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
LLVM_DUMP_METHOD void Symbol::dump(raw_ostream &OS) const {
std::string Result;
if (isUndefined())
Result += "(undef) ";
if (isWeakDefined())
Result += "(weak-def) ";
if (isWeakReferenced())
Result += "(weak-ref) ";
if (isThreadLocalValue())
Result += "(tlv) ";
switch (Kind) {
case EncodeKind::GlobalSymbol:
Result += Name.str();
break;
case EncodeKind::ObjectiveCClass:
Result += "(ObjC Class) " + Name.str();
break;
case EncodeKind::ObjectiveCClassEHType:
Result += "(ObjC Class EH) " + Name.str();
break;
case EncodeKind::ObjectiveCInstanceVariable:
Result += "(ObjC IVar) " + Name.str();
break;
}
OS << Result;
}
#endif
Symbol::const_filtered_target_range
Symbol::targets(ArchitectureSet Architectures) const { … }
bool Symbol::operator==(const Symbol &O) const { … }
SimpleSymbol parseSymbol(StringRef SymName) { … }
}
}