LIEF: Library to Instrument Executable Formats Version 0.17.0
Loading...
Searching...
No Matches
x86/operands/Memory.hpp
Go to the documentation of this file.
1/* Copyright 2022 - 2024 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_ASM_X86_OPERAND_MEMORY_H
16#define LIEF_ASM_X86_OPERAND_MEMORY_H
19
20namespace LIEF {
21namespace assembly {
22namespace x86 {
23namespace operands {
24class LIEF_API Memory : public Operand {
42 public:
43 using Operand::Operand;
44 REG base() const;
49 REG scaled_register() const;
54 REG segment_register() const;
59 uint64_t scale() const;
64 int64_t displacement() const;
69
70 static bool classof(const Operand* op);
71 ~Memory() override = default;
72};
73}
74}
75}
76}
77#endif
This class represents a memory operand.
Definition x86/operands/Memory.hpp:41
REG segment_register() const
The segment register associated with the memory operation.
REG scaled_register() const
The scaled register.
uint64_t scale() const
The scale value associated with the scaled_register():
int64_t displacement() const
The displacement value.
static bool classof(const Operand *op)
REG base() const
The base register.
Namespace that wraps the different x86/x86-64 operands.
Definition x86/operands/Immediate.hpp:23
x86/x86-64 architecture-related namespace
Definition x86/Instruction.hpp:27
Namespace related to assembly/disassembly support.
Definition Abstract/Binary.hpp:43
LIEF namespace.
Definition Abstract/Binary.hpp:36
#define LIEF_API
Definition visibility.h:41