make it compile
authorMatthias Braun <matze@braunis.de>
Mon, 18 Jun 2007 13:21:22 +0000 (13:21 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 18 Jun 2007 13:21:22 +0000 (13:21 +0000)
[r18331]

Makefile
adt/array.c [new file with mode: 0644]
parser.c

index ab48de4..2ecd7bb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,18 +1,13 @@
 GOAL = cparser
 
-#FIRM_CFLAGS = `pkg-config --cflags libfirm`
-#FIRM_LIBS = `pkg-config --libs libfirm`
-FIRM_CFLAGS =
-FIRM_LIBS = -L. -lfirm
-
 CFLAGS += -Wall -W -Wextra -Werror -O0 -g3 -std=c99 -pedantic
 CFLAGS += -DHAVE_CONFIG_H
 CFLAGS += -I .
-CFLAGS += $(FIRM_CFLAGS)
 
-LFLAGS = -g3 $(FIRM_LIBS)
+LFLAGS = -g3
 
 SOURCES := \
+       adt/array.c \
        adt/hashset.c \
        adt/strset.c \
        adt/xmalloc.c \
diff --git a/adt/array.c b/adt/array.c
new file mode 100644 (file)
index 0000000..c412cbb
--- /dev/null
@@ -0,0 +1,215 @@
+/*
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ *
+ * This file is part of libFirm.
+ *
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
+ *
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
+ */
+
+/**
+ * @file
+ * @brief       Array --- dynamic & flexible arrays.
+ * @author      Markus Armbruster
+ * @version     $Id$
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#ifdef HAVE_STDLIB_H
+# include <stdlib.h>
+#endif
+
+#include "array.h"
+#include "xmalloc.h"
+
+/* Undefine the macros to get the functions instead, cf tmalloc.c.  */
+#undef xmalloc
+#undef xrealloc
+#undef xstrdup
+#undef xfree
+
+#ifndef MAX
+# define MAX(a,b) ((a) > (b) ? (a) : (b))
+#endif
+#ifndef MIN
+# define MIN(a,b) ((a) > (b) ? (b) : (a))
+#endif
+
+/**
+ * An empty dynamic array
+ */
+_arr_descr arr_mt_descr;
+
+/**
+ * Creates a dynamic array on a obstack.
+ *
+ * @param obstack    An struct obstack * were the data will be allocated
+ * @param nelts      The number of elements
+ * @param elts_size  The size of the array elements.
+ *
+ * @return A pointer to the dynamic array (can be used as a pointer to the
+ *         first element of this array).
+ *
+ * @remark Helper function, use NEW_ARR_D() instead.
+ */
+void *
+_new_arr_d (struct obstack *obstack, int nelts, size_t elts_size)
+{
+  _arr_descr *new;
+
+  assert (obstack && (nelts >= 0));
+
+  new = obstack_alloc (obstack, _ARR_ELTS_OFFS+elts_size);
+  _ARR_SET_DBGINF (new, ARR_D_MAGIC, elts_size/nelts);
+  new->u.obstack = obstack;
+  new->nelts = nelts;
+  return new->v.elts;
+}
+
+/**
+ * Creates a flexible array.
+ *
+ * @param nelts      The number of elements
+ * @param elts_size  The size of the array elements.
+ *
+ * @return A pointer to the flexible array (can be used as a pointer to the
+ *         first element of this array).
+ *
+ * @remark Helper function, use NEW_ARR_F() instead.
+ */
+void *
+_new_arr_f (int nelts, size_t elts_size)
+{
+  _arr_descr *new;
+
+  assert (nelts >= 0);
+  new = xmalloc (_ARR_ELTS_OFFS+elts_size);
+  _ARR_SET_DBGINF (new, ARR_F_MAGIC, nelts ? elts_size/nelts : 0);
+  new->u.allocated = new->nelts = nelts;
+  return new->v.elts;
+}
+
+/**
+ * Delete a flexible array.
+ *
+ * @param elts    The flexible array (pointer to the first element).
+ *
+ * @remark Helper function, use DEL_ARR_F() instead.
+ */
+void
+_del_arr_f (void *elts)
+{
+  _arr_descr *dp = _ARR_DESCR (elts);
+
+  ARR_VRFY (elts);
+  assert (dp->magic == ARR_F_MAGIC);
+
+#ifndef NDEBUG
+  dp->magic = 0xdeadbeef;
+#endif
+  free (dp);
+}
+
+/**
+ * Resize a flexible array, always reallocate data.
+ *
+ * @param elts       The flexible array (pointer to the first element).
+ * @param nelts      The new number of elements.
+ * @param elts_size  The size of the array elements.
+ *
+ * @return A resized flexible array, possibly other address than
+ *         elts.
+ *
+ * @remark Helper function, use ARR_SETLEN() instead.
+ */
+void *
+_arr_setlen (void *elts, int nelts, size_t elts_size)
+{
+  _arr_descr *dp = _ARR_DESCR (elts);
+
+  assert ((dp->magic == ARR_F_MAGIC) && (nelts >= 0));
+  ARR_VRFY (elts);
+  assert (!dp->eltsize || !nelts || (dp->eltsize == elts_size/nelts));
+
+  dp = xrealloc (dp, _ARR_ELTS_OFFS+elts_size);
+  dp->u.allocated = dp->nelts = nelts;
+
+  return dp->v.elts;
+}
+
+/**
+ * Resize a flexible array, allocate more data if needed but do NOT
+ * reduce.
+ *
+ * @param elts     The flexible array (pointer to the first element).
+ * @param nelts    The new number of elements.
+ * @param eltsize  The size of the array elements.
+ *
+ * @return A resized flexible array, possibly other address than
+ *         elts.
+ *
+ * @remark Helper function, use ARR_RESIZE() instead.
+ */
+void *
+_arr_resize (void *elts, int nelts, size_t eltsize)
+{
+  _arr_descr *dp = _ARR_DESCR (elts);
+  int n;
+
+  assert ((dp->magic == ARR_F_MAGIC) && (nelts >= 0));
+  ARR_VRFY (elts);
+  assert (dp->eltsize ? dp->eltsize == eltsize : (dp->eltsize = eltsize, 1));
+
+  /* @@@ lots of resizes for small nelts */
+  n = MAX (1, dp->u.allocated);
+  while (nelts > n) n <<= 1;
+  while (3*nelts < n) n >>= 1;
+  assert (n >= nelts);
+
+  if (n != dp->u.allocated) {
+    dp = xrealloc (dp, _ARR_ELTS_OFFS+eltsize*n);
+    dp->u.allocated = n;
+#if defined(DEBUG) && defined(HAVE_GNU_MALLOC)
+  } else {
+    tmalloc_tag = NULL;
+#endif
+  }
+  dp->nelts = nelts;
+
+  return dp->v.elts;
+}
+
+#ifdef DEBUG_libfirm
+/**
+ * This function returns the length of a flexible array.
+ * Do NOT use is in code, use ARR_LEN() macro!
+ * This function is intended to be called from a debugger.
+ */
+int array_len(void *arr) {
+  return ARR_LEN(arr);
+}
+
+/**
+ * This function returns the array descriptor of a flexible array.
+ * Do NOT use is in code!.
+ * This function is intended to be called from a debugger.
+ */
+_arr_descr *array_descr(void *arr) {
+  if (! arr)
+    return NULL;
+  return _ARR_DESCR(arr);
+}
+#endif /* DEBUG_libfirm */
index 94c822b..9a094bd 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -446,11 +446,20 @@ void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
                                        type_specifiers & SPECIFIER_LONG) {
                                parse_error("multiple type specifiers given");
                        } else {
-                               type_specifiers |= specifier;
+                               type_specifiers |= SPECIFIER_LONG_LONG;
                        }
                        break;
 
-                       type_specifiers
+               case T___u_quad_t:
+                       next_token();
+                       if(type_specifiers & SPECIFIER_LONG_LONG ||
+                                       type_specifiers & SPECIFIER_LONG ||
+                                       type_specifiers & SPECIFIER_UNSIGNED) {
+                               parse_error("multiple type specifiers given");
+                       } else {
+                               type_specifiers |= SPECIFIER_LONG_LONG | SPECIFIER_UNSIGNED;
+                       }
+                       break;
 
                case T_struct:
                        type = parse_struct_specifier();