| 649 | size_t CodeUnitsRequiredForSizeOfComplexOpcode() const; |
| 650 | |
| 651 | uint32_t Fetch32(size_t offset) const { |
| 652 | return (Fetch16(offset) | ((uint32_t) Fetch16(offset + 1) << 16)); |
| 653 | } |
| 654 | |
| 655 | uint4_t InstA() const { |
| 656 | return InstA(Fetch16(0)); |
nothing calls this directly
no outgoing calls
no test coverage detected