MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / IsInstructionConstWide

Function IsInstructionConstWide

Bcore/src/main/cpp/dex/dex_instruction_utils.h:58–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58constexpr bool IsInstructionConstWide(Instruction::Code opcode) {
59 return Instruction::CONST_WIDE_16 <= opcode && opcode <= Instruction::CONST_WIDE_HIGH16;
60}
61
62constexpr bool IsInstructionReturn(Instruction::Code opcode) {
63 return Instruction::RETURN_VOID <= opcode && opcode <= Instruction::RETURN_OBJECT;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected