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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_52/] [or1ksim/] [support/] [debug.h] - Diff between revs 1389 and 1429

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

Rev 1389 Rev 1429
/* debug.h -- Trace function declarations
/* debug.h -- Trace function declarations
   Copyright 1999 Patrik Stridvall (for the wine project: www.winehq.com)
   Copyright 1999 Patrik Stridvall (for the wine project: www.winehq.com)
   Copyright (C) 2005 György `nog' Jeney, nog@sdf.lonestar.org
   Copyright (C) 2005 György `nog' Jeney, nog@sdf.lonestar.org
 
 
This file is part of OpenRISC 1000 Architectural Simulator.
This file is part of OpenRISC 1000 Architectural Simulator.
(Most of it is ripped from the wine project's wine/include/wine/debug.h)
(Most of it is ripped from the wine project's wine/include/wine/debug.h)
 
 
This program is free software; you can redistribute it and/or modify
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
(at your option) any later version.
 
 
This program is distributed in the hope that it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
 
#ifndef __DEBUG_H_INCLUDED
#ifndef __DEBUG_H_INCLUDED
#define __DEBUG_H_INCLUDED
#define __DEBUG_H_INCLUDED
 
 
enum __ORSIM_DEBUG_CLASS {
enum __ORSIM_DEBUG_CLASS {
  __ORSIM_DBCL_TRACE,
  __ORSIM_DBCL_TRACE,
  __ORSIM_DBCL_FIXME,
  __ORSIM_DBCL_FIXME,
  __ORSIM_DBCL_WARN,
  __ORSIM_DBCL_WARN,
  __ORSIM_DBCL_ERR,
  __ORSIM_DBCL_ERR,
};
};
 
 
void orsim_dbg_log(enum __ORSIM_DEBUG_CLASS dbcl, const char *dbch,
void orsim_dbg_log(enum __ORSIM_DEBUG_CLASS dbcl, const char *dbch,
                   const char *function, const char *format, ...)
                   const char *function, const char *format, ...)
                                          __attribute__((format(printf, 4, 5)));
                                          __attribute__((format(printf, 4, 5)));
void orsim_dbcl_set_name(enum __ORSIM_DEBUG_CLASS dbcl, const char *dbch, int on);
void orsim_dbcl_set_name(enum __ORSIM_DEBUG_CLASS dbcl, const char *dbch, int on);
void parse_dbchs(const char *str);
void parse_dbchs(const char *str);
 
 
#ifndef __ORSIM_DBG_USE_FUNC
#ifndef __ORSIM_DBG_USE_FUNC
#define __ORSIM_DBG_USE_FUNC __FUNCTION__
#define __ORSIM_DBG_USE_FUNC __FUNCTION__
#endif
#endif
 
 
#define __ORSIM_DPRINTF(dbcl, dbch) \
#define __ORSIM_DPRINTF(dbcl, dbch) \
  do { const char * const __dbch = dbch; \
  do { const char * const __dbch = dbch; \
       const enum __ORSIM_DEBUG_CLASS __dbcl = __ORSIM_DBCL_##dbcl; \
       const enum __ORSIM_DEBUG_CLASS __dbcl = __ORSIM_DBCL_##dbcl; \
       __ORSIM_DEBUG_LOG
       __ORSIM_DEBUG_LOG
 
 
#define __ORSIM_DEBUG_LOG(args...) \
#define __ORSIM_DEBUG_LOG(args...) \
  orsim_dbg_log(__dbcl, __dbch, __ORSIM_DBG_USE_FUNC, args); } while(0)
  orsim_dbg_log(__dbcl, __dbch, __ORSIM_DBG_USE_FUNC, args); } while(0)
 
 
#define TRACE_(ch) __ORSIM_DPRINTF(TRACE, __orsim_dbch_##ch)
#define TRACE_(ch) __ORSIM_DPRINTF(TRACE, __orsim_dbch_##ch)
#define FIXME_(ch) __ORSIM_DPRINTF(FIXME, __orsim_dbch_##ch)
#define FIXME_(ch) __ORSIM_DPRINTF(FIXME, __orsim_dbch_##ch)
#define WARN_(ch) __ORSIM_DPRINTF(WARN, __orsim_dbch_##ch)
#define WARN_(ch) __ORSIM_DPRINTF(WARN, __orsim_dbch_##ch)
#define ERR_(ch) __ORSIM_DPRINTF(ERR, __orsim_dbch_##ch)
#define ERR_(ch) __ORSIM_DPRINTF(ERR, __orsim_dbch_##ch)
 
 
#define TRACE __ORSIM_DPRINTF(TRACE, __orsim_dbch___default)
#define TRACE __ORSIM_DPRINTF(TRACE, __orsim_dbch___default)
#define FIXME __ORSIM_DPRINTF(FIXME, __orsim_dbch___default)
#define FIXME __ORSIM_DPRINTF(FIXME, __orsim_dbch___default)
#define WARN __ORSIM_DPRINTF(WARN, __orsim_dbch___default)
#define WARN __ORSIM_DPRINTF(WARN, __orsim_dbch___default)
#define ERR __ORSIM_DPRINTF(ERR, __orsim_dbch___default)
#define ERR __ORSIM_DPRINTF(ERR, __orsim_dbch___default)
 
 
#define DEFAULT_DEBUG_CHANNEL(dbch) \
#define DEFAULT_DEBUG_CHANNEL(dbch) \
 extern char __orsim_dbch_##dbch[]; \
 extern char __orsim_dbch_##dbch[]; \
 static char * const __orsim_dbch___default = __orsim_dbch_##dbch;
 static char * const __orsim_dbch___default = __orsim_dbch_##dbch;
 
 
#ifndef __ORSIM_NO_DEC_DBCH
#ifndef __ORSIM_NO_DEC_DBCH
#define DECLARE_DEBUG_CHANNEL(dbch) extern char __orsim_dbch_##dbch[];
#define DECLARE_DEBUG_CHANNEL(dbch) extern char __orsim_dbch_##dbch[];
#endif
#endif
 
 
void debug(int level, const char *format,...) __attribute__((format(printf, 2, 3)));
void debug(int level, const char *format,...) __attribute__((format(printf, 2, 3)));
 
 
#endif
#endif
 
 

powered by: WebSVN 2.1.0

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