home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / sim / ppc / misc.c < prev    next >
C/C++ Source or Header  |  1995-11-13  |  2KB  |  119 lines

  1. /*  This file is part of the program psim.
  2.  
  3.     Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18.  
  19.     */
  20.  
  21.  
  22. #include <stdio.h>
  23. #include <stdarg.h>
  24.  
  25. #include "config.h"
  26. #include "misc.h"
  27.  
  28. #ifdef HAVE_STDLIB_H
  29. #include <stdlib.h>
  30. #endif
  31.  
  32. #ifdef HAVE_STRING_H
  33. #include <string.h>
  34. #else
  35. #ifdef HAVE_STRINGS_H
  36. #include <strings.h>
  37. #endif
  38. #endif
  39.  
  40. void
  41. error (char *msg, ...)
  42. {
  43.   va_list ap;
  44.   va_start(ap, msg);
  45.   vprintf(msg, ap);
  46.   va_end(ap);
  47.   exit (1);
  48. }
  49.  
  50. void *
  51. zalloc(long size)
  52. {
  53.   void *memory = malloc(size);
  54.   if (memory == NULL)
  55.     error("zalloc failed\n");
  56.   memset(memory, 0, size);
  57.   return memory;
  58. }
  59.  
  60. void
  61. dumpf (int indent, char *msg, ...)
  62. {
  63.   va_list ap;
  64.   for (; indent > 0; indent--)
  65.     printf(" ");
  66.   va_start(ap, msg);
  67.   vprintf(msg, ap);
  68.   va_end(ap);
  69. }
  70.  
  71.  
  72. int
  73. it_is(const char *flag,
  74.       const char *flags)
  75. {
  76.   int flag_len = strlen(flag);
  77.   while (*flags != '\0') {
  78.     if (!strncmp(flags, flag, flag_len)
  79.     && (flags[flag_len] == ',' || flags[flag_len] == '\0'))
  80.       return 1;
  81.     while (*flags != ',') {
  82.       if (*flags == '\0')
  83.     return 0;
  84.       flags++;
  85.     }
  86.     flags++;
  87.   }
  88.   return 0;
  89. }
  90.  
  91.  
  92. unsigned
  93. a2i(const char *a)
  94. {
  95.   return strtoul(a, 0, 0);
  96. }
  97.  
  98. unsigned
  99. target_a2i(int ms_bit_nr,
  100.        const char *a)
  101. {
  102.   if (ms_bit_nr)
  103.     return (ms_bit_nr - strtoul(a, 0, 0));
  104.   else
  105.     return strtoul(a, 0, 0);
  106. }
  107.  
  108. unsigned
  109. i2target(int ms_bit_nr,
  110.      unsigned bit)
  111. {
  112.   if (ms_bit_nr)
  113.     return ms_bit_nr - bit;
  114.   else
  115.     return bit;
  116. }
  117.  
  118.  
  119.