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

Method IsQuickened

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

Returns true if the instruction is a quickened instruction.

Source from the content-addressed store, hash-verified

559
560 // Returns true if the instruction is a quickened instruction.
561 bool IsQuickened() const {
562 return (kInstructionDescriptors[Opcode()].index_type == kIndexFieldOffset) ||
563 (kInstructionDescriptors[Opcode()].index_type == kIndexVtableOffset);
564 }
565
566 // Returns true if this instruction is a switch.
567 bool IsSwitch() const {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected