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

References

include/llvm/ADT/Optional.h
  144     T value;
  160   explicit OptionalStorage(in_place_t, Args &&... args)
  161       : value(std::forward<Args>(args)...), hasVal(true) {}
  172   T &getValue() LLVM_LVALUE_FUNCTION noexcept {
  176   T const &getValue() const LLVM_LVALUE_FUNCTION noexcept {
  181   T &&getValue() && noexcept {
  206       ::new ((void *)std::addressof(value)) T(std::move(y));
  216   optional_detail::OptionalStorage<T> Storage;
  219   using value_type = T;
  224   Optional(const T &y) : Storage(optional_detail::in_place_t{}, y) {}
  227   Optional(T &&y) : Storage(optional_detail::in_place_t{}, std::move(y)) {}
  230   Optional &operator=(T &&y) {
  241   static inline Optional create(const T *y) {
  245   Optional &operator=(const T &y) {
  253   const T *getPointer() const { return &Storage.getValue(); }
  254   T *getPointer() { return &Storage.getValue(); }
  255   const T &getValue() const LLVM_LVALUE_FUNCTION { return Storage.getValue(); }
  256   T &getValue() LLVM_LVALUE_FUNCTION { return Storage.getValue(); }
  260   const T *operator->() const { return getPointer(); }
  261   T *operator->() { return getPointer(); }
  262   const T &operator*() const LLVM_LVALUE_FUNCTION { return getValue(); }
  263   T &operator*() LLVM_LVALUE_FUNCTION { return getValue(); }
  266   constexpr T getValueOr(U &&value) const LLVM_LVALUE_FUNCTION {
  271   T &&getValue() && { return std::move(Storage.getValue()); }
  272   T &&operator*() && { return std::move(Storage.getValue()); }
  275   T getValueOr(U &&value) && {
include/llvm/DebugInfo/DIContext.h
  224       object::SectionedAddress Address,
  227       object::SectionedAddress Address, uint64_t Size,
  230       object::SectionedAddress Address,
  234   getLocalsForAddress(object::SectionedAddress Address) = 0;
include/llvm/DebugInfo/DWARF/DWARFContext.h
  325       object::SectionedAddress Address,
  328       object::SectionedAddress Address, uint64_t Size,
  331       object::SectionedAddress Address,
  335   getLocalsForAddress(object::SectionedAddress Address) override;
include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  165     object::SectionedAddress Address;
  232     bool containsPC(object::SectionedAddress PC) const {
  252     uint32_t lookupAddress(object::SectionedAddress Address) const;
  254     bool lookupAddressRange(object::SectionedAddress Address, uint64_t Size,
  274     bool getFileLineInfoForAddress(object::SectionedAddress Address,
  300                           object::SectionedAddress Address) const;
  305     uint32_t lookupAddressImpl(object::SectionedAddress Address) const;
  307     bool lookupAddressRangeImpl(object::SectionedAddress Address, uint64_t Size,
include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
   78   getAbsoluteRanges(llvm::Optional<object::SectionedAddress> BaseAddr) const;
include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
   40             llvm::function_ref<Optional<object::SectionedAddress>(uint32_t)>
   50   getAbsoluteRanges(llvm::Optional<object::SectionedAddress> BaseAddr,
include/llvm/DebugInfo/DWARF/DWARFFormValue.h
   82                             object::SectionedAddress SA) const;
  116   Optional<object::SectionedAddress> getAsSectionedAddress() const;
  267 inline Optional<object::SectionedAddress>
include/llvm/DebugInfo/DWARF/DWARFListTable.h
  173             llvm::function_ref<Optional<object::SectionedAddress>(uint32_t)>
  244     llvm::function_ref<Optional<object::SectionedAddress>(uint32_t)>
include/llvm/DebugInfo/DWARF/DWARFUnit.h
  225   llvm::Optional<object::SectionedAddress> BaseAddr;
  312   Optional<object::SectionedAddress>
  384   llvm::Optional<object::SectionedAddress> getBaseAddress();
include/llvm/DebugInfo/PDB/PDBContext.h
   46         object::SectionedAddress Address,
   49         object::SectionedAddress Address, uint64_t Size,
   52         object::SectionedAddress Address,
   56     getLocalsForAddress(object::SectionedAddress Address) override;
include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
   27   virtual DILineInfo symbolizeCode(object::SectionedAddress ModuleOffset,
   31   symbolizeInlinedCode(object::SectionedAddress ModuleOffset,
   34   symbolizeData(object::SectionedAddress ModuleOffset) const = 0;
   36   symbolizeFrame(object::SectionedAddress ModuleOffset) const = 0;
include/llvm/DebugInfo/Symbolize/Symbolize.h
   57                                      object::SectionedAddress ModuleOffset);
   59                                      object::SectionedAddress ModuleOffset);
   62                        object::SectionedAddress ModuleOffset);
   64                                    object::SectionedAddress ModuleOffset);
   67                  object::SectionedAddress ModuleOffset);
   81                       object::SectionedAddress ModuleOffset);
include/llvm/Object/ObjectFile.h
  146 inline bool operator<(const SectionedAddress &LHS,
  147                       const SectionedAddress &RHS) {
  152 inline bool operator==(const SectionedAddress &LHS,
  153                        const SectionedAddress &RHS) {
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/DebugInfo/DWARF/DWARFContext.cpp
  267     llvm::function_ref<Optional<object::SectionedAddress>(uint32_t)>
 1079 DWARFContext::getLocalsForAddress(object::SectionedAddress Address) {
 1091 DILineInfo DWARFContext::getLineInfoForAddress(object::SectionedAddress Address,
 1159 DWARFContext::getInliningInfoForAddress(object::SectionedAddress Address,
lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
   19     *SecNdx = object::SectionedAddress::UndefSection;
lib/DebugInfo/DWARF/DWARFDebugLine.cpp
  412   Address.SectionIndex = object::SectionedAddress::UndefSection;
  445   SectionIndex = object::SectionedAddress::UndefSection;
  911     object::SectionedAddress Address) const {
  934     object::SectionedAddress Address) const {
  940       Address.SectionIndex == object::SectionedAddress::UndefSection)
  944   Address.SectionIndex = object::SectionedAddress::UndefSection;
  949     object::SectionedAddress Address) const {
  962     object::SectionedAddress Address, uint64_t Size,
  969   if (Address.SectionIndex == object::SectionedAddress::UndefSection)
  973   Address.SectionIndex = object::SectionedAddress::UndefSection;
  978     object::SectionedAddress Address, uint64_t Size,
 1081     object::SectionedAddress Address, const char *CompDir,
lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
   71     llvm::Optional<object::SectionedAddress> BaseAddr) const {
lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
  116     llvm::Optional<object::SectionedAddress> BaseAddr, DWARFUnit &U) const {
  176     llvm::function_ref<Optional<object::SectionedAddress>(uint32_t)>
lib/DebugInfo/DWARF/DWARFDie.cpp
   98       if (Optional<object::SectionedAddress> BA = U->getBaseAddress())
lib/DebugInfo/DWARF/DWARFFormValue.cpp
  367                                           object::SectionedAddress SA) const {
  408     Optional<object::SectionedAddress> A = U->getAddrOffsetSectionItem(UValue);
  628 Optional<object::SectionedAddress>
  636     Optional<object::SectionedAddress> SA = U->getAddrOffsetSectionItem(Index);
lib/DebugInfo/DWARF/DWARFUnit.cpp
  200 Optional<object::SectionedAddress>
  767 llvm::Optional<object::SectionedAddress> DWARFUnit::getBaseAddress() {
lib/DebugInfo/PDB/PDBContext.cpp
   33 DILineInfo PDBContext::getLineInfoForAddress(object::SectionedAddress Address,
   86 PDBContext::getInliningInfoForAddress(object::SectionedAddress Address,
   95 PDBContext::getLocalsForAddress(object::SectionedAddress Address) {
lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
  253 SymbolizableObjectFile::symbolizeCode(object::SectionedAddress ModuleOffset,
  256   if (ModuleOffset.SectionIndex == object::SectionedAddress::UndefSection)
  275     object::SectionedAddress ModuleOffset, FunctionNameKind FNKind,
  277   if (ModuleOffset.SectionIndex == object::SectionedAddress::UndefSection)
  302     object::SectionedAddress ModuleOffset) const {
  310     object::SectionedAddress ModuleOffset) const {
  311   if (ModuleOffset.SectionIndex == object::SectionedAddress::UndefSection)
  330   return object::SectionedAddress::UndefSection;
lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
   37   DILineInfo symbolizeCode(object::SectionedAddress ModuleOffset,
   40   DIInliningInfo symbolizeInlinedCode(object::SectionedAddress ModuleOffset,
   43   DIGlobal symbolizeData(object::SectionedAddress ModuleOffset) const override;
   45   symbolizeFrame(object::SectionedAddress ModuleOffset) const override;
lib/DebugInfo/Symbolize/Symbolize.cpp
   43                                     object::SectionedAddress ModuleOffset) {
   63                               object::SectionedAddress ModuleOffset) {
   80                               object::SectionedAddress ModuleOffset) {
   89                                      object::SectionedAddress ModuleOffset) {
  119                               object::SectionedAddress ModuleOffset) {
  145                                object::SectionedAddress ModuleOffset) {
tools/dsymutil/DwarfLinker.cpp
 1776   object::SectionedAddress Front = Seq.front().Address;
tools/lld/ELF/InputFiles.cpp
  289   uint64_t sectionIndex = object::SectionedAddress::UndefSection;
tools/llvm-cfi-verify/lib/FileAnalysis.cpp
  258 const std::set<object::SectionedAddress> &
  274 FileAnalysis::symbolizeInlinedCode(object::SectionedAddress Address) {
  472                                         object::SectionedAddress Address) {
tools/llvm-cfi-verify/lib/FileAnalysis.h
  142   const std::set<object::SectionedAddress> &getIndirectInstructions() const;
  150   symbolizeInlinedCode(object::SectionedAddress Address);
  182                             object::SectionedAddress Address);
  229   std::set<object::SectionedAddress> IndirectInstructions;
tools/llvm-cfi-verify/lib/GraphBuilder.cpp
   96                                          object::SectionedAddress Address) {
tools/llvm-cfi-verify/lib/GraphBuilder.h
  105                                     object::SectionedAddress Address);
tools/llvm-cfi-verify/llvm-cfi-verify.cpp
  133   for (object::SectionedAddress Address : Analysis.getIndirectInstructions()) {
tools/llvm-dwarfdump/llvm-dwarfdump.cpp
  407           {Lookup, object::SectionedAddress::UndefSection}))
tools/llvm-objdump/llvm-objdump.cpp
  570                                object::SectionedAddress Address,
  606                                     object::SectionedAddress Address,
  689                          object::SectionedAddress Address, raw_ostream &OS,
  733                  object::SectionedAddress Address, raw_ostream &OS,
  803                  object::SectionedAddress Address, raw_ostream &OS,
  855                  object::SectionedAddress Address, raw_ostream &OS,
tools/llvm-rtdyld/llvm-rtdyld.cpp
  445         object::SectionedAddress Address;
tools/llvm-symbolizer/llvm-symbolizer.cpp
  238         ModuleName, {Offset, object::SectionedAddress::UndefSection});
  242         ModuleName, {Offset, object::SectionedAddress::UndefSection});
  251         ModuleName, {Offset, object::SectionedAddress::UndefSection});
  261         ModuleName, {Offset, object::SectionedAddress::UndefSection});
  265         ModuleName, {Offset, object::SectionedAddress::UndefSection});
tools/llvm-xray/func-id-helper.cpp
   32   object::SectionedAddress ModuleAddress;
   36   ModuleAddress.SectionIndex = object::SectionedAddress::UndefSection;
   59   object::SectionedAddress ModuleAddress;
   63   ModuleAddress.SectionIndex = object::SectionedAddress::UndefSection;
tools/sancov/sancov.cpp
  533       object::SectionedAddress ModuleAddress = {
  534           Addr, object::SectionedAddress::UndefSection};
  554     object::SectionedAddress ModuleAddress = {
  555         Addr, object::SectionedAddress::UndefSection};
  882         ObjectFile, {Addr, object::SectionedAddress::UndefSection});
tools/sanstats/sanstats.cpp
   90             Filename, {Addr - 1, object::SectionedAddress::UndefSection})) {
unittests/tools/llvm-cfi-verify/FileAnalysis.cpp
   54                             object::SectionedAddress Address) {
unittests/tools/llvm-cfi-verify/GraphBuilder.cpp
  116                             object::SectionedAddress Address) {
usr/include/c++/7.4.0/bits/alloc_traits.h
  387       using allocator_type = allocator<_Tp>;
  389       using value_type = _Tp;
  392       using pointer = _Tp*;
  395       using const_pointer = const _Tp*;
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  475 	{ __a.construct(__p, std::forward<_Args>(__args)...); }
  486 	destroy(allocator_type& __a, _Up* __p)
usr/include/c++/7.4.0/bits/allocator.h
  108     class allocator: public __allocator_base<_Tp>
  113       typedef _Tp*       pointer;
  114       typedef const _Tp* const_pointer;
  115       typedef _Tp&       reference;
  116       typedef const _Tp& const_reference;
  117       typedef _Tp        value_type;
usr/include/c++/7.4.0/bits/move.h
   46     inline _GLIBCXX_CONSTEXPR _Tp*
   47     __addressof(_Tp& __r) _GLIBCXX_NOEXCEPT
   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
   98     move(_Tp&& __t) noexcept
  136     inline _GLIBCXX17_CONSTEXPR _Tp*
  137     addressof(_Tp& __r) noexcept
  143     const _Tp* addressof(const _Tp&&) = delete;
  143     const _Tp* addressof(const _Tp&&) = delete;
usr/include/c++/7.4.0/bits/stl_function.h
  108       typedef _Arg 	argument_type;   
  111       typedef _Result 	result_type;  
  121       typedef _Arg1 	first_argument_type; 
  124       typedef _Arg2 	second_argument_type;
  381     struct less : public binary_function<_Tp, _Tp, bool>
  381     struct less : public binary_function<_Tp, _Tp, bool>
  385       operator()(const _Tp& __x, const _Tp& __y) const
  385       operator()(const _Tp& __x, const _Tp& __y) const
  870     : public unary_function<_Tp,_Tp>
  870     : public unary_function<_Tp,_Tp>
  872       _Tp&
  873       operator()(_Tp& __x) const
  876       const _Tp&
  877       operator()(const _Tp& __x) const
usr/include/c++/7.4.0/bits/stl_set.h
  110       typedef _Key     key_type;
  111       typedef _Key     value_type;
  119 	rebind<_Key>::other _Key_alloc_type;
usr/include/c++/7.4.0/bits/stl_tree.h
  218       typedef _Rb_tree_node<_Val>* _Link_type;
  231       __gnu_cxx::__aligned_membuf<_Val> _M_storage;
  233       _Val*
  237       const _Val*
  258       typedef _Tp  value_type;
  259       typedef _Tp& reference;
  260       typedef _Tp* pointer;
  265       typedef _Rb_tree_iterator<_Tp>        _Self;
  267       typedef _Rb_tree_node<_Tp>*           _Link_type;
  328       typedef _Tp        value_type;
  329       typedef const _Tp& reference;
  330       typedef const _Tp* pointer;
  332       typedef _Rb_tree_iterator<_Tp> iterator;
  337       typedef _Rb_tree_const_iterator<_Tp>        _Self;
  339       typedef const _Rb_tree_node<_Tp>*           _Link_type;
  447         rebind<_Rb_tree_node<_Val> >::other _Node_allocator;
  454       typedef _Rb_tree_node<_Val>* 		_Link_type;
  455       typedef const _Rb_tree_node<_Val>*	_Const_Link_type;
  554 	  operator()(_Arg&& __arg) const
  563       typedef _Key 				key_type;
  564       typedef _Val 				value_type;
  621 	_M_construct_node(_Link_type __node, _Args&&... __args)
  625 	      ::new(__node) _Rb_tree_node<_Val>;
  628 				       std::forward<_Args>(__args)...);
  640         _M_create_node(_Args&&... __args)
  643 	  _M_construct_node(__tmp, std::forward<_Args>(__args)...);
  758       static const _Key&
  782       static const _Key&
  834 	_M_insert_(_Base_ptr __x, _Base_ptr __y, _Arg&& __v, _NodeGen&);
  894 		     const _Key& __k);
  898 		     const _Key& __k) const;
  902 		     const _Key& __k);
  906 		     const _Key& __k) const;
 1011         _M_insert_unique(_Arg&& __x);
usr/include/c++/7.4.0/ext/aligned_buffer.h
   52       struct _Tp2 { _Tp _M_t; };
   54       alignas(__alignof__(_Tp2::_M_t)) unsigned char _M_storage[sizeof(_Tp)];
   69       _Tp*
   73       const _Tp*
usr/include/c++/7.4.0/ext/alloc_traits.h
  117       { typedef typename _Base_type::template rebind_alloc<_Tp> other; };
usr/include/c++/7.4.0/ext/new_allocator.h
   63       typedef _Tp*       pointer;
   64       typedef const _Tp* const_pointer;
   65       typedef _Tp&       reference;
   66       typedef const _Tp& const_reference;
   67       typedef _Tp        value_type;
  135 	construct(_Up* __p, _Args&&... __args)
  135 	construct(_Up* __p, _Args&&... __args)
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
  140 	destroy(_Up* __p) { __p->~_Up(); }
usr/include/c++/7.4.0/initializer_list
   50       typedef _E 		value_type;
   51       typedef const _E& 	reference;
   52       typedef const _E& 	const_reference;
   54       typedef const _E* 	iterator;
   55       typedef const _E* 	const_iterator;
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
  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>
 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; };