JitCacheEntry.cs 425 B

12345678910111213141516171819
  1. using ARMeilleure.CodeGen.Unwinding;
  2. namespace ARMeilleure.Translation
  3. {
  4. struct JitCacheEntry
  5. {
  6. public int Offset { get; }
  7. public int Size { get; }
  8. public UnwindInfo UnwindInfo { get; }
  9. public JitCacheEntry(int offset, int size, UnwindInfo unwindInfo)
  10. {
  11. Offset = offset;
  12. Size = size;
  13. UnwindInfo = unwindInfo;
  14. }
  15. }
  16. }