Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandafile/tests/
Dbytecode_instruction_tests.cpp115 EXPECT_EQ((inst.GetImm<BytecodeInstruction::Format::IMM32, 0>()), 0x1012f234); in TEST()
122 …EXPECT_EQ((inst.GetImm<BytecodeInstruction::Format::IMM32, 0>()), static_cast<int32_t>(0xf1f21234)… in TEST()
346 EXPECT_EQ((inst.GetImm<BytecodeInstructionSafe::Format::IMM32, 0>()), 0x1012f234); in TEST()
353 …EXPECT_EQ((inst.GetImm<BytecodeInstructionSafe::Format::IMM32, 0>()), static_cast<int32_t>(0xf1f21… in TEST()
560 EXPECT_EQ((inst.GetImm<BytecodeInstructionSafe::Format::IMM32, 0>()), 0x12f234); in TEST()
/arkcompiler/ets_runtime/ecmascript/jspandafile/bytecode_inst/
Dold_instruction_enum.h24 IMM32, enumerator
Dold_instruction.h119 if constexpr (format == Format::IMM32) { in GetImm()
272 case Format::IMM32: { in Size()
496 return Format::IMM32; in GetFormat()
526 return Format::IMM32; in GetFormat()
634 return Format::IMM32; in GetFormat()
636 return Format::IMM32; in GetFormat()
782 return Format::IMM32; in GetFormat()
/arkcompiler/runtime_core/libpandafile/
Dbytecode_emitter.cpp213 Emit<Format::IMM32>(bytecode_.begin() + *target_ptr, Opcode::JMP_IMM32, 0); in DoReserveSpaceForOffset()