reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Derived Classes

include/llvm/Object/COFFImportFile.h
   30 class COFFImportFile : public SymbolicFile {
include/llvm/Object/IRObjectFile.h
   31 class IRObjectFile : public SymbolicFile {
include/llvm/Object/ObjectFile.h
  221 class ObjectFile : public SymbolicFile {
include/llvm/Object/TapiFile.h
   26 class TapiFile : public SymbolicFile {

Declarations

include/llvm/Object/SymbolicFile.h
   94 class SymbolicFile;

References

include/llvm/Object/COFFImportFile.h
   30 class COFFImportFile : public SymbolicFile {
include/llvm/Object/IRObjectFile.h
   31 class IRObjectFile : public SymbolicFile {
include/llvm/Object/ObjectFile.h
  221 class ObjectFile : public SymbolicFile {
  404   const SymbolicFile *O = BasicSymbolRef::getObject();
include/llvm/Object/SymbolicFile.h
  100   const SymbolicFile *OwningObject = nullptr;
  122   BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner);
  135   const SymbolicFile *getObject() const;
  163   static Expected<std::unique_ptr<SymbolicFile>>
  167   static Expected<std::unique_ptr<SymbolicFile>>
  171   static Expected<OwningBinary<SymbolicFile>>
  180                                       const SymbolicFile *Owner)
  207 inline const SymbolicFile *BasicSymbolRef::getObject() const {
include/llvm/Object/TapiFile.h
   26 class TapiFile : public SymbolicFile {
include/llvm/Support/Casting.h
   34   using SimpleType = From; // The real type this represents...
   37   static SimpleType &getSimplifiedValue(From &Val) { return Val; }
   41   using NonConstSimpleType = typename simplify_type<From>::SimpleType;
   47   static RetType getSimplifiedValue(const From& Val) {
   57   static inline bool doit(const From &Val) {
   58     return To::classof(&Val);
   76   static inline bool doit(const From &Val) {
   77     return isa_impl<To, From>::doit(Val);
  104   static inline bool doit(const From *Val) {
  106     return isa_impl<To, From>::doit(*Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  141 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) {
  142   return isa_impl_wrap<X, const Y,
  142   return isa_impl_wrap<X, const Y,
  143                        typename simplify_type<const Y>::SimpleType>::doit(Val);
  172   using ret_type = To *;       // Pointer arg case, return Ty*
  176   using ret_type = const To *; // Constant pointer arg case, return const Ty*
  198   using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  228     typename cast_retty<To, FromTy>::ret_type Res2
  228     typename cast_retty<To, FromTy>::ret_type Res2
  236       std::is_same<X, typename simplify_type<X>::SimpleType>::value;
  236       std::is_same<X, typename simplify_type<X>::SimpleType>::value;
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  258   return cast_convert_val<X, Y,
  259                           typename simplify_type<Y>::SimpleType>::doit(Val);
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  265   return cast_convert_val<X, Y*,
  266                           typename simplify_type<Y*>::SimpleType>::doit(Val);
  337 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
include/llvm/Support/type_traits.h
   55 struct add_const_past_pointer { using type = const T; };
lib/Object/ArchiveWriter.cpp
  356   std::unique_ptr<object::SymbolicFile> Obj;
  358     auto ObjOrErr = object::SymbolicFile::createSymbolicFile(
  367     auto ObjOrErr = object::SymbolicFile::createSymbolicFile(Buf);
lib/Object/SymbolicFile.cpp
   37 Expected<std::unique_ptr<SymbolicFile>>
tools/llvm-nm/llvm-nm.cpp
  332 static char isSymbolList64Bit(SymbolicFile &Obj) {
  354 static void darwinPrintSymbol(SymbolicFile &Obj, const NMSymbol &S,
  710 static void sortAndPrintSymbolList(SymbolicFile &Obj, bool printName,
 1064 static bool isObject(SymbolicFile &Obj, basic_symbol_iterator I) {
 1072 static StringRef getNMTypeName(SymbolicFile &Obj, basic_symbol_iterator I) {
 1082 static char getNMSectionTagAndName(SymbolicFile &Obj, basic_symbol_iterator I,
 1185 dumpSymbolNamesFromObject(SymbolicFile &Obj, bool printName,
 1747 static bool checkMachOAndArchFlags(SymbolicFile *O, std::string &Filename) {
 1826         if (SymbolicFile *O = dyn_cast<SymbolicFile>(&*ChildOrErr.get())) {
 1826         if (SymbolicFile *O = dyn_cast<SymbolicFile>(&*ChildOrErr.get())) {
 1900                 if (SymbolicFile *O =
 1901                         dyn_cast<SymbolicFile>(&*ChildOrErr.get())) {
 1969               if (SymbolicFile *O =
 1970                       dyn_cast<SymbolicFile>(&*ChildOrErr.get())) {
 2035           if (SymbolicFile *F = dyn_cast<SymbolicFile>(&*ChildOrErr.get())) {
 2035           if (SymbolicFile *F = dyn_cast<SymbolicFile>(&*ChildOrErr.get())) {
 2066   if (SymbolicFile *O = dyn_cast<SymbolicFile>(&Bin)) {
 2066   if (SymbolicFile *O = dyn_cast<SymbolicFile>(&Bin)) {
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1983     { typedef _Up     type; };