OSDN Git Service

* Add library exception clause to the copyright notice for all
[pf3gnuchains/gcc-fork.git] / libchill / notps.c
1 /* Implement POWERSET runtime actions for CHILL.
2    Copyright (C) 1992,1993 Free Software Foundation, Inc.
3    Author: Wilfried Moser, et al
4
5 This file is part of GNU CC.
6
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.
11
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.
16
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.  */
20
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.  */
27
28 #define __CHILL_LIB__
29
30 #include <stdio.h>
31 #include "powerset.h"
32
33 /*
34  * function __notpowerset
35  *
36  * parameters:
37  *      out             output powerset
38  *      left            input powerset
39  *      bitlength       length of powerset in bits
40  *
41  * returns:
42  *      void
43  *
44  * exceptions:
45  *  none
46  *
47  * abstract:
48  *
49  */
50
51 void
52 __notpowerset (out, left, bitlength)
53      SET_WORD      *out;
54      SET_WORD      *left;
55      unsigned long  bitlength;
56 {
57   if (bitlength <= SET_CHAR_SIZE)
58     {
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;
65
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
72     }
73   else if (bitlength <= SET_SHORT_SIZE)
74     {
75       *((SET_SHORT *)out) = ~  (*((SET_SHORT *)left));
76       MASK_UNUSED_SHORT_BITS((SET_SHORT *)out, bitlength);
77     }
78   else
79     {
80       unsigned long len = BITS_TO_WORDS(bitlength);
81       register unsigned long i;
82     
83       for (i = 0; i < len; i++)
84         out[i] = ~ left[i];
85       MASK_UNUSED_WORD_BITS((out + len - 1), bitlength % SET_WORD_SIZE);
86     }
87 }