| 89 | } |
| 90 | |
| 91 | bool Instruction::CanFlowThrough() const { |
| 92 | const uint16_t* insns = reinterpret_cast<const uint16_t*>(this); |
| 93 | uint16_t insn = *insns; |
| 94 | Code opcode = static_cast<Code>(insn & 0xFF); |
| 95 | return FlagsOf(opcode) & Instruction::kContinue; |
| 96 | } |
| 97 | |
| 98 | size_t Instruction::SizeInCodeUnitsComplexOpcode() const { |
| 99 | const uint16_t* insns = reinterpret_cast<const uint16_t*>(this); |
nothing calls this directly
no outgoing calls
no test coverage detected