Searched refs:JUMP (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/runtime_core/static_core/verification/cflow/ |
H A D | cflow_check.cpp | 82 if (type != InstructionType::THROW && type != InstructionType::JUMP && in CheckCode() 91 if (type != InstructionType::JUMP && type != InstructionType::RETURN && in CheckCode()
|
H A D | cflow_info.h | 32 enum class InstructionType { NORMAL, JUMP, COND_JUMP, RETURN, THROW }; member in ark::verifier::InstructionType
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/bytecode_inst/ |
H A D | old_instruction.h | 1340 return ((Flags::JUMP | Flags::ACC_NONE) & flag) == flag; in HasFlag() 1342 return ((Flags::JUMP | Flags::ACC_NONE) & flag) == flag; in HasFlag() 1344 return ((Flags::JUMP | Flags::ACC_NONE) & flag) == flag; in HasFlag() 1346 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1348 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1350 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1352 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1354 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1356 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1358 return ((Flags::JUMP | Flag in HasFlag() [all...] |
H A D | old_instruction_enum.h | 470 JUMP = 0x200,
|
/arkcompiler/runtime_core/assembler/ |
H A D | assembly-ins.h | 44 JUMP = (1U << 0U), enumerator 139 return HasFlag(InstFlags::JUMP); in IsJump()
|
/arkcompiler/runtime_core/static_core/assembler/ |
H A D | assembly-ins.h | 46 JUMP = (1U << 0U), enumerator 153 return HasFlag(InstFlags::JUMP); in IsJump()
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | bytecode_instruction.h | 392 return HasFlag(Flags::JUMP); 399 return HasFlag(Flags::RETURN) || HasFlag(Flags::JUMP) || IsThrow(Exceptions::X_THROW);
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | bytecode_instruction.h | 387 return HasFlag(Flags::RETURN) || HasFlag(Flags::JUMP) || IsThrow(Exceptions::X_THROW);
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | interpreter_stub.cpp | 97 // TYPE:{OFFSET, ACC_VARACC, JUMP, SSD}
967 DISPATCH_BAK(JUMP, SExtInt32ToPtr(offset));
in DECLARE_ASM_HANDLER() 983 DISPATCH_BAK(JUMP, SExtInt32ToPtr(offset));
in DECLARE_ASM_HANDLER() 999 DISPATCH_BAK(JUMP, SExtInt32ToPtr(offset));
in DECLARE_ASM_HANDLER() 2489 DISPATCH_BAK(JUMP, SExtInt32ToPtr(offset));
in DECLARE_ASM_HANDLER() 2492 DISPATCH_BAK(JUMP, INT_PTR(JEQZ_IMM8));
in DECLARE_ASM_HANDLER() 2530 DISPATCH_BAK(JUMP, SExtInt32ToPtr(offset));
in DECLARE_ASM_HANDLER() 2533 DISPATCH_BAK(JUMP, INT_PTR(JEQZ_IMM16));
in DECLARE_ASM_HANDLER() 2571 DISPATCH_BAK(JUMP, SExtInt32ToPtr(offset));
in DECLARE_ASM_HANDLER() 2574 DISPATCH_BAK(JUMP, INT_PT in DECLARE_ASM_HANDLER() [all...] |
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | method.cpp | 514 if (inst.HasFlag(BytecodeInstruction::Flags::JUMP)) { in FillVecsByInsts()
|
Completed in 26 milliseconds