15#ifndef LIEF_DWARF_EDITOR_COMPILATION_UNIT_H
16#define LIEF_DWARF_EDITOR_COMPILATION_UNIT_H
55 std::unique_ptr<Function>
59 std::unique_ptr<Variable>
67 std::unique_ptr<EnumType>
82 const std::string& name,
size_t size,
87 std::unique_ptr<FunctionType>
91 std::unique_ptr<PointerType>
93 return ty.pointer_to();
This class represents an array type (DW_TAG_array_type).
Definition ArrayType.hpp:26
ENCODING
Definition BaseType.hpp:35
@ NONE
Definition BaseType.hpp:36
This class represents an editable DWARF compilation unit.
Definition DWARF/editor/CompilationUnit.hpp:43
std::unique_ptr< Function > create_function(const std::string &name)
Create a new function owned by this compilation unit.
std::unique_ptr< TypeDef > create_typedef(const std::string &name, const Type &type)
Create a typedef with the name provided in the first parameter which aliases the type provided in the...
CompilationUnit(std::unique_ptr< details::CompilationUnit > impl)
std::unique_ptr< PointerType > create_pointer_type(const Type &ty)
Create a pointer on the provided type.
Definition DWARF/editor/CompilationUnit.hpp:92
std::unique_ptr< Type > create_generic_type(const std::string &name)
Create a DW_TAG_unspecified_type type with the given name.
std::unique_ptr< FunctionType > create_function_type(const std::string &name)
Create a function type with the given name.
std::unique_ptr< Variable > create_variable(const std::string &name)
Create a new global variable owned by this compilation unit.
std::unique_ptr< StructType > create_structure(const std::string &name, StructType::TYPE kind=StructType::TYPE::STRUCT)
Create a struct-like type (struct, class, union) with the given name.
CompilationUnit & set_producer(const std::string &producer)
Set the DW_AT_producer producer attribute.
std::unique_ptr< Type > create_void_type()
Create a void type.
std::unique_ptr< BaseType > create_base_type(const std::string &name, size_t size, BaseType::ENCODING encoding=BaseType::ENCODING::NONE)
Create a primitive type with the given name and size.
std::unique_ptr< EnumType > create_enum(const std::string &name)
Create an enum type (DW_TAG_enumeration_type).
std::unique_ptr< ArrayType > create_array(const std::string &name, const Type &type, size_t count)
Create an array type with the given name, type and size.
This class represents an editable enum type (DW_TAG_enumeration_type).
Definition EnumType.hpp:33
This class represents an editable DWARF function (DW_TAG_subprogram).
Definition DWARF/editor/Function.hpp:39
TYPE
Definition StructType.hpp:46
@ STRUCT
Discriminant for DW_TAG_class_type.
Definition StructType.hpp:48
This class represents a typedef (DW_TAG_typedef).
Definition TypeDef.hpp:26
This class is the base class for any types created when editing DWARF debug info.
Definition DWARF/editor/Type.hpp:37
This class represents an editable DWARF variable which can be scoped by a function or a compilation u...
Definition editor/Variable.hpp:35
#define LIEF_LIFETIMEBOUND
Definition compiler_attributes.hpp:72
Definition DWARF/editor/CompilationUnit.hpp:38
Namespace for the DWARF debug format.
Definition DWARF/CompilationUnit.hpp:30
LIEF namespace.
Definition Abstract/Binary.hpp:41
#define LIEF_API
Definition visibility.h:45