1 /**************************************************************************
3 * Copyright 2009 VMware, Inc.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
30 * Helper arithmetic functions.
32 * @author Jose Fonseca <jfonseca@vmware.com>
40 #include <llvm-c/Core.h>
44 struct lp_build_context;
48 * Complement, i.e., 1 - a.
51 lp_build_comp(struct lp_build_context *bld,
55 lp_build_add(struct lp_build_context *bld,
60 lp_build_sub(struct lp_build_context *bld,
65 lp_build_mul(struct lp_build_context *bld,
70 lp_build_mul_imm(struct lp_build_context *bld,
75 lp_build_div(struct lp_build_context *bld,
80 lp_build_lerp(struct lp_build_context *bld,
86 * Bilinear interpolation.
88 * Values indices are in v_{yx}.
91 lp_build_lerp_2d(struct lp_build_context *bld,
100 lp_build_min(struct lp_build_context *bld,
105 lp_build_max(struct lp_build_context *bld,
110 lp_build_abs(struct lp_build_context *bld,
114 lp_build_sgn(struct lp_build_context *bld,
118 lp_build_round(struct lp_build_context *bld,
122 lp_build_floor(struct lp_build_context *bld,
126 lp_build_ceil(struct lp_build_context *bld,
130 lp_build_trunc(struct lp_build_context *bld,
134 lp_build_ifloor(struct lp_build_context *bld,
137 lp_build_iceil(struct lp_build_context *bld,
141 lp_build_iround(struct lp_build_context *bld,
145 lp_build_itrunc(struct lp_build_context *bld,
149 lp_build_sqrt(struct lp_build_context *bld,
153 lp_build_rcp(struct lp_build_context *bld,
157 lp_build_rsqrt(struct lp_build_context *bld,
161 lp_build_cos(struct lp_build_context *bld,
165 lp_build_sin(struct lp_build_context *bld,
169 lp_build_pow(struct lp_build_context *bld,
174 lp_build_exp(struct lp_build_context *bld,
178 lp_build_log(struct lp_build_context *bld,
182 lp_build_exp2(struct lp_build_context *bld,
186 lp_build_log2(struct lp_build_context *bld,
190 lp_build_exp2_approx(struct lp_build_context *bld,
192 LLVMValueRef *p_exp2_int_part,
193 LLVMValueRef *p_frac_part,
194 LLVMValueRef *p_exp2);
197 lp_build_log2_approx(struct lp_build_context *bld,
200 LLVMValueRef *p_floor_log2,
201 LLVMValueRef *p_log2);
203 #endif /* !LP_BLD_ARIT_H */