15#ifndef LIEF_DWARF_TYPE_H
16#define LIEF_DWARF_TYPE_H
70 std::ptrdiff_t, const Type*, const Type&> {
73 using iterator_facade_base::operator++;
74 using iterator_facade_base::operator--;
111 std::unique_ptr<details::TypeIt> impl_;
112 mutable std::unique_ptr<Type> cached_;
178 std::unique_ptr<Scope>
scope()
const;
184 const T*
as()
const {
185 if (T::classof(
this)) {
186 return static_cast<const T*
>(
this);
191 static std::unique_ptr<Type>
create(std::unique_ptr<details::Type> impl);
Definition canbe_unique.hpp:22
This class materializes a scope in which Function, Variable, Type, ... can be defined.
Definition Scope.hpp:33
Iterator(std::unique_ptr< details::TypeIt > impl)
Iterator(const Iterator &)
const Type * operator->() const
Iterator(Iterator &&) noexcept
std::unique_ptr< Type > yield()
Transfer ownership of the type at the current position to the caller. Returns nullptr if the iterator...
Iterator & operator=(const Iterator &)
const Type & operator*() const
details::TypeIt implementation
Definition DWARF/Type.hpp:72
const T * as() const
Definition DWARF/Type.hpp:184
bool is_unspecified() const
Whether this type is a DW_TAG_unspecified_type.
Definition DWARF/Type.hpp:161
KIND
Definition DWARF/Type.hpp:126
@ UNSPECIFIED
Definition DWARF/Type.hpp:128
Type(std::unique_ptr< details::Type > impl)
result< std::string > name() const
Return the type's name using either DW_AT_name or DW_AT_picture_string (if any).
Type & operator=(const Type &)=delete
result< uint64_t > size() const
Return the size of the type or an error if it can't be computed.
std::string to_decl(const DeclOpt &opt=DeclOpt()) const
Generates a C/C++ definition for this type.
Type(details::Type &impl)
debug_location_t location() const
Return the debug location where this type is defined.
static std::unique_ptr< Type > create(std::unique_ptr< details::Type > impl)
Type(const Type &)=delete
std::unique_ptr< Scope > scope() const
Return the scope in which this type is defined.
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
Definition iterators.hpp:729
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:77
Definition DWARF/CompilationUnit.hpp:30
Namespace for the DWARF debug format.
Definition DWARF/CompilationUnit.hpp:28
LIEF namespace.
Definition Abstract/Binary.hpp:40
Configuration options for generated code from debug info.
Definition DebugDeclOpt.hpp:25
This structure holds a debug location (source filename & line).
Definition debug_loc.hpp:23
#define LIEF_API
Definition visibility.h:45
#define LIEF_LOCAL
Definition visibility.h:46