OSDN Git Service

Warning fixes:
[pf3gnuchains/gcc-fork.git] / libchill / andps.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 __andpowerset
35  *
36  * parameters:
37  *      out             return from __andpowerset
38  *      left            left powerset
39  *      right           right powerset
40  *      bitlength       length of powerset in bits
41  *
42  * returns:
43  *      void
44  *
45  * exceptions:
46  *  none
47  *
48  * abstract:
49  *  and's two powersets
50  *
51  */
52
53 void
54 __andpowerset (out, left, right, bitlength)
55      SET_WORD      *out;
56      SET_WORD      *left;
57      SET_WORD      *right;
58      unsigned long  bitlength;
59 {
60   if (bitlength <= SET_CHAR_SIZE)
61     {
62       *((SET_CHAR *)out) = *((SET_CHAR *)left) &
63                            *((SET_CHAR *)right);
64       MASK_UNUSED_CHAR_BITS((SET_CHAR *)out, bitlength);
65     }
66   else if (bitlength <= SET_SHORT_SIZE)
67     {
68       *((SET_SHORT *)out) = *((SET_SHORT *)left) &
69                             *((SET_SHORT *)right);
70       MASK_UNUSED_SHORT_BITS((SET_SHORT *)out, bitlength);
71     }
72   else
73     {
74       unsigned long len = BITS_TO_WORDS (bitlength);
75       register unsigned long i;
76     
77       for (i = 0; i < len; i++)
78         out[i] = left[i] & right[i];
79       MASK_UNUSED_WORD_BITS ((out + len - 1), 
80                              bitlength % SET_WORD_SIZE);
81     }
82 }