OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [sim/] [common/] [sim-n-bits.h] - Diff between revs 157 and 223

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

Rev 157 Rev 223
/* The common simulator framework for GDB, the GNU Debugger.
/* The common simulator framework for GDB, the GNU Debugger.
 
 
   Copyright 2002, 2007, 2008 Free Software Foundation, Inc.
   Copyright 2002, 2007, 2008 Free Software Foundation, Inc.
 
 
   Contributed by Andrew Cagney and Red Hat.
   Contributed by Andrew Cagney and Red Hat.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   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 3 of the License, or
   the Free Software Foundation; either version 3 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, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
 
 
#ifndef N
#ifndef N
#error "N must be #defined"
#error "N must be #defined"
#endif
#endif
 
 
#include "symcat.h"
#include "symcat.h"
 
 
#if defined(__STDC__) && defined(signed)
#if defined(__STDC__) && defined(signed)
/* If signed were defined to be say __signed (ie, some versions of Linux),
/* If signed were defined to be say __signed (ie, some versions of Linux),
   then the signedN macro would not work correctly.  If we have a standard
   then the signedN macro would not work correctly.  If we have a standard
   compiler, we have signed.  */
   compiler, we have signed.  */
#undef signed
#undef signed
#endif
#endif
 
 
/* NOTE: See end of file for #undef */
/* NOTE: See end of file for #undef */
#define unsignedN XCONCAT2(unsigned,N)
#define unsignedN XCONCAT2(unsigned,N)
#define signedN XCONCAT2(signed,N)
#define signedN XCONCAT2(signed,N)
#define LSMASKn XCONCAT2(LSMASK,N)
#define LSMASKn XCONCAT2(LSMASK,N)
#define MSMASKn XCONCAT2(MSMASK,N)
#define MSMASKn XCONCAT2(MSMASK,N)
#define LSMASKEDn XCONCAT2(LSMASKED,N)
#define LSMASKEDn XCONCAT2(LSMASKED,N)
#define MSMASKEDn XCONCAT2(MSMASKED,N)
#define MSMASKEDn XCONCAT2(MSMASKED,N)
#define LSEXTRACTEDn XCONCAT2(LSEXTRACTED,N)
#define LSEXTRACTEDn XCONCAT2(LSEXTRACTED,N)
#define MSEXTRACTEDn XCONCAT2(MSEXTRACTED,N)
#define MSEXTRACTEDn XCONCAT2(MSEXTRACTED,N)
#define LSINSERTEDn XCONCAT2(LSINSERTED,N)
#define LSINSERTEDn XCONCAT2(LSINSERTED,N)
#define MSINSERTEDn XCONCAT2(MSINSERTED,N)
#define MSINSERTEDn XCONCAT2(MSINSERTED,N)
#define ROTn XCONCAT2(ROT,N)
#define ROTn XCONCAT2(ROT,N)
#define ROTLn XCONCAT2(ROTL,N)
#define ROTLn XCONCAT2(ROTL,N)
#define ROTRn XCONCAT2(ROTR,N)
#define ROTRn XCONCAT2(ROTR,N)
#define MSSEXTn XCONCAT2(MSSEXT,N)
#define MSSEXTn XCONCAT2(MSSEXT,N)
#define LSSEXTn XCONCAT2(LSSEXT,N)
#define LSSEXTn XCONCAT2(LSSEXT,N)
 
 
/* TAGS: LSMASKED16 LSMASKED32 LSMASKED64 */
/* TAGS: LSMASKED16 LSMASKED32 LSMASKED64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
LSMASKEDn (unsignedN word,
LSMASKEDn (unsignedN word,
           int start,
           int start,
           int stop)
           int stop)
{
{
  word &= LSMASKn (start, stop);
  word &= LSMASKn (start, stop);
  return word;
  return word;
}
}
 
 
/* TAGS: MSMASKED16 MSMASKED32 MSMASKED64 */
/* TAGS: MSMASKED16 MSMASKED32 MSMASKED64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
MSMASKEDn (unsignedN word,
MSMASKEDn (unsignedN word,
           int start,
           int start,
           int stop)
           int stop)
{
{
  word &= MSMASKn (start, stop);
  word &= MSMASKn (start, stop);
  return word;
  return word;
}
}
 
 
/* TAGS: LSEXTRACTED16 LSEXTRACTED32 LSEXTRACTED64 */
/* TAGS: LSEXTRACTED16 LSEXTRACTED32 LSEXTRACTED64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
LSEXTRACTEDn (unsignedN val,
LSEXTRACTEDn (unsignedN val,
              int start,
              int start,
              int stop)
              int stop)
{
{
  val <<= (N - 1 - start); /* drop high bits */
  val <<= (N - 1 - start); /* drop high bits */
  val >>= (N - 1 - start) + (stop); /* drop low bits */
  val >>= (N - 1 - start) + (stop); /* drop low bits */
  return val;
  return val;
}
}
 
 
/* TAGS: MSEXTRACTED16 MSEXTRACTED32 MSEXTRACTED64 */
/* TAGS: MSEXTRACTED16 MSEXTRACTED32 MSEXTRACTED64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
MSEXTRACTEDn (unsignedN val,
MSEXTRACTEDn (unsignedN val,
              int start,
              int start,
              int stop)
              int stop)
{
{
  val <<= (start); /* drop high bits */
  val <<= (start); /* drop high bits */
  val >>= (start) + (N - 1 - stop); /* drop low bits */
  val >>= (start) + (N - 1 - stop); /* drop low bits */
  return val;
  return val;
}
}
 
 
/* TAGS: LSINSERTED16 LSINSERTED32 LSINSERTED64 */
/* TAGS: LSINSERTED16 LSINSERTED32 LSINSERTED64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
LSINSERTEDn (unsignedN val,
LSINSERTEDn (unsignedN val,
             int start,
             int start,
             int stop)
             int stop)
{
{
  val <<= stop;
  val <<= stop;
  val &= LSMASKn (start, stop);
  val &= LSMASKn (start, stop);
  return val;
  return val;
}
}
 
 
/* TAGS: MSINSERTED16 MSINSERTED32 MSINSERTED64 */
/* TAGS: MSINSERTED16 MSINSERTED32 MSINSERTED64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
MSINSERTEDn (unsignedN val,
MSINSERTEDn (unsignedN val,
             int start,
             int start,
             int stop)
             int stop)
{
{
  val <<= ((N - 1) - stop);
  val <<= ((N - 1) - stop);
  val &= MSMASKn (start, stop);
  val &= MSMASKn (start, stop);
  return val;
  return val;
}
}
 
 
/* TAGS: ROT16 ROT32 ROT64 */
/* TAGS: ROT16 ROT32 ROT64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
ROTn (unsignedN val,
ROTn (unsignedN val,
      int shift)
      int shift)
{
{
  if (shift > 0)
  if (shift > 0)
    return ROTRn (val, shift);
    return ROTRn (val, shift);
  else if (shift < 0)
  else if (shift < 0)
    return ROTLn (val, -shift);
    return ROTLn (val, -shift);
  else
  else
    return val;
    return val;
}
}
 
 
/* TAGS: ROTL16 ROTL32 ROTL64 */
/* TAGS: ROTL16 ROTL32 ROTL64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
ROTLn (unsignedN val,
ROTLn (unsignedN val,
       int shift)
       int shift)
{
{
  unsignedN result;
  unsignedN result;
  ASSERT (shift <= N);
  ASSERT (shift <= N);
  result = (((val) << (shift)) | ((val) >> ((N)-(shift))));
  result = (((val) << (shift)) | ((val) >> ((N)-(shift))));
  return result;
  return result;
}
}
 
 
/* TAGS: ROTR16 ROTR32 ROTR64 */
/* TAGS: ROTR16 ROTR32 ROTR64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
ROTRn (unsignedN val,
ROTRn (unsignedN val,
       int shift)
       int shift)
{
{
  unsignedN result;
  unsignedN result;
  ASSERT (shift <= N);
  ASSERT (shift <= N);
  result = (((val) >> (shift)) | ((val) << ((N)-(shift))));
  result = (((val) >> (shift)) | ((val) << ((N)-(shift))));
  return result;
  return result;
}
}
 
 
/* TAGS: LSSEXT16 LSSEXT32 LSSEXT64 */
/* TAGS: LSSEXT16 LSSEXT32 LSSEXT64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
LSSEXTn (signedN val,
LSSEXTn (signedN val,
         int sign_bit)
         int sign_bit)
{
{
  int shift;
  int shift;
  /* make the sign-bit most significant and then smear it back into
  /* make the sign-bit most significant and then smear it back into
     position */
     position */
  ASSERT (sign_bit < N);
  ASSERT (sign_bit < N);
  shift = ((N - 1) - sign_bit);
  shift = ((N - 1) - sign_bit);
  val <<= shift;
  val <<= shift;
  val >>= shift;
  val >>= shift;
  return val;
  return val;
}
}
 
 
/* TAGS: MSSEXT16 MSSEXT32 MSSEXT64 */
/* TAGS: MSSEXT16 MSSEXT32 MSSEXT64 */
 
 
INLINE_SIM_BITS\
INLINE_SIM_BITS\
(unsignedN)
(unsignedN)
MSSEXTn (signedN val,
MSSEXTn (signedN val,
         int sign_bit)
         int sign_bit)
{
{
  /* make the sign-bit most significant and then smear it back into
  /* make the sign-bit most significant and then smear it back into
     position */
     position */
  ASSERT (sign_bit < N);
  ASSERT (sign_bit < N);
  val <<= sign_bit;
  val <<= sign_bit;
  val >>= sign_bit;
  val >>= sign_bit;
  return val;
  return val;
}
}
 
 
 
 
/* NOTE: See start of file for #define */
/* NOTE: See start of file for #define */
#undef LSSEXTn
#undef LSSEXTn
#undef MSSEXTn
#undef MSSEXTn
#undef ROTLn
#undef ROTLn
#undef ROTRn
#undef ROTRn
#undef ROTn
#undef ROTn
#undef LSINSERTEDn
#undef LSINSERTEDn
#undef MSINSERTEDn
#undef MSINSERTEDn
#undef LSEXTRACTEDn
#undef LSEXTRACTEDn
#undef MSEXTRACTEDn
#undef MSEXTRACTEDn
#undef LSMASKEDn
#undef LSMASKEDn
#undef LSMASKn
#undef LSMASKn
#undef MSMASKEDn
#undef MSMASKEDn
#undef MSMASKn
#undef MSMASKn
#undef signedN
#undef signedN
#undef unsignedN
#undef unsignedN
 
 

powered by: WebSVN 2.1.0

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