UnwindPushEntry.cs 474 B

1234567891011121314151617181920
  1. using ARMeilleure.IntermediateRepresentation;
  2. namespace ARMeilleure.CodeGen.Unwinding
  3. {
  4. struct UnwindPushEntry
  5. {
  6. public int Index { get; }
  7. public RegisterType Type { get; }
  8. public int StreamEndOffset { get; }
  9. public UnwindPushEntry(int index, RegisterType type, int streamEndOffset)
  10. {
  11. Index = index;
  12. Type = type;
  13. StreamEndOffset = streamEndOffset;
  14. }
  15. }
  16. }