u.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * This file is part of the UCB release of Plan 9. It is subject to the license
  3. * terms in the LICENSE file found in the top-level directory of this
  4. * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
  5. * part of the UCB release of Plan 9, including this file, may be copied,
  6. * modified, propagated, or distributed except according to the terms contained
  7. * in the LICENSE file.
  8. */
  9. #define nil ((void*)0)
  10. typedef unsigned char uint8_t;
  11. typedef signed char int8_t;
  12. typedef unsigned short uint16_t;
  13. typedef signed short int16_t;
  14. typedef unsigned int uint32_t;
  15. typedef unsigned int uint;
  16. typedef signed int int32_t;
  17. typedef unsigned long long uint64_t;
  18. typedef long long int64_t;
  19. typedef uint64_t uintptr;
  20. typedef uint64_t uintptr_t;
  21. typedef uint32_t usize;
  22. typedef __SIZE_TYPE__ size_t;
  23. typedef long ssize_t;
  24. typedef int32_t pid_t;
  25. typedef uint32_t Rune;
  26. typedef union FPdbleword FPdbleword;
  27. typedef uintptr_t jmp_buf[10]; // for registers.
  28. typedef long off_t;
  29. typedef long ptrdiff_t;
  30. #define JMPBUFSP 6
  31. #define JMPBUFPC 7
  32. #define JMPBUFARG1 8
  33. #define JMPBUFARG2 9
  34. #define JMPBUFDPC 0
  35. typedef unsigned int mpdigit; /* for /sys/include/mp.h */
  36. /* MXCSR */
  37. /* fcr */
  38. #define FPFTZ (1<<15) /* amd64 */
  39. #define FPINEX (1<<12)
  40. #define FPUNFL (1<<11)
  41. #define FPOVFL (1<<10)
  42. #define FPZDIV (1<<9)
  43. #define FPDNRM (1<<8) /* amd64 */
  44. #define FPINVAL (1<<7)
  45. #define FPDAZ (1<<6) /* amd64 */
  46. #define FPRNR (0<<13)
  47. #define FPRZ (3<<13)
  48. #define FPRPINF (2<<13)
  49. #define FPRNINF (1<<13)
  50. #define FPRMASK (3<<13)
  51. #define FPPEXT 0
  52. #define FPPSGL 0
  53. #define FPPDBL 0
  54. #define FPPMASK 0
  55. /* fsr */
  56. #define FPAINEX (1<<5)
  57. #define FPAUNFL (1<<4)
  58. #define FPAOVFL (1<<3)
  59. #define FPAZDIV (1<<2)
  60. #define FPADNRM (1<<1) /* not in plan 9 */
  61. #define FPAINVAL (1<<0)
  62. union FPdbleword
  63. {
  64. double x;
  65. struct { /* little endian */
  66. uint lo;
  67. uint hi;
  68. };
  69. };
  70. typedef union FdPair
  71. {
  72. int fd[2];
  73. long aslong;
  74. } FdPair;
  75. typedef __builtin_va_list va_list;
  76. #define va_start(v,l) __builtin_va_start(v,l)
  77. #define va_end(v) __builtin_va_end(v)
  78. #define va_arg(v,l) __builtin_va_arg(v,l)
  79. #define va_copy(v,l) __builtin_va_copy(v,l)
  80. # include "syscalls.h"