]> gcc.gnu.org Git - gcc.git/blame - libchill/diffps.c
gjavah.c (java_no_argument): Renamed from no_argument to avoid losing due to namespac...
[gcc.git] / libchill / diffps.c
CommitLineData
b79f73df
JL
1/* Implement POWERSET runtime actions for CHILL.
2 Copyright (C) 1992,1993 Free Software Foundation, Inc.
3 Author: Wilfried Moser, et al
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU CC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING. If not, write to
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21#define __CHILL_LIB__
22
b79f73df
JL
23#include <stdio.h>
24#include "powerset.h"
25
26/*
27 * function __diffpowerset
28 *
29 * parameters:
30 * out result of __diffpowerset
31 * left powerset
32 * right powerset
33 * bitlength length of powerset
34 *
35 * returns:
36 * void
37 *
38 * exceptions:
39 * none
40 *
41 * abstract:
42 * makes a difference of 2 powersets (out = left - right)
43 *
44 */
45void
46__diffpowerset (out, left, right, bitlength)
47 SET_WORD *out;
48 SET_WORD *left;
49 SET_WORD *right;
50 unsigned long bitlength;
51{
52 if (bitlength <= SET_CHAR_SIZE)
53 {
54 *((SET_CHAR *)out) = *((SET_CHAR *)left) & ~
55 *((SET_CHAR *)right);
56 MASK_UNUSED_CHAR_BITS ((SET_CHAR *)out, bitlength);
57 }
58 else if (bitlength <= SET_SHORT_SIZE)
59 {
60 *((SET_SHORT *)out) = *((SET_SHORT *)left) & ~
61 *((SET_SHORT *)right);
62 MASK_UNUSED_SHORT_BITS ((SET_SHORT *)out, bitlength);
63 }
64 else
65 {
66 unsigned long len = BITS_TO_WORDS(bitlength);
67 register unsigned long i;
68
69 for (i = 0; i < len; i++)
70 out[i] = left[i] & ~right[i];
71 MASK_UNUSED_WORD_BITS ((out + len - 1), bitlength % SET_WORD_SIZE);
72 }
73}
This page took 0.036526 seconds and 5 git commands to generate.