|
35 | 35 |
|
36 | 36 | [(list 'if c y f) (list ival-if c y f)] |
37 | 37 |
|
38 | | - [(list 'neg x) (list ival-neg x)] |
39 | | - [(list 'acos x) (list ival-acos x)] |
40 | | - [(list 'acosh x) (list ival-acosh x)] |
41 | | - [(list 'asin x) (list ival-asin x)] |
42 | | - [(list 'asinh x) (list ival-asinh x)] |
43 | | - [(list 'atan x) (list ival-atan x)] |
44 | | - [(list 'atanh x) (list ival-atanh x)] |
45 | | - [(list 'cbrt x) (list ival-cbrt x)] |
| 38 | + [(list 'neg x) (list ival-neg! (alloc-outreg!) x)] |
| 39 | + [(list 'acos x) (list ival-acos! (alloc-outreg!) x)] |
| 40 | + [(list 'acosh x) (list ival-acosh! (alloc-outreg!) x)] |
| 41 | + [(list 'asin x) (list ival-asin! (alloc-outreg!) x)] |
| 42 | + [(list 'asinh x) (list ival-asinh! (alloc-outreg!) x)] |
| 43 | + [(list 'atan x) (list ival-atan! (alloc-outreg!) x)] |
| 44 | + [(list 'atanh x) (list ival-atanh! (alloc-outreg!) x)] |
| 45 | + [(list 'cbrt x) (list ival-cbrt! (alloc-outreg!) x)] |
46 | 46 | [(list 'ceil x) (list ival-ceil x)] |
47 | 47 | [(list 'cos x) (list ival-cos x)] |
48 | | - [(list 'cosh x) (list ival-cosh x)] |
49 | | - [(list 'erf x) (list ival-erf x)] |
50 | | - [(list 'erfc x) (list ival-erfc x)] |
51 | | - [(list 'exp x) (list ival-exp x)] |
52 | | - [(list 'exp2 x) (list ival-exp2 x)] |
53 | | - [(list 'expm1 x) (list ival-expm1 x)] |
| 48 | + [(list 'cosh x) (list ival-cosh! (alloc-outreg!) x)] |
| 49 | + [(list 'erf x) (list ival-erf! (alloc-outreg!) x)] |
| 50 | + [(list 'erfc x) (list ival-erfc! (alloc-outreg!) x)] |
| 51 | + [(list 'exp x) (list ival-exp! (alloc-outreg!) x)] |
| 52 | + [(list 'exp2 x) (list ival-exp2! (alloc-outreg!) x)] |
| 53 | + [(list 'expm1 x) (list ival-expm1! (alloc-outreg!) x)] |
54 | 54 | [(list 'fabs x) (list ival-fabs x)] |
55 | 55 | [(list 'floor x) (list ival-floor x)] |
56 | 56 | [(list 'lgamma x) (list ival-lgamma x)] |
57 | | - [(list 'log x) (list ival-log x)] |
58 | | - [(list 'log10 x) (list ival-log10 x)] |
59 | | - [(list 'log1p x) (list ival-log1p x)] |
60 | | - [(list 'log2 x) (list ival-log2 x)] |
| 57 | + [(list 'log x) (list ival-log! (alloc-outreg!) x)] |
| 58 | + [(list 'log10 x) (list ival-log10! (alloc-outreg!) x)] |
| 59 | + [(list 'log1p x) (list ival-log1p! (alloc-outreg!) x)] |
| 60 | + [(list 'log2 x) (list ival-log2! (alloc-outreg!) x)] |
61 | 61 | [(list 'logb x) (list ival-logb x)] |
62 | | - [(list 'rint x) (list ival-rint x)] |
| 62 | + [(list 'rint x) (list ival-rint! (alloc-outreg!) x)] |
63 | 63 | [(list 'round x) (list ival-round x)] |
64 | 64 | [(list 'sin x) (list ival-sin x)] |
65 | | - [(list 'sinh x) (list ival-sinh x)] |
66 | | - [(list 'sqrt x) (list ival-sqrt x)] |
| 65 | + [(list 'sinh x) (list ival-sinh! (alloc-outreg!) x)] |
| 66 | + [(list 'sqrt x) (list ival-sqrt! (alloc-outreg!) x)] |
67 | 67 | [(list 'tan x) (list ival-tan x)] |
68 | | - [(list 'tanh x) (list ival-tanh x)] |
| 68 | + [(list 'tanh x) (list ival-tanh! (alloc-outreg!) x)] |
69 | 69 | [(list 'tgamma x) (list ival-tgamma x)] |
70 | 70 | [(list 'trunc x) (list ival-trunc x)] |
71 | 71 |
|
|
0 commit comments