File:  [gforth] / gforth / engine / 128bit.h
Revision 1.1: download - view: text, annotated - select for diffs
Fri Jan 4 21:48:53 2008 UTC (16 years, 3 months ago) by anton
Branches: MAIN
CVS tags: HEAD
moved --enable-force-ll out of configuration and into Makefile:
  Build with "make OPT=-ll OPTDEFINES=-DFORCE_LL"
  This builds gforth-ll gforth-fast-ll etc.
  This is the first step in automatically building a fast gforth.

/* supply [u]int128_t as DOUBLE_CELL_TYPEs under some conditions

  Copyright (C) 2005,2007 Free Software Foundation, Inc.

  This file is part of Gforth.

  Gforth is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License
  as published by the Free Software Foundation, either version 3
  of the License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, see http://www.gnu.org/licenses/.
*/

#if !defined(DOUBLE_CELL_TYPE) || !defined(DOUBLE_UCELL_TYPE)
#if (SIZEOF_CHAR_P==8)
#ifdef FORCE_LL
#warning hand-defined int128_t
typedef int int128_t __attribute__((__mode__(TI)));
typedef unsigned int uint128_t __attribute__((__mode__(TI)));
#define DOUBLE_CELL_TYPE int128_t
#define DOUBLE_UCELL_TYPE uint128_t
#else /* !defined(FORCE_LL) */
#define BUGGY_LONG_LONG
#endif /* !defined(FORCE_LL) */
#else /* (SIZEOF_CHAR_P!=8) */
#define BUGGY_LONG_LONG
#endif /* (SIZEOF_CHAR_P==8) */
#endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>