Basic support for variadic-def MIR Statepoint:
- Change TableGen STATEPOINT description to variadic out list (For self-documentation purpose; by itself it does not affect code generation in any way).
- Update StatepointOpers helper class to handle variadic defs.
- Update MachineVerifier to properly handle them, too.
With this change, new Statepoint instruction can be passed through
backend (excluding ISEL) without errors.
Full change set is available at D81603.
Since we have MI available, why add a new variable? I'd expect the accessors to just use MI->getNumDefs() directly?