Go to the documentation of this file.
16#ifndef LIEF_MACHO_TWO_LEVEL_HINTS_H
17#define LIEF_MACHO_TWO_LEVEL_HINTS_H
35struct twolevel_hints_command;
40 friend class BinaryParser;
41 friend class LinkEdit;
45 using hints_list_t = std::vector<uint32_t>;
46 using it_hints_t = ref_iterator<hints_list_t&>;
47 using it_const_hints_t = const_ref_iterator<const hints_list_t&>;
52 TwoLevelHints&
operator=(
const TwoLevelHints& copy) =
default;
55 std::unique_ptr<LoadCommand>
clone()
const override {
56 return std::unique_ptr<TwoLevelHints>(
new TwoLevelHints(*
this));
58 span<const uint8_t>
content()
const {
return content_; }
61 span<uint8_t>
content() {
return content_; }
62 it_hints_t
hints() {
return hints_; }
65 it_const_hints_t
hints()
const {
return hints_; }
66 uint32_t
offset()
const {
return offset_; }
70 void offset(uint32_t offset) { offset_ = offset; }
73 return original_nb_hints_;
78 void accept(Visitor& visitor)
const override;
80 std::ostream&
print(std::ostream& os)
const override;
82 static bool classof(
const LoadCommand* cmd) {
83 return cmd->
command() == LoadCommand::TYPE::TWOLEVEL_HINTS;
89 span<uint8_t> content_;
90 uint32_t original_nb_hints_ = 0;
Class used to parse a single binary (i.e. non-FAT)
Definition BinaryParser.hpp:74
Class used to rebuild a Mach-O file.
Definition MachO/Builder.hpp:57
Definition LinkEdit.hpp:42
Based class for the Mach-O load commands.
Definition LoadCommand.hpp:37
LoadCommand::TYPE command() const
Command type.
Definition LoadCommand.hpp:124
Class which represents the LC_TWOLEVEL_HINTS command.
Definition TwoLevelHints.hpp:39
static bool classof(const LoadCommand *cmd)
Definition TwoLevelHints.hpp:82
std::ostream & print(std::ostream &os) const override
std::unique_ptr< LoadCommand > clone() const override
Definition TwoLevelHints.hpp:55
uint32_t original_nb_hints() const
Definition TwoLevelHints.hpp:72
it_const_hints_t hints() const
Definition TwoLevelHints.hpp:65
~TwoLevelHints() override=default
TwoLevelHints(const TwoLevelHints ©)=default
span< const uint8_t > content() const
Original payload of the command.
Definition TwoLevelHints.hpp:60
void offset(uint32_t offset)
Definition TwoLevelHints.hpp:70
uint32_t offset() const
Original offset of the command. It should point in the __LINKEDIT segment.
Definition TwoLevelHints.hpp:69
it_hints_t hints()
Iterator over the hints (uint32_t integers)
Definition TwoLevelHints.hpp:64
void accept(Visitor &visitor) const override
TwoLevelHints(const details::twolevel_hints_command &cmd)
TwoLevelHints & operator=(const TwoLevelHints ©)=default
span< uint8_t > content()
Definition TwoLevelHints.hpp:61
Definition endianness_support.hpp:59
Namespace related to the LIEF's Mach-O module.
Definition Abstract/Header.hpp:36
LIEF namespace.
Definition Abstract/Binary.hpp:36
#define LIEF_API
Definition visibility.h:41