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

Method IsBasicBlockEnd

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

Determine if this instruction ends execution of its basic block.

Source from the content-addressed store, hash-verified

580
581 // Determine if this instruction ends execution of its basic block.
582 bool IsBasicBlockEnd() const {
583 return IsBranch() || IsReturn() || Opcode() == THROW;
584 }
585
586 // Determine if this instruction is an invoke.
587 bool IsInvoke() const {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected