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 functions for constant building.
32 * @author Jose Fonseca <jfonseca@vmware.com>
36 #ifndef LP_BLD_CONST_H
37 #define LP_BLD_CONST_H
40 #include "pipe/p_compiler.h"
41 #include "gallivm/lp_bld.h"
42 #include "gallivm/lp_bld_init.h"
50 lp_mantissa(struct lp_type type
);
54 lp_const_shift(struct lp_type type
);
58 lp_const_offset(struct lp_type type
);
62 lp_const_scale(struct lp_type type
);
65 lp_const_min(struct lp_type type
);
69 lp_const_max(struct lp_type type
);
73 lp_const_eps(struct lp_type type
);
77 lp_build_undef(struct gallivm_state
*gallivm
, struct lp_type type
);
81 lp_build_zero(struct gallivm_state
*gallivm
, struct lp_type type
);
85 lp_build_one(struct gallivm_state
*gallivm
, struct lp_type type
);
89 lp_build_const_elem(struct gallivm_state
*gallivm
, struct lp_type type
,
93 lp_build_const_vec(struct gallivm_state
*gallivm
, struct lp_type type
,
98 lp_build_const_int_vec(struct gallivm_state
*gallivm
,
99 struct lp_type type
, long long val
);
103 lp_build_const_aos(struct gallivm_state
*gallivm
, struct lp_type type
,
104 double r
, double g
, double b
, double a
,
105 const unsigned char *swizzle
);
109 lp_build_const_mask_aos(struct gallivm_state
*gallivm
,
114 static INLINE LLVMValueRef
115 lp_build_const_int32(struct gallivm_state
*gallivm
, int i
)
117 return LLVMConstInt(LLVMInt32TypeInContext(gallivm
->context
), i
, 0);
121 static INLINE LLVMValueRef
122 lp_build_const_float(struct gallivm_state
*gallivm
, float x
)
124 return LLVMConstReal(LLVMFloatTypeInContext(gallivm
->context
), x
);
128 /** Return constant-valued pointer to int */
129 static INLINE LLVMValueRef
130 lp_build_const_int_pointer(struct gallivm_state
*gallivm
, const void *ptr
)
132 LLVMTypeRef int_type
;
135 /* int type large enough to hold a pointer */
136 int_type
= LLVMIntTypeInContext(gallivm
->context
, 8 * sizeof(void *));
137 v
= LLVMConstInt(int_type
, (uintptr_t) ptr
, 0);
138 v
= LLVMBuildIntToPtr(gallivm
->builder
, v
,
139 LLVMPointerType(int_type
, 0),
146 #endif /* !LP_BLD_CONST_H */