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

Derived Classes

lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
   19 class ARMMachORelocationInfo : public MCRelocationInfo {

Declarations

include/llvm/Support/TargetRegistry.h
   50 class MCRelocationInfo;
lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
   34 class MCRelocationInfo;
lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.h
   27 class MCRelocationInfo;
lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
   30 class MCRelocationInfo;

References

include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
   41                        std::unique_ptr<MCRelocationInfo> RelInfo,
include/llvm/MC/MCDisassembler/MCRelocationInfo.h
   30   MCRelocationInfo(const MCRelocationInfo &) = delete;
   31   MCRelocationInfo &operator=(const MCRelocationInfo &) = delete;
   31   MCRelocationInfo &operator=(const MCRelocationInfo &) = delete;
include/llvm/MC/MCDisassembler/MCSymbolizer.h
   41   std::unique_ptr<MCRelocationInfo> RelInfo;
   45   MCSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo)
include/llvm/Support/TargetRegistry.h
  109 MCRelocationInfo *createMCRelocationInfo(const Triple &TT, MCContext &Ctx);
  114                                  std::unique_ptr<MCRelocationInfo> &&RelInfo);
  192   using MCRelocationInfoCtorTy = MCRelocationInfo *(*)(const Triple &TT,
  197       std::unique_ptr<MCRelocationInfo> &&RelInfo);
  563   MCRelocationInfo *createMCRelocationInfo(StringRef TT, MCContext &Ctx) const {
  586                      std::unique_ptr<MCRelocationInfo> &&RelInfo) const {
lib/MC/MCDisassembler/Disassembler.cpp
   87   std::unique_ptr<MCRelocationInfo> RelInfo(
lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
  193                                  std::unique_ptr<MCRelocationInfo> &&RelInfo) {
lib/MC/MCDisassembler/MCRelocationInfo.cpp
   27 MCRelocationInfo *llvm::createMCRelocationInfo(const Triple &TT,
   29   return new MCRelocationInfo(Ctx);
lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
  276                                 std::unique_ptr<MCRelocationInfo> &&RelInfo) {
lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
   23                             std::unique_ptr<MCRelocationInfo> RelInfo,
lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
 1255                               std::unique_ptr<MCRelocationInfo> &&RelInfo) {
lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
  155   AMDGPUSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> &&RelInfo,
lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
   97 MCRelocationInfo *createARMMachORelocationInfo(MCContext &Ctx);
lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
   19 class ARMMachORelocationInfo : public MCRelocationInfo {
   40 MCRelocationInfo *llvm::createARMMachORelocationInfo(MCContext &Ctx) {
tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  969   std::unique_ptr<llvm::MCRelocationInfo> rel_info_up(
tools/llvm-objdump/MachODump.cpp
 7225   std::unique_ptr<MCRelocationInfo> RelInfo(
 7263   std::unique_ptr<MCRelocationInfo> ThumbRelInfo;
tools/llvm-objdump/llvm-objdump.cpp
 1236       std::unique_ptr<MCRelocationInfo> RelInfo(
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
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_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; };
 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>