e729ee6eaac5b1733e59e6461b974cf0885f843b
[mesa.git] / src / gallium / auxiliary / gallivm / lp_bld_flow.h
1 /**************************************************************************
2 *
3 * Copyright 2009 VMware, Inc.
4 * All Rights Reserved.
5 *
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:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
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.
25 *
26 **************************************************************************/
27
28 /**
29 * LLVM control flow build helpers.
30 *
31 * @author Jose Fonseca <jfonseca@vmware.com>
32 */
33
34 #ifndef LP_BLD_FLOW_H
35 #define LP_BLD_FLOW_H
36
37
38 #include "gallivm/lp_bld.h"
39
40
41 struct lp_type;
42
43
44 /**
45 * Early exit. Useful to skip to the end of a function or block when
46 * the execution mask becomes zero or when there is an error condition.
47 */
48 struct lp_build_skip_context
49 {
50 LLVMBuilderRef builder;
51
52 /** Block to skip to */
53 LLVMBasicBlockRef block;
54 };
55
56 void
57 lp_build_flow_skip_begin(struct lp_build_skip_context *ctx,
58 LLVMBuilderRef builder);
59
60 void
61 lp_build_flow_skip_cond_break(struct lp_build_skip_context *ctx,
62 LLVMValueRef cond);
63
64 void
65 lp_build_flow_skip_end(struct lp_build_skip_context *ctx);
66
67
68 struct lp_build_mask_context
69 {
70 struct lp_build_skip_context skip;
71
72 LLVMTypeRef reg_type;
73
74 LLVMValueRef var;
75 };
76
77
78 void
79 lp_build_mask_begin(struct lp_build_mask_context *mask,
80 LLVMBuilderRef builder,
81 struct lp_type type,
82 LLVMValueRef value);
83
84 LLVMValueRef
85 lp_build_mask_value(struct lp_build_mask_context *mask);
86
87 /**
88 * Bitwise AND the mask with the given value, if a previous mask was set.
89 */
90 void
91 lp_build_mask_update(struct lp_build_mask_context *mask,
92 LLVMValueRef value);
93
94 void
95 lp_build_mask_check(struct lp_build_mask_context *mask);
96
97 LLVMValueRef
98 lp_build_mask_end(struct lp_build_mask_context *mask);
99
100
101 /**
102 * LLVM's IR doesn't represent for-loops directly. Furthermore it
103 * it requires creating code blocks, branches, phi variables, so it
104 * requires a fair amount of code.
105 *
106 * @sa http://www.llvm.org/docs/tutorial/LangImpl5.html#for
107 */
108 struct lp_build_loop_state
109 {
110 LLVMBasicBlockRef block;
111 LLVMValueRef counter_var;
112 LLVMValueRef counter;
113 };
114
115
116 void
117 lp_build_loop_begin(LLVMBuilderRef builder,
118 LLVMValueRef start,
119 struct lp_build_loop_state *state);
120
121
122 void
123 lp_build_loop_end(LLVMBuilderRef builder,
124 LLVMValueRef end,
125 LLVMValueRef step,
126 struct lp_build_loop_state *state);
127
128 void
129 lp_build_loop_end_cond(LLVMBuilderRef builder,
130 LLVMValueRef end,
131 LLVMValueRef step,
132 LLVMIntPredicate cond,
133 struct lp_build_loop_state *state);
134
135
136
137
138 /**
139 * if/else/endif.
140 */
141 struct lp_build_if_state
142 {
143 LLVMBuilderRef builder;
144 LLVMValueRef condition;
145 LLVMBasicBlockRef entry_block;
146 LLVMBasicBlockRef true_block;
147 LLVMBasicBlockRef false_block;
148 LLVMBasicBlockRef merge_block;
149 };
150
151
152 void
153 lp_build_if(struct lp_build_if_state *ctx,
154 LLVMBuilderRef builder,
155 LLVMValueRef condition);
156
157 void
158 lp_build_else(struct lp_build_if_state *ctx);
159
160 void
161 lp_build_endif(struct lp_build_if_state *ctx);
162
163 LLVMBasicBlockRef
164 lp_build_insert_new_block(LLVMBuilderRef builder, const char *name);
165
166 LLVMValueRef
167 lp_build_alloca(LLVMBuilderRef builder,
168 LLVMTypeRef type,
169 const char *name);
170
171 LLVMValueRef
172 lp_build_array_alloca(LLVMBuilderRef builder,
173 LLVMTypeRef type,
174 LLVMValueRef count,
175 const char *name);
176
177 #endif /* !LP_BLD_FLOW_H */