Merge remote branch 'origin/master' into lp-setup-llvm
[mesa.git] / src / gallium / drivers / llvmpipe / lp_test_round.c
1 /**************************************************************************
2 *
3 * Copyright 2010 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 #include <stdlib.h>
30 #include <stdio.h>
31
32 #include "util/u_pointer.h"
33 #include "gallivm/lp_bld.h"
34 #include "gallivm/lp_bld_init.h"
35 #include "gallivm/lp_bld_arit.h"
36
37 #include <llvm-c/Analysis.h>
38 #include <llvm-c/ExecutionEngine.h>
39 #include <llvm-c/Target.h>
40 #include <llvm-c/Transforms/Scalar.h>
41
42 #include "lp_test.h"
43
44
45 void
46 write_tsv_header(FILE *fp)
47 {
48 fprintf(fp,
49 "result\t"
50 "format\n");
51
52 fflush(fp);
53 }
54
55
56 #ifdef PIPE_ARCH_SSE
57
58 #define USE_SSE2
59 #include "sse_mathfun.h"
60
61 typedef __m128 (*test_round_t)(__m128);
62
63 typedef LLVMValueRef (*lp_func_t)(struct lp_build_context *, LLVMValueRef);
64
65
66 static LLVMValueRef
67 add_test(LLVMModuleRef module, const char *name, lp_func_t lp_func)
68 {
69 LLVMTypeRef v4sf = LLVMVectorType(LLVMFloatType(), 4);
70 LLVMTypeRef args[1] = { v4sf };
71 LLVMValueRef func = LLVMAddFunction(module, name, LLVMFunctionType(v4sf, args, 1, 0));
72 LLVMValueRef arg1 = LLVMGetParam(func, 0);
73 LLVMBuilderRef builder = LLVMCreateBuilder();
74 LLVMBasicBlockRef block = LLVMAppendBasicBlock(func, "entry");
75 LLVMValueRef ret;
76 struct lp_build_context bld;
77
78 lp_build_context_init(&bld, builder, lp_float32_vec4_type());
79
80 LLVMSetFunctionCallConv(func, LLVMCCallConv);
81
82 LLVMPositionBuilderAtEnd(builder, block);
83
84 ret = lp_func(&bld, arg1);
85
86 LLVMBuildRet(builder, ret);
87 LLVMDisposeBuilder(builder);
88 return func;
89 }
90
91 static void
92 printv(char* string, v4sf value)
93 {
94 v4sf v = value;
95 float *f = (float *)&v;
96 printf("%s: %10f %10f %10f %10f\n", string,
97 f[0], f[1], f[2], f[3]);
98 }
99
100 static boolean
101 compare(v4sf x, v4sf y)
102 {
103 boolean success = TRUE;
104 float *xp = (float *) &x;
105 float *yp = (float *) &y;
106 if (xp[0] != yp[0] ||
107 xp[1] != yp[1] ||
108 xp[2] != yp[2] ||
109 xp[3] != yp[3]) {
110 printf(" Incorrect result! ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ \n");
111 success = FALSE;
112 }
113 return success;
114 }
115
116
117
118 PIPE_ALIGN_STACK
119 static boolean
120 test_round(unsigned verbose, FILE *fp)
121 {
122 LLVMModuleRef module = NULL;
123 LLVMValueRef test_round = NULL, test_trunc, test_floor, test_ceil;
124 LLVMExecutionEngineRef engine = lp_build_engine;
125 LLVMPassManagerRef pass = NULL;
126 char *error = NULL;
127 test_round_t round_func, trunc_func, floor_func, ceil_func;
128 float unpacked[4];
129 unsigned packed;
130 boolean success = TRUE;
131 int i;
132
133 module = LLVMModuleCreateWithName("test");
134
135 test_round = add_test(module, "round", lp_build_round);
136 test_trunc = add_test(module, "trunc", lp_build_trunc);
137 test_floor = add_test(module, "floor", lp_build_floor);
138 test_ceil = add_test(module, "ceil", lp_build_ceil);
139
140 if(LLVMVerifyModule(module, LLVMPrintMessageAction, &error)) {
141 printf("LLVMVerifyModule: %s\n", error);
142 LLVMDumpModule(module);
143 abort();
144 }
145 LLVMDisposeMessage(error);
146
147 #if 0
148 pass = LLVMCreatePassManager();
149 LLVMAddTargetData(LLVMGetExecutionEngineTargetData(engine), pass);
150 /* These are the passes currently listed in llvm-c/Transforms/Scalar.h,
151 * but there are more on SVN. */
152 LLVMAddConstantPropagationPass(pass);
153 LLVMAddInstructionCombiningPass(pass);
154 LLVMAddPromoteMemoryToRegisterPass(pass);
155 LLVMAddGVNPass(pass);
156 LLVMAddCFGSimplificationPass(pass);
157 LLVMRunPassManager(pass, module);
158 #else
159 (void)pass;
160 #endif
161
162 round_func = (test_round_t) pointer_to_func(LLVMGetPointerToGlobal(engine, test_round));
163 trunc_func = (test_round_t) pointer_to_func(LLVMGetPointerToGlobal(engine, test_trunc));
164 floor_func = (test_round_t) pointer_to_func(LLVMGetPointerToGlobal(engine, test_floor));
165 ceil_func = (test_round_t) pointer_to_func(LLVMGetPointerToGlobal(engine, test_ceil));
166
167 memset(unpacked, 0, sizeof unpacked);
168 packed = 0;
169
170 if (0)
171 LLVMDumpModule(module);
172
173 for (i = 0; i < 3; i++) {
174 v4sf xvals[3] = {
175 {-10.0, -1, 0, 12.0},
176 {-1.5, -0.25, 1.25, 2.5},
177 {-0.99, -0.01, 0.01, 0.99}
178 };
179 v4sf x = xvals[i];
180 v4sf y, ref;
181 float *xp = (float *) &x;
182 float *refp = (float *) &ref;
183
184 printf("\n");
185 printv("x ", x);
186
187 refp[0] = round(xp[0]);
188 refp[1] = round(xp[1]);
189 refp[2] = round(xp[2]);
190 refp[3] = round(xp[3]);
191 y = round_func(x);
192 printv("C round(x) ", ref);
193 printv("LLVM round(x)", y);
194 success = success && compare(ref, y);
195
196 refp[0] = trunc(xp[0]);
197 refp[1] = trunc(xp[1]);
198 refp[2] = trunc(xp[2]);
199 refp[3] = trunc(xp[3]);
200 y = trunc_func(x);
201 printv("C trunc(x) ", ref);
202 printv("LLVM trunc(x)", y);
203 success = success && compare(ref, y);
204
205 refp[0] = floor(xp[0]);
206 refp[1] = floor(xp[1]);
207 refp[2] = floor(xp[2]);
208 refp[3] = floor(xp[3]);
209 y = floor_func(x);
210 printv("C floor(x) ", ref);
211 printv("LLVM floor(x)", y);
212 success = success && compare(ref, y);
213
214 refp[0] = ceil(xp[0]);
215 refp[1] = ceil(xp[1]);
216 refp[2] = ceil(xp[2]);
217 refp[3] = ceil(xp[3]);
218 y = ceil_func(x);
219 printv("C ceil(x) ", ref);
220 printv("LLVM ceil(x) ", y);
221 success = success && compare(ref, y);
222 }
223
224 LLVMFreeMachineCodeForFunction(engine, test_round);
225 LLVMFreeMachineCodeForFunction(engine, test_trunc);
226 LLVMFreeMachineCodeForFunction(engine, test_floor);
227 LLVMFreeMachineCodeForFunction(engine, test_ceil);
228
229 LLVMDisposeExecutionEngine(engine);
230 if(pass)
231 LLVMDisposePassManager(pass);
232
233 return success;
234 }
235
236 #else /* !PIPE_ARCH_SSE */
237
238 static boolean
239 test_round(unsigned verbose, FILE *fp)
240 {
241 return TRUE;
242 }
243
244 #endif /* !PIPE_ARCH_SSE */
245
246
247 boolean
248 test_all(unsigned verbose, FILE *fp)
249 {
250 return test_round(verbose, fp);
251 }
252
253
254 boolean
255 test_some(unsigned verbose, FILE *fp, unsigned long n)
256 {
257 return test_all(verbose, fp);
258 }
259
260 boolean
261 test_single(unsigned verbose, FILE *fp)
262 {
263 printf("no test_single()");
264 return TRUE;
265 }