gcclib.h 595 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright 2004-2009 Analog Devices Inc.
  3. *
  4. * Licensed under the GPL-2 or later.
  5. */
  6. #define BITS_PER_UNIT 8
  7. #define SI_TYPE_SIZE (sizeof (SItype) * BITS_PER_UNIT)
  8. typedef unsigned int UQItype __attribute__ ((mode(QI)));
  9. typedef int SItype __attribute__ ((mode(SI)));
  10. typedef unsigned int USItype __attribute__ ((mode(SI)));
  11. typedef int DItype __attribute__ ((mode(DI)));
  12. typedef int word_type __attribute__ ((mode(__word__)));
  13. typedef unsigned int UDItype __attribute__ ((mode(DI)));
  14. struct DIstruct {
  15. SItype low, high;
  16. };
  17. typedef union {
  18. struct DIstruct s;
  19. DItype ll;
  20. } DIunion;