LIEF: Library to Instrument Executable Formats Version 2.0.0
Loading...
Searching...
No Matches
asm/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
22
24
34class LIEF_API Memory : public Operand {
35 public:
36 using Operand::Operand;
37
41 REG base() const;
42
46 int64_t displacement() const;
47
48 static bool classof(const Operand* op);
49 ~Memory() override = default;
50};
51}
52
53
54#endif
This class represents a memory operand.
Definition asm/riscv/operands/Memory.hpp:34
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:21
REG
Definition riscv/registers.hpp:25
#define LIEF_API
Definition visibility.h:45