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

References

include/llvm/ADT/SmallVector.h
   75   AlignedCharArrayUnion<T> FirstEl;
  114   using value_type = T;
  115   using iterator = T *;
  116   using const_iterator = const T *;
  121   using reference = T &;
  122   using const_reference = const T &;
  123   using pointer = T *;
  124   using const_pointer = const T *;
  259 class SmallVectorTemplateBase<T, true> : public SmallVectorTemplateCommon<T> {
  264   static void destroy_range(T *, T *) {}
  264   static void destroy_range(T *, T *) {}
  299   void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); }
  302   void push_back(const T &Elt) {
  305     memcpy(reinterpret_cast<void *>(this->end()), &Elt, sizeof(T));
  315 class SmallVectorImpl : public SmallVectorTemplateBase<T> {
  316   using SuperClass = SmallVectorTemplateBase<T>;
  357   void resize(size_type N, const T &NV) {
  374   LLVM_NODISCARD T pop_back_val() {
  397   void append(size_type NumInputs, const T &Elt) {
  405   void append(std::initializer_list<T> IL) {
  412   void assign(size_type NumElts, const T &Elt) {
  429   void assign(std::initializer_list<T> IL) {
  467   iterator insert(iterator I, T &&Elt) {
  497   iterator insert(iterator I, const T &Elt) {
  526   iterator insert(iterator I, size_type NumToInsert, const T &Elt) {
  637   void insert(iterator I, std::initializer_list<T> IL) {
  820   AlignedCharArrayUnion<T> InlineElts[N];
  837 class SmallVector : public SmallVectorImpl<T>, SmallVectorStorage<T, N> {
  837 class SmallVector : public SmallVectorImpl<T>, SmallVectorStorage<T, N> {
  846   explicit SmallVector(size_t Size, const T &Value = T())
  865   SmallVector(std::initializer_list<T> IL) : SmallVectorImpl<T>(N) {
  884   SmallVector(SmallVectorImpl<T> &&RHS) : SmallVectorImpl<T>(N) {
include/llvm/Support/AlignOf.h
   30   T t;
   39 template <typename T> union SizerImpl<T> { char arr[sizeof(T)]; };
   50       llvm::detail::SizerImpl<T, Ts...>)];
include/llvm/Support/type_traits.h
   91     T t;
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  145       std::is_copy_constructible<detail::trivial_helper<T>>::value;
  147       !std::is_copy_constructible<T>::value;
  151       std::is_move_constructible<detail::trivial_helper<T>>::value;
  153       !std::is_move_constructible<T>::value;
  157       is_copy_assignable<detail::trivial_helper<T>>::value;
  159       !is_copy_assignable<T>::value;
  163       is_move_assignable<detail::trivial_helper<T>>::value;
  165       !is_move_assignable<T>::value;
  169       std::is_destructible<detail::trivial_helper<T>>::value;
lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
  909 void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
  914 void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
  924     RelocationEntry RECopy = RE;
 1062     const RelocationEntry &RE = Relocs[i];
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  927 void RuntimeDyldELF::resolveRelocation(const RelocationEntry &RE,
  981   RelocationEntry RE(SectionID, Offset, RelType, Value.Addend, Value.Offset);
 1077     RelocationEntry REmovz_g3(SectionID, StubTargetAddr - Section.getAddress(),
 1079     RelocationEntry REmovk_g2(SectionID,
 1082     RelocationEntry REmovk_g1(SectionID,
 1085     RelocationEntry REmovk_g0(SectionID,
 1243         RelocationEntry RE(SectionID, StubTargetAddr - Section.getAddress(),
 1287         RelocationEntry RE(SectionID, Offset, RelType, i->second);
 1301         RelocationEntry REHi(SectionID, StubTargetAddr - Section.getAddress(),
 1303         RelocationEntry RELo(SectionID,
 1315         RelocationEntry RE(SectionID, Offset, RelType, Section.getStubOffset());
 1321       RelocationEntry RE(SectionID, Offset, RelType, Addend);
 1327         RelocationEntry &Reloc = I->second;
 1340       RelocationEntry RE(SectionID, Offset, RelType, Addend);
 1360     RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
 1382         RelocationEntry RE(SectionID, Offset, RelType, i->second);
 1397           RelocationEntry REHi(SectionID, StubTargetAddr - Section.getAddress(),
 1399           RelocationEntry RELo(SectionID,
 1412           RelocationEntry REHighest(SectionID,
 1415           RelocationEntry REHigher(SectionID,
 1418           RelocationEntry REHi(SectionID,
 1421           RelocationEntry RELo(SectionID,
 1436         RelocationEntry RE(SectionID, Offset, RelType, Section.getStubOffset());
 1480           RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
 1503           RelocationEntry RE(SectionID, StubTargetAddr - Section.getAddress(),
 1514           RelocationEntry REhst(SectionID, StubRelocOffset + 0,
 1516           RelocationEntry REhr(SectionID, StubRelocOffset + 4,
 1518           RelocationEntry REh(SectionID, StubRelocOffset + 12,
 1520           RelocationEntry REl(SectionID, StubRelocOffset + 16,
 1597       RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
 1637       RelocationEntry RE(SectionID, StubOffset + 8, ELF::R_390_64,
 1711         RelocationEntry RE(SectionID, Offset, ELF::R_X86_64_PC32, Value.Addend,
 1723       RelocationEntry RE =
 1736       RelocationEntry RE =
 1824     RelocationEntry RE =
 1842   RelocationEntry GOTRE(SectionID, Offset, Type, GOTOffset);
 1846 RelocationEntry RuntimeDyldELF::computeGOTOffsetRE(uint64_t GOTOffset,
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
  117   RelocationEntry computeGOTOffsetRE(uint64_t GOTOffset, uint64_t SymbolOffset,
  150   SmallVector<std::pair<RelocationValueRef, RelocationEntry>, 8> PendingRelocs;
  175   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override;
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
  275   typedef SmallVector<RelocationEntry, 64> RelocationList;
  400   void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID);
  404   void addRelocationForSymbol(const RelocationEntry &RE, StringRef SymbolName);
  416   virtual void resolveRelocation(const RelocationEntry &RE, uint64_t Value) = 0;
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
   46 int64_t RuntimeDyldMachO::memcpyAddend(const RelocationEntry &RE) const {
   87   RelocationEntry R(SectionID, Offset, RelocType, Addend, IsPCRel, Size);
   99     const RelocationEntry &RE, ObjSectionToIDMap &ObjSectionToID) {
  148 void RuntimeDyldMachO::dumpRelocationToResolve(const RelocationEntry &RE,
  214     RelocationEntry RE(PTSectionID, PTEntryOffset,
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
   57   int64_t memcpyAddend(const RelocationEntry &RE) const;
   64   RelocationEntry getRelocationEntry(unsigned SectionID,
  100                         const RelocationEntry &RE,
  109   void dumpRelocationToResolve(const RelocationEntry &RE, uint64_t Value) const;
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
   88       RelocationEntry RE(SectionID, Offset, RelType, 0, -1, 0, 0, 0, false, 0);
  104         RelocationEntry RE =
  111         RelocationEntry RE =
  117         RelocationEntry RE = RelocationEntry(SectionID, Offset, RelType,
  131   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
  108       RelocationEntry RE(SectionID, Offset, RelType, 0, -1, 0, 0, 0, false, 0);
  127         RelocationEntry RE = RelocationEntry(
  134         RelocationEntry RE =
  141         RelocationEntry RE =
  147         RelocationEntry RE = RelocationEntry(SectionID, Offset, RelType,
  153         RelocationEntry RE = RelocationEntry(
  162         RelocationEntry RE =
  174   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
   86   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
  178     const RelocationEntry RE(SectionID, Offset, RelType, Addend);
  253       RelocationEntry RE(SectionID, Offset, RelType, Addend);
  264       RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend);
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
   14 void RuntimeDyldELFMips::resolveRelocation(const RelocationEntry &RE,
   29 uint64_t RuntimeDyldELFMips::evaluateRelocation(const RelocationEntry &RE,
   41 void RuntimeDyldELFMips::applyRelocation(const RelocationEntry &RE,
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
   28   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override;
   44   uint64_t evaluateRelocation(const RelocationEntry &RE, uint64_t Value,
   50   void applyRelocation(const RelocationEntry &RE, uint64_t Value);
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
   34   Expected<int64_t> decodeAddend(const RelocationEntry &RE) const {
  305     RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
  355   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
  442   void processGOTRelocation(const RelocationEntry &RE,
  464       RelocationEntry GOTRE(RE.SectionID, StubOffset,
  474     RelocationEntry TargetRE(RE.SectionID, RE.Offset, RE.RelType, Offset,
  510     RelocationEntry R(SectionID, Offset, MachO::ARM64_RELOC_SUBTRACTOR, (uint64_t)Addend,
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
   63   Expected<int64_t> decodeAddend(const RelocationEntry &RE) const {
  160     RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
  203   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
  305   void processBranchRelocation(const RelocationEntry &RE,
  329       RelocationEntry StubRE(
  339     RelocationEntry TargetRE(RE.SectionID, RE.Offset, RE.RelType, 0,
  418     RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID,
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
   67     RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
   98   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
  202     RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID,
  237       RelocationEntry RE(JTSectionID, JTEntryOffset + 1,
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
   50     RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
   86   void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
  129   void processGOTRelocation(const RelocationEntry &RE,
  142       RelocationEntry GOTRE(RE.SectionID, Section.getStubOffset(),
  152     RelocationEntry TargetRE(RE.SectionID, RE.Offset,
  225     RelocationEntry R(SectionID, Offset, MachO::X86_64_RELOC_SUBTRACTOR, (uint64_t)Addend,
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/bits/stl_pair.h
  101 		      is_constructible<_T2, const _U2&>>::value;
  101 		      is_constructible<_T2, const _U2&>>::value;
  108 		      is_convertible<const _U2&, _T2>>::value;
  108 		      is_convertible<const _U2&, _T2>>::value;
  115 		      is_constructible<_T2, _U2&&>>::value;
  115 		      is_constructible<_T2, _U2&&>>::value;
  122 		      is_convertible<_U2&&, _T2>>::value;
  122 		      is_convertible<_U2&&, _T2>>::value;
  129 				  is_convertible<_U2&&, _T2>>;
  129 				  is_convertible<_U2&&, _T2>>;
  134 		      is_constructible<_T2, _U2&&>,
  134 		      is_constructible<_T2, _U2&&>,
  143 				  is_convertible<const _U2&, _T2>>;
  143 				  is_convertible<const _U2&, _T2>>;
  148 		      is_constructible<_T2, const _U2&&>,
  148 		      is_constructible<_T2, const _U2&&>,
  209     : private __pair_base<_T1, _T2>
  212       typedef _T2 second_type;   /// @c second_type is the second bound type
  215       _T2 second;                /// @c second is a copy of the second object
  252       using _PCCP = _PCC<true, _T1, _T2>;
  260       constexpr pair(const _T1& __a, const _T2& __b)
  269       explicit constexpr pair(const _T1& __a, const _T2& __b)
  283 			    _T1, _T2>;
  311        constexpr pair(_U1&& __x, const _T2& __y)
  318        explicit constexpr pair(_U1&& __x, const _T2& __y)
  325        constexpr pair(const _T1& __x, _U2&& __y)
  341 	constexpr pair(_U1&& __x, _U2&& __y)
  380 		       is_copy_assignable<_T2>>::value,
  391 		       is_move_assignable<_T2>>::value,
  403 				is_assignable<_T2&, const _U2&>>::value,
  403 				is_assignable<_T2&, const _U2&>>::value,
  405 	operator=(const pair<_U1, _U2>& __p)
  414 				is_assignable<_T2&, _U2&&>>::value,
  414 				is_assignable<_T2&, _U2&&>>::value,
  416 	operator=(pair<_U1, _U2>&& __p)
  524     make_pair(_T1&& __x, _T2&& __y)
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_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
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  631     : public __is_member_pointer_helper<typename remove_cv<_Tp>::type>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  798       typedef decltype(__test<_Tp>(0)) type;
  811                remove_all_extents<_Tp>::type>::type
  825     : public __is_destructible_safe<_Tp>::type
  889       typedef decltype(__test<_Tp>(0)) type;
  894     : public __and_<__not_<is_void<_Tp>>,
  895                     __is_default_constructible_impl<_Tp>>
  915     : public __is_default_constructible_atom<_Tp>::type
  921     : public __is_default_constructible_safe<_Tp>::type
  984       typedef decltype(__test<_Tp, _Arg>(0)) type;
  989     : public __and_<is_destructible<_Tp>,
  990                     __is_direct_constructible_impl<_Tp, _Arg>>
 1072 			 __is_direct_constructible_ref_cast<_Tp, _Arg>,
 1073 			 __is_direct_constructible_new_safe<_Tp, _Arg>
 1079     : public __is_direct_constructible_new<_Tp, _Arg>::type
 1119     : public __is_direct_constructible<_Tp, _Arg>
 1130     : public __is_constructible_impl<_Tp, _Args...>::type
 1142     : public is_constructible<_Tp, const _Tp&>
 1142     : public is_constructible<_Tp, const _Tp&>
 1148     : public __is_copy_constructible_impl<_Tp>
 1160     : public is_constructible<_Tp, _Tp&&>
 1160     : public is_constructible<_Tp, _Tp&&>
 1166     : public __is_move_constructible_impl<_Tp>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1292     : public __is_copy_assignable_impl<_Tp>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1310     : public __is_move_assignable_impl<_Tp>
 1352     : public is_nothrow_assignable<_Tp&, _Tp&&>
 1352     : public is_nothrow_assignable<_Tp&, _Tp&&>
 1358     : public __is_nt_move_assignable_impl<_Tp>
 1400       : public __and_<is_default_constructible<_Tp>,
 1401                       __is_implicitly_default_constructible_safe<_Tp>>
 1526 	static void __test_aux(_To1);
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1955     { typedef _Tp     type; };
 2104     { typedef typename remove_cv<_Up>::type __type; };
 2131       typedef _Tp __type;