/src/fftw3/kernel/rader.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright (c) 2003, 2007-14 Matteo Frigo |
3 | | * Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology |
4 | | * |
5 | | * This program is free software; you can redistribute it and/or modify |
6 | | * it under the terms of the GNU General Public License as published by |
7 | | * the Free Software Foundation; either version 2 of the License, or |
8 | | * (at your option) any later version. |
9 | | * |
10 | | * This program is distributed in the hope that it will be useful, |
11 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | | * GNU General Public License for more details. |
14 | | * |
15 | | * You should have received a copy of the GNU General Public License |
16 | | * along with this program; if not, write to the Free Software |
17 | | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
18 | | * |
19 | | */ |
20 | | |
21 | | #include "kernel/ifftw.h" |
22 | | |
23 | | /* |
24 | | common routines for Rader solvers |
25 | | */ |
26 | | |
27 | | |
28 | | /* shared twiddle and omega lists, keyed by two/three integers. */ |
29 | | struct rader_tls { |
30 | | INT k1, k2, k3; |
31 | | R *W; |
32 | | int refcnt; |
33 | | rader_tl *cdr; |
34 | | }; |
35 | | |
36 | | void X(rader_tl_insert)(INT k1, INT k2, INT k3, R *W, rader_tl **tl) |
37 | 39 | { |
38 | 39 | rader_tl *t = (rader_tl *) MALLOC(sizeof(rader_tl), TWIDDLES); |
39 | 39 | t->k1 = k1; t->k2 = k2; t->k3 = k3; t->W = W; |
40 | 39 | t->refcnt = 1; t->cdr = *tl; *tl = t; |
41 | 39 | } |
42 | | |
43 | | R *X(rader_tl_find)(INT k1, INT k2, INT k3, rader_tl *t) |
44 | 39 | { |
45 | 39 | while (t && (t->k1 != k1 || t->k2 != k2 || t->k3 != k3)) |
46 | 0 | t = t->cdr; |
47 | 39 | if (t) { |
48 | 0 | ++t->refcnt; |
49 | 0 | return t->W; |
50 | 0 | } else |
51 | 39 | return 0; |
52 | 39 | } |
53 | | |
54 | | void X(rader_tl_delete)(R *W, rader_tl **tl) |
55 | 39 | { |
56 | 39 | if (W) { |
57 | 39 | rader_tl **tp, *t; |
58 | | |
59 | 39 | for (tp = tl; (t = *tp) && t->W != W; tp = &t->cdr) |
60 | 0 | ; |
61 | | |
62 | 39 | if (t && --t->refcnt <= 0) { |
63 | 39 | *tp = t->cdr; |
64 | 39 | X(ifree)(t->W); |
65 | 39 | X(ifree)(t); |
66 | 39 | } |
67 | 39 | } |
68 | 39 | } |