<div dir="ltr">On Fri, Mar 6, 2015 at 9:32 AM, Emil Velikov <span dir="ltr"><<a href="mailto:emil.l.velikov@gmail.com" target="_blank">emil.l.velikov@gmail.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Used for aligned_alloc and other C11 functions missing from the header.<br>
<br>
Signed-off-by: Emil Velikov <<a href="mailto:emil.l.velikov@gmail.com" target="_blank">emil.l.velikov@gmail.com</a>><br>
---<br>
 include/c11_stdlib.h | 118 ++++++++++++++++++++++++++++++</blockquote><div><br></div><div>I wonder if this should be include/c11/stdlib.h instead.<br><br></div><div>I also wonder if I should have put c99_math.h in c99/math.h  Jose followed my pattern with c99_alloca.h<br><br></div><div>We should probably be more consistent about this.  What do you think?<br><br><br> <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">+++++++++++++++++++++<br>
 1 file changed, 118 insertions(+)<br>
 create mode 100644 include/c11_stdlib.h<br>
<br>
diff --git a/include/c11_stdlib.h b/include/c11_stdlib.h<br>
new file mode 100644<br>
index 0000000..04e494f<br>
--- /dev/null<br>
+++ b/include/c11_stdlib.h<br>
@@ -0,0 +1,118 @@<br>
+/*<br>
+ * Mesa 3-D graphics library<br>
+ *<br>
+ * Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.<br>
+ *<br>
+ * Permission is hereby granted, free of charge, to any person obtaining a<br>
+ * copy of this software and associated documentation files (the "Software"),<br>
+ * to deal in the Software without restriction, including without limitation<br>
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,<br>
+ * and/or sell copies of the Software, and to permit persons to whom the<br>
+ * Software is furnished to do so, subject to the following conditions:<br>
+ *<br>
+ * The above copyright notice and this permission notice shall be included<br>
+ * in all copies or substantial portions of the Software.<br>
+ *<br>
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS<br>
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br>
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL<br>
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR<br>
+ * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,<br>
+ * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR<br>
+ * OTHER DEALINGS IN THE SOFTWARE.<br>
+ */<br>
+<br>
+/**<br>
+ * Wrapper for stdlib.h which makes sure we have definitions of all the c11<br>
+ * functions.<br>
+ */<br>
+<br>
+#ifndef _C11_STDLIB_H_<br>
+#define _C11_STDLIB_H_<br>
+<br>
+#include <stdint.h><br></blockquote><div><br></div><div>I stdint.h really needed here?<br><br></div><div>Otherwise than the naming issue and the stdint.h question, the series looks good to me.  Reviewed-by: Brian Paul <<a href="mailto:brianp@vmware.com">brianp@vmware.com</a>><br><br><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
+#include <stdlib.h><br>
+#include "c99_compat.h"<br>
+<br>
+<br>
+#if !defined(_ISOC11_SOURCE) && __STDC_VERSION__ < 201112L<br>
+<br>
+#if defined(_WIN32) && !defined(__CYGWIN__)<br>
+#include <malloc.h><br>
+#endif<br>
+<br>
+/**<br>
+ * Allocate aligned memory.<br>
+ *<br>
+ * \param alignment alignment (must be greater than zero).<br>
+ * \param size number of bytes to allocate.<br>
+ *<br>
+ * Allocates extra memory to accommodate rounding up the address for<br>
+ * alignment and to record the real malloc address.<br>
+ *<br>
+ * \sa aligned_free().<br>
+ */<br>
+static inline void *<br>
+aligned_alloc(size_t alignment, size_t size)<br>
+{<br>
+#if defined(HAVE_POSIX_MEMALIGN)<br>
+   void *mem;<br>
+   int err = posix_memalign(&mem, alignment, size);<br>
+   if (err)<br>
+      return NULL;<br>
+   return mem;<br>
+#elif defined(_WIN32) && !defined(__CYGWIN__)<br>
+   return _aligned_malloc(size, alignment);<br>
+#else<br>
+   uintptr_t ptr, buf;<br>
+<br>
+   assert( alignment > 0 );<br>
+<br>
+   ptr = (uintptr_t)malloc(size + alignment + sizeof(void *));<br>
+   if (!ptr)<br>
+      return NULL;<br>
+<br>
+   buf = (ptr + alignment + sizeof(void *)) & ~(uintptr_t)(alignment - 1);<br>
+   *(uintptr_t *)(buf - sizeof(void *)) = ptr;<br>
+<br>
+#ifdef DEBUG<br>
+   /* mark the non-aligned area */<br>
+   while ( ptr < buf - sizeof(void *) ) {<br>
+      *(unsigned long *)ptr = 0xcdcdcdcd;<br>
+      ptr += sizeof(unsigned long);<br>
+   }<br>
+#endif<br>
+<br>
+   return (void *) buf;<br>
+#endif /* defined(HAVE_POSIX_MEMALIGN) */<br>
+}<br>
+<br>
+#endif /* C11 */<br>
+<br>
+/**<br>
+ * Free memory which was allocated with aligned_alloc().<br>
+ *<br>
+ * \param ptr pointer to the memory to be freed.<br>
+ *<br>
+ * The actual address to free is stored in the word immediately before the<br>
+ * address the client sees.<br>
+ * Note that it is legal to pass NULL pointer to this function and will be<br>
+ * handled accordingly.<br>
+ */<br>
+static inline void<br>
+aligned_free(void *ptr)<br>
+{<br>
+#if defined(HAVE_POSIX_MEMALIGN)<br>
+   free(ptr);<br>
+#elif defined(_WIN32) && !defined(__CYGWIN__)<br>
+   _aligned_free(ptr);<br>
+#else<br>
+   if (ptr) {<br>
+      void **cubbyHole = (void **) ((char *) ptr - sizeof(void *));<br>
+      void *realAddr = *cubbyHole;<br>
+      free(realAddr);<br>
+   }<br>
+#endif /* defined(HAVE_POSIX_MEMALIGN) */<br>
+}<br>
+<br>
+#endif /* #define _C11_STDLIB_H_ */<br>
<span><font color="#888888">--<br>
2.1.3<br>
<br>
_______________________________________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org" target="_blank">mesa-dev@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/mesa-dev" target="_blank">http://lists.freedesktop.org/mailman/listinfo/mesa-dev</a><br>
</font></span></blockquote></div><br></div></div>