UnwindInfo.cs 463 B

123456789101112131415161718
  1. namespace ARMeilleure.CodeGen.Unwinding
  2. {
  3. struct UnwindInfo
  4. {
  5. public UnwindPushEntry[] PushEntries { get; }
  6. public int PrologueSize { get; }
  7. public int FixedAllocSize { get; }
  8. public UnwindInfo(UnwindPushEntry[] pushEntries, int prologueSize, int fixedAllocSize)
  9. {
  10. PushEntries = pushEntries;
  11. PrologueSize = prologueSize;
  12. FixedAllocSize = fixedAllocSize;
  13. }
  14. }
  15. }