Returns true if this instruction is a unconditional branch.
| 548 | |
| 549 | // Returns true if this instruction is a unconditional branch. |
| 550 | bool IsUnconditional() const { |
| 551 | return (kInstructionDescriptors[Opcode()].flags & kUnconditional) != 0; |
| 552 | } |
| 553 | |
| 554 | // Returns the branch offset if this instruction is a branch. |
| 555 | int32_t GetTargetOffset() const; |
nothing calls this directly
no outgoing calls
no test coverage detected