LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
Variable.hpp
Go to the documentation of this file.
1/* Copyright 2022 - 2026 R. Thomas
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#ifndef LIEF_DWARF_VARIABLE_H
16#define LIEF_DWARF_VARIABLE_H
17
18#include <memory>
19
20#include "LIEF/iterators.hpp"
21#include "LIEF/visibility.h"
22#include "LIEF/errors.hpp"
23#include "LIEF/debug_loc.hpp"
24#include "LIEF/DWARF/Type.hpp"
25
26namespace LIEF {
27namespace dwarf {
28class Scope;
29
30namespace details {
31class Variable;
32class VariableIt;
33}
34
38 public:
39 class Iterator final
40 : public iterator_facade_base<Iterator, std::bidirectional_iterator_tag,
41 Variable, std::ptrdiff_t, const Variable*,
42 const Variable&> {
43 public:
44 using implementation = details::VariableIt;
45 using iterator_facade_base::operator++;
46 using iterator_facade_base::operator--;
47
49
50 LIEF_API Iterator(std::unique_ptr<details::VariableIt> impl);
51
54
56 LIEF_API Iterator& operator=(Iterator&&) noexcept;
57
59
60 friend LIEF_API bool operator==(const Iterator& LHS, const Iterator& RHS);
61 friend bool operator!=(const Iterator& LHS, const Iterator& RHS) {
62 return !(LHS == RHS);
63 }
64
65 // NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
67
68 // NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
70
71 LIEF_API const Variable& operator*() const;
72
73 // NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
75
78 LIEF_API std::unique_ptr<Variable> yield();
79
80 private:
81 void load() const;
82
83 std::unique_ptr<details::VariableIt> impl_;
84 mutable std::unique_ptr<Variable> cached_;
85 };
86
87 Variable(std::unique_ptr<details::Variable> impl);
88
90 std::string name() const;
91
96 std::string linkage_name() const;
97
107
113
115 bool is_constexpr() const;
116
118 bool is_stack_based() const;
119
122
124 std::unique_ptr<Type> type() const;
125
127 std::unique_ptr<Scope> scope() const;
128
130 std::string description() const;
131
133 std::string to_decl(const DeclOpt& opt = DeclOpt()) const;
134
136
137 private:
138 std::unique_ptr<details::Variable> impl_;
139};
140
141}
142}
143#endif
This class materializes a scope in which Function, Variable, Type, ... can be defined.
Definition Scope.hpp:33
std::unique_ptr< Variable > yield()
Transfer ownership of the variable at the current position to the caller. Returns nullptr if the iter...
details::VariableIt implementation
Definition Variable.hpp:44
const Variable & operator*() const
Iterator(std::unique_ptr< details::VariableIt > impl)
Iterator(Iterator &&) noexcept
const Variable * operator->() const
Iterator & operator=(const Iterator &)
std::string linkage_name() const
The name of the variable which is used for linking (DW_AT_linkage_name).
bool is_stack_based() const
Whether this variable is allocated on the stack.
Variable(std::unique_ptr< details::Variable > impl)
bool is_constexpr() const
Whether it's a constexpr variable.
std::unique_ptr< Type > type() const
Return the type of this variable.
debug_location_t debug_location() const
The original source location where the variable is defined.
std::string description() const
Description (DW_AT_description) of the variable or an empty string.
std::string to_decl(const DeclOpt &opt=DeclOpt()) const
Generates a C/C++ definition for this variable.
std::unique_ptr< Scope > scope() const
Return the scope in which this variable is defined.
std::string name() const
Name of the variable (usually demangled).
result< int64_t > address() const
Address of the variable.
result< uint64_t > size() const
Return the size of the variable (or a lief_errors if it can't be resolved).
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