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

Method Opcode

Bcore/src/main/cpp/dex/dex_instruction.h:472–475  ·  view source on GitHub ↗

Returns the opcode field of the instruction. The given "inst_data" parameter must be the first 16 bits of instruction.

Source from the content-addressed store, hash-verified

470 // Returns the opcode field of the instruction. The given "inst_data" parameter must be the first
471 // 16 bits of instruction.
472 Code Opcode(uint16_t inst_data) const {
473 DCHECK_EQ(inst_data, Fetch16(0));
474 return static_cast<Code>(inst_data & 0xFF);
475 }
476
477 // Returns the opcode field of the instruction from the first 16 bits of instruction.
478 Code Opcode() const {

Callers 2

DexSwitchTableMethod · 0.80
IsThrowingDexInstructionFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected