OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [libffi/] [src/] [debug.c] - Diff between revs 732 and 783

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 732 Rev 783
/* -----------------------------------------------------------------------
/* -----------------------------------------------------------------------
   debug.c - Copyright (c) 1996 Red Hat, Inc.
   debug.c - Copyright (c) 1996 Red Hat, Inc.
 
 
   Permission is hereby granted, free of charge, to any person obtaining
   Permission is hereby granted, free of charge, to any person obtaining
   a copy of this software and associated documentation files (the
   a copy of this software and associated documentation files (the
   ``Software''), to deal in the Software without restriction, including
   ``Software''), to deal in the Software without restriction, including
   without limitation the rights to use, copy, modify, merge, publish,
   without limitation the rights to use, copy, modify, merge, publish,
   distribute, sublicense, and/or sell copies of the Software, and to
   distribute, sublicense, and/or sell copies of the Software, and to
   permit persons to whom the Software is furnished to do so, subject to
   permit persons to whom the Software is furnished to do so, subject to
   the following conditions:
   the following conditions:
 
 
   The above copyright notice and this permission notice shall be included
   The above copyright notice and this permission notice shall be included
   in all copies or substantial portions of the Software.
   in all copies or substantial portions of the Software.
 
 
   THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
   THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
   NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
   NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
   DEALINGS IN THE SOFTWARE.
   DEALINGS IN THE SOFTWARE.
   ----------------------------------------------------------------------- */
   ----------------------------------------------------------------------- */
 
 
#include <ffi.h>
#include <ffi.h>
#include <ffi_common.h>
#include <ffi_common.h>
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
 
 
/* General debugging routines */
/* General debugging routines */
 
 
void ffi_stop_here(void)
void ffi_stop_here(void)
{
{
  /* This function is only useful for debugging purposes.
  /* This function is only useful for debugging purposes.
     Place a breakpoint on ffi_stop_here to be notified of
     Place a breakpoint on ffi_stop_here to be notified of
     significant events. */
     significant events. */
}
}
 
 
/* This function should only be called via the FFI_ASSERT() macro */
/* This function should only be called via the FFI_ASSERT() macro */
 
 
void ffi_assert(char *expr, char *file, int line)
void ffi_assert(char *expr, char *file, int line)
{
{
  fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
  fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
  ffi_stop_here();
  ffi_stop_here();
  abort();
  abort();
}
}
 
 
/* Perform a sanity check on an ffi_type structure */
/* Perform a sanity check on an ffi_type structure */
 
 
void ffi_type_test(ffi_type *a, char *file, int line)
void ffi_type_test(ffi_type *a, char *file, int line)
{
{
  FFI_ASSERT_AT(a != NULL, file, line);
  FFI_ASSERT_AT(a != NULL, file, line);
 
 
  FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
  FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
  FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
  FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
  FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
  FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
  FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
  FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
 
 
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.