* Makefile.in (JAVAGC): New macro.
[official-gcc.git] / libchill / notps.c
blob2c84d9806055c197e5aafdcd877a167aea21250b
1 /* Implement POWERSET runtime actions for CHILL.
2 Copyright (C) 1992,1993 Free Software Foundation, Inc.
3 Author: Wilfried Moser, et al
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* As a special exception, if you link this library with other files,
22 some of which are compiled with GCC, to produce an executable,
23 this library does not by itself cause the resulting executable
24 to be covered by the GNU General Public License.
25 This exception does not however invalidate any other reasons why
26 the executable file might be covered by the GNU General Public License. */
28 #define __CHILL_LIB__
30 #include <stdio.h>
31 #include "powerset.h"
34 * function __notpowerset
36 * parameters:
37 * out output powerset
38 * left input powerset
39 * bitlength length of powerset in bits
41 * returns:
42 * void
44 * exceptions:
45 * none
47 * abstract:
51 void
52 __notpowerset (out, left, bitlength)
53 SET_WORD *out;
54 SET_WORD *left;
55 unsigned long bitlength;
57 if (bitlength <= SET_CHAR_SIZE)
59 *((SET_CHAR *)out) = ~ (*((SET_CHAR *)left));
60 #if 0
61 SET_CHAR tmp;
62 tmp = *((SET_CHAR *)left);
63 tmp = ~ tmp;
64 *((SET_CHAR *)out) = tmp;
66 MASK_UNUSED_CHAR_BITS((SET_CHAR *)out, bitlength);
67 *((SET_CHAR *)out) = ~ *((SET_CHAR *)left);
68 MASK_UNUSED_CHAR_BITS((SET_CHAR *)out, bitlength);
69 *((SET_CHAR *)out) = (~(0)) ^ (*((SET_CHAR *)left));
70 MASK_UNUSED_CHAR_BITS((SET_CHAR *)out, bitlength);
71 #endif
73 else if (bitlength <= SET_SHORT_SIZE)
75 *((SET_SHORT *)out) = ~ (*((SET_SHORT *)left));
76 MASK_UNUSED_SHORT_BITS((SET_SHORT *)out, bitlength);
78 else
80 unsigned long len = BITS_TO_WORDS(bitlength);
81 register unsigned long i;
83 for (i = 0; i < len; i++)
84 out[i] = ~ left[i];
85 MASK_UNUSED_WORD_BITS((out + len - 1), bitlength % SET_WORD_SIZE);