Returns true if the instruction is a quickened instruction.
| 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 { |
nothing calls this directly
no outgoing calls
no test coverage detected