Home
last modified time | relevance | path

Searched refs:BytecodeInstBase (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/runtime_core/libpandafile/
Dbytecode_instruction.h36 class BytecodeInstBase; variable
88 class BytecodeInstBase<BytecodeInstMode::FAST> {
90 BytecodeInstBase() = default;
91 explicit BytecodeInstBase(const uint8_t *pc) : pc_ {pc} {} in BytecodeInstBase() function
92 ~BytecodeInstBase() = default;
136 class BytecodeInstBase<BytecodeInstMode::SAFE> {
138 BytecodeInstBase() = default;
139 explicit BytecodeInstBase(const uint8_t *pc, const uint8_t *from, const uint8_t *to) in BytecodeInstBase() function
222 class BytecodeInst : public BytecodeInstBase<Mode> {
223 using Base = BytecodeInstBase<Mode>;