LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
riscv/operands/Memory.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_ASM_RISCV_OPERAND_MEMORY_H
16#define LIEF_ASM_RISCV_OPERAND_MEMORY_H
17#include <cstdint>
18
21
22namespace LIEF {
23namespace assembly {
24namespace riscv {
25namespace operands {
26
36class LIEF_API Memory : public Operand {
37 public:
38 using Operand::Operand;
39
43 REG base() const;
44
48 int64_t displacement() const;
49
50 static bool classof(const Operand* op);
51 ~Memory() override = default;
52};
53}
54}
55}
56}
57#endif
This class represents a memory operand.
Definition riscv/operands/Memory.hpp:36
int64_t displacement() const
The displacement value.
static bool classof(const Operand *op)
REG base() const
The base register.
Namespace that wraps the different RISC-V operands.
Definition riscv/operands/Immediate.hpp:23
RISC-V architecture-related namespace.
Definition riscv/Instruction.hpp:27
REG
Definition riscv/registers.hpp:25
Namespace related to assembly/disassembly support.
Definition Abstract/Binary.hpp:48
LIEF namespace.
Definition Abstract/Binary.hpp:41
#define LIEF_API
Definition visibility.h:45