]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/Aarch64/machine/limits.h
StdLib: Add support for AArch64
[mirror_edk2.git] / StdLib / Include / Aarch64 / machine / limits.h
diff --git a/StdLib/Include/Aarch64/machine/limits.h b/StdLib/Include/Aarch64/machine/limits.h
new file mode 100644 (file)
index 0000000..dec214d
--- /dev/null
@@ -0,0 +1,100 @@
+/*      $NetBSD: limits.h,v 1.9 2008/08/29 19:08:29 matt Exp $  */\r
+\r
+/*\r
+ * Copyright (c) 1988 The Regents of the University of California.\r
+ * All rights reserved.\r
+ *\r
+ * Redistribution and use in source and binary forms, with or without\r
+ * modification, are permitted provided that the following conditions\r
+ * are met:\r
+ * 1. Redistributions of source code must retain the above copyright\r
+ *    notice, this list of conditions and the following disclaimer.\r
+ * 2. Redistributions in binary form must reproduce the above copyright\r
+ *    notice, this list of conditions and the following disclaimer in the\r
+ *    documentation and/or other materials provided with the distribution.\r
+ * 3. Neither the name of the University nor the names of its contributors\r
+ *    may be used to endorse or promote products derived from this software\r
+ *    without specific prior written permission.\r
+ *\r
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\r
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\r
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
+ * SUCH DAMAGE.\r
+ *\r
+ *      from: @(#)limits.h      7.2 (Berkeley) 6/28/90\r
+ */\r
+\r
+//TODO These values have been chosen during porting with the selection criteria\r
+//of being different from ARMv7 in the hope of discovering as many bugs as\r
+//possible as soon as possible. They are NOT authoritative!\r
+// ... (and should be replaced ASAP with more carefully chosen ones)\r
+\r
+#ifndef _AARCH64_LIMITS_H_\r
+#define _AARCH64_LIMITS_H_\r
+\r
+#include <sys/featuretest.h>\r
+\r
+#define __CHAR_BIT        8               /* number of bits in a char */\r
+//#define __MB_LEN_MAX      32              /* no multibyte characters */\r
+\r
+#define __SCHAR_MIN       (-0x7f-1)       /* max value for a signed char */\r
+#define __SCHAR_MAX       0x7f            /* min value for a signed char */\r
+\r
+#define __UCHAR_MAX       0xff            /* max value for an unsigned char */\r
+#define __CHAR_MAX        0xff            /* max value for a char */\r
+#define __CHAR_MIN        0               /* min value for a char */\r
+\r
+#define __USHRT_MAX       0xffff          /* max value for an unsigned short */\r
+#define __SHRT_MAX        0x7fff          /* max value for a short */\r
+#define __SHRT_MIN        (-0x7fff-1)     /* min value for a short */\r
+\r
+#define __UINT_MAX        0xffffffffU     /* max value for an unsigned int */\r
+#define __INT_MAX         0x7fffffff      /* max value for an int */\r
+#define __INT_MIN         (-0x7fffffff-1) /* min value for an int */\r
+\r
+#define __ULONG_MAX       0xffffffffffffffffUL    /* max value for an unsigned long */\r
+#define __LONG_MAX        0x7fffffffffffffffL     /* max value for a long */\r
+#define __LONG_MIN        (-0x7fffffffffffffffL-1)        /* min value for a long */\r
+\r
+#if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \\r
+    defined(_NETBSD_SOURCE)\r
+#define SSIZE_MAX         LONG_MAX        /* max value for a ssize_t */\r
+\r
+#if defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L || \\r
+    defined(_NETBSD_SOURCE)\r
+#define __ULLONG_MAX      0xffffffffffffffffULL   /* max unsigned long long */\r
+#define __LLONG_MAX       0x7fffffffffffffffLL    /* max signed long long */\r
+#define __LLONG_MIN       (-0x7fffffffffffffffLL-1) /* min signed long long */\r
+#endif\r
+\r
+#if defined(_NETBSD_SOURCE)\r
+#define SIZE_T_MAX      LONG_MAX        /* max value for a size_t */\r
+\r
+#define UQUAD_MAX       0xffffffffffffffffLL            /* max unsigned quad */\r
+#define QUAD_MAX        0x7fffffffffffffffLL            /* max signed quad */\r
+#define QUAD_MIN        (-0x7fffffffffffffffLL-1)       /* min signed quad */\r
+\r
+#endif /* _NETBSD_SOURCE */\r
+#endif /* _POSIX_C_SOURCE || _XOPEN_SOURCE || _NETBSD_SOURCE */\r
+\r
+#if defined(_XOPEN_SOURCE) || defined(_NETBSD_SOURCE)\r
+#define LONG_BIT        64\r
+#define WORD_BIT        32\r
+\r
+#define DBL_DIG         15\r
+#define DBL_MAX         1.7976931348623157E+308\r
+#define DBL_MIN         2.2250738585072014E-308\r
+\r
+//#define FLT_DIG         6\r
+//#define FLT_MAX         3.40282347E+38F\r
+//#define FLT_MIN         1.17549435E-38F\r
+#endif\r
+\r
+#endif  /* _AARCH64_LIMITS_H_ */\r