beifg: Simplify the quite complicated way to divide a number by 2 in be_ifg_stat().
[libfirm] / ir / adt / xmalloc.c
index 7680c4b..17e7bda 100644 (file)
@@ -1,71 +1,51 @@
 /*
- * Project:     libFIRM
- * File name:   ir/adt/xmalloc.c
- * Purpose:     Xmalloc --- never failing wrappers for malloc() & friends.
- * Author:      Markus Armbruster
- * Modified by:
- * Created:     1999 by getting from fiasco
- * CVS-ID:      $Id$
- * Copyright:   (c) 1995, 1996 Markus Armbruster
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * This file is part of libFirm.
+ * Copyright (C) 2012 University of Karlsruhe.
+ */
+
+/**
+ * @file
+ * @brief       implementation of xmalloc & friends
+ * @author      Markus Armbruster
  */
 
 /* @@@ ToDo: replace this file with the one from liberty.
    [reimplement xstrdup, ... ] */
+#include "config.h"
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#ifdef HAVE_ALLOCA_H
-# include <alloca.h>
-#endif
-#ifdef HAVE_MALLOC_H
-# include <malloc.h>
-#endif
-#ifdef HAVE_STRING_H
-# include <string.h>
-#endif
-#ifdef HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
+#include <string.h>
+#include <stdio.h>
+#include <stdlib.h>
 
 #include "xmalloc.h"
-#include "panic.h"
-
-void *
-xmalloc(size_t size) {
-  void *res = malloc (size);
+#include "error.h"
 
-  if (!res) xnomem();
-  return res;
+static NORETURN xnomem(void)
+{
+       /* Do not use panic() here, because it might try to allocate memory! */
+       fputs("out of memory", stderr);
+       abort();
 }
 
-void *xcalloc(size_t num, size_t size) {
-  void *res = calloc(num, size);
+void *xmalloc(size_t size)
+{
+       void *res = malloc(size);
 
-  if (!res) xnomem();
-  return res;
+       if (!res) xnomem();
+       return res;
 }
 
-void *
-xrealloc(void *ptr, size_t size) {
-  /* ANSI blesses realloc (0, x) but SunOS chokes on it */
-  void *res = ptr ? realloc (ptr, size) : malloc (size);
+void *xrealloc(void *ptr, size_t size)
+{
+       /* ANSI blesses realloc (0, x) but SunOS chokes on it */
+       void *res = ptr ? realloc (ptr, size) : malloc (size);
 
-  if (!res) xnomem ();
-  return res;
+       if (!res) xnomem();
+       return res;
 }
 
-
-char *
-xstrdup(const char *str) {
-  size_t len = strlen (str) + 1;
-  return memcpy ((xmalloc) (len), str, len);
-}
-
-
-void
-xnomem(void) {
-  panic("out of memory");
+char *xstrdup(const char *str)
+{
+       size_t len = strlen (str) + 1;
+       return (char*) memcpy(xmalloc(len), str, len);
 }