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 **************************************************************************/
31 * Unit tests for blend LLVM IR generation
33 * @author Jose Fonseca <jfonseca@vmware.com>
35 * Blend computation code derived from code written by
36 * @author Brian Paul <brian@vmware.com>
40 #include "gallivm/lp_bld_type.h"
41 #include "gallivm/lp_bld_blend.h"
42 #include "gallivm/lp_bld_debug.h"
53 typedef void (*blend_test_ptr_t
)(const void *src
, const void *dst
, const void *con
, void *res
);
57 write_tsv_header(FILE *fp
)
61 "cycles_per_channel\t"
72 "alpha_dst_factor\n");
79 write_tsv_row(FILE *fp
,
80 const struct pipe_blend_state
*blend
,
81 enum vector_mode mode
,
86 fprintf(fp
, "%s\t", success
? "pass" : "fail");
89 fprintf(fp
, "%.1f\t", cycles
/ type
.length
);
94 fprintf(fp
, "%.1f\t", cycles
/ (4 * type
.length
));
98 fprintf(fp
, "%s%u%sx%u\t",
99 type
.floating
? "f" : (type
.fixed
? "h" : (type
.sign
? "s" : "u")),
101 type
.norm
? "n" : "",
106 blend
->rt
[0].rgb_func
!= blend
->rt
[0].alpha_func
? "true" : "false",
107 blend
->rt
[0].rgb_src_factor
!= blend
->rt
[0].alpha_src_factor
? "true" : "false",
108 blend
->rt
[0].rgb_dst_factor
!= blend
->rt
[0].alpha_dst_factor
? "true" : "false");
111 "%s\t%s\t%s\t%s\t%s\t%s\n",
112 util_dump_blend_func(blend
->rt
[0].rgb_func
, TRUE
),
113 util_dump_blend_factor(blend
->rt
[0].rgb_src_factor
, TRUE
),
114 util_dump_blend_factor(blend
->rt
[0].rgb_dst_factor
, TRUE
),
115 util_dump_blend_func(blend
->rt
[0].alpha_func
, TRUE
),
116 util_dump_blend_factor(blend
->rt
[0].alpha_src_factor
, TRUE
),
117 util_dump_blend_factor(blend
->rt
[0].alpha_dst_factor
, TRUE
));
124 dump_blend_type(FILE *fp
,
125 const struct pipe_blend_state
*blend
,
126 enum vector_mode mode
,
129 fprintf(fp
, "%s", mode
? "soa" : "aos");
131 fprintf(fp
, " type=%s%u%sx%u",
132 type
.floating
? "f" : (type
.fixed
? "h" : (type
.sign
? "s" : "u")),
134 type
.norm
? "n" : "",
138 " %s=%s %s=%s %s=%s %s=%s %s=%s %s=%s",
139 "rgb_func", util_dump_blend_func(blend
->rt
[0].rgb_func
, TRUE
),
140 "rgb_src_factor", util_dump_blend_factor(blend
->rt
[0].rgb_src_factor
, TRUE
),
141 "rgb_dst_factor", util_dump_blend_factor(blend
->rt
[0].rgb_dst_factor
, TRUE
),
142 "alpha_func", util_dump_blend_func(blend
->rt
[0].alpha_func
, TRUE
),
143 "alpha_src_factor", util_dump_blend_factor(blend
->rt
[0].alpha_src_factor
, TRUE
),
144 "alpha_dst_factor", util_dump_blend_factor(blend
->rt
[0].alpha_dst_factor
, TRUE
));
146 fprintf(fp
, " ...\n");
152 add_blend_test(LLVMModuleRef module
,
153 const struct pipe_blend_state
*blend
,
154 enum vector_mode mode
,
157 LLVMTypeRef ret_type
;
158 LLVMTypeRef vec_type
;
161 LLVMValueRef src_ptr
;
162 LLVMValueRef dst_ptr
;
163 LLVMValueRef const_ptr
;
164 LLVMValueRef res_ptr
;
165 LLVMBasicBlockRef block
;
166 LLVMBuilderRef builder
;
168 ret_type
= LLVMInt64Type();
169 vec_type
= lp_build_vec_type(type
);
171 args
[3] = args
[2] = args
[1] = args
[0] = LLVMPointerType(vec_type
, 0);
172 func
= LLVMAddFunction(module
, "test", LLVMFunctionType(LLVMVoidType(), args
, 4, 0));
173 LLVMSetFunctionCallConv(func
, LLVMCCallConv
);
174 src_ptr
= LLVMGetParam(func
, 0);
175 dst_ptr
= LLVMGetParam(func
, 1);
176 const_ptr
= LLVMGetParam(func
, 2);
177 res_ptr
= LLVMGetParam(func
, 3);
179 block
= LLVMAppendBasicBlock(func
, "entry");
180 builder
= LLVMCreateBuilder();
181 LLVMPositionBuilderAtEnd(builder
, block
);
189 src
= LLVMBuildLoad(builder
, src_ptr
, "src");
190 dst
= LLVMBuildLoad(builder
, dst_ptr
, "dst");
191 con
= LLVMBuildLoad(builder
, const_ptr
, "const");
193 res
= lp_build_blend_aos(builder
, blend
, type
, src
, dst
, con
, 3);
195 lp_build_name(res
, "res");
197 LLVMBuildStore(builder
, res
, res_ptr
);
207 for(i
= 0; i
< 4; ++i
) {
208 LLVMValueRef index
= LLVMConstInt(LLVMInt32Type(), i
, 0);
209 src
[i
] = LLVMBuildLoad(builder
, LLVMBuildGEP(builder
, src_ptr
, &index
, 1, ""), "");
210 dst
[i
] = LLVMBuildLoad(builder
, LLVMBuildGEP(builder
, dst_ptr
, &index
, 1, ""), "");
211 con
[i
] = LLVMBuildLoad(builder
, LLVMBuildGEP(builder
, const_ptr
, &index
, 1, ""), "");
212 lp_build_name(src
[i
], "src.%c", "rgba"[i
]);
213 lp_build_name(con
[i
], "con.%c", "rgba"[i
]);
214 lp_build_name(dst
[i
], "dst.%c", "rgba"[i
]);
217 lp_build_blend_soa(builder
, blend
, type
, src
, dst
, con
, res
);
219 for(i
= 0; i
< 4; ++i
) {
220 LLVMValueRef index
= LLVMConstInt(LLVMInt32Type(), i
, 0);
221 lp_build_name(res
[i
], "res.%c", "rgba"[i
]);
222 LLVMBuildStore(builder
, res
[i
], LLVMBuildGEP(builder
, res_ptr
, &index
, 1, ""));
226 LLVMBuildRetVoid(builder
);;
228 LLVMDisposeBuilder(builder
);
233 /** Add and limit result to ceiling of 1.0 */
234 #define ADD_SAT(R, A, B) \
236 R = (A) + (B); if (R > 1.0f) R = 1.0f; \
239 /** Subtract and limit result to floor of 0.0 */
240 #define SUB_SAT(R, A, B) \
242 R = (A) - (B); if (R < 0.0f) R = 0.0f; \
247 compute_blend_ref_term(unsigned rgb_factor
,
248 unsigned alpha_factor
,
249 const double *factor
,
257 switch (rgb_factor
) {
258 case PIPE_BLENDFACTOR_ONE
:
259 term
[0] = factor
[0]; /* R */
260 term
[1] = factor
[1]; /* G */
261 term
[2] = factor
[2]; /* B */
263 case PIPE_BLENDFACTOR_SRC_COLOR
:
264 term
[0] = factor
[0] * src
[0]; /* R */
265 term
[1] = factor
[1] * src
[1]; /* G */
266 term
[2] = factor
[2] * src
[2]; /* B */
268 case PIPE_BLENDFACTOR_SRC_ALPHA
:
269 term
[0] = factor
[0] * src
[3]; /* R */
270 term
[1] = factor
[1] * src
[3]; /* G */
271 term
[2] = factor
[2] * src
[3]; /* B */
273 case PIPE_BLENDFACTOR_DST_COLOR
:
274 term
[0] = factor
[0] * dst
[0]; /* R */
275 term
[1] = factor
[1] * dst
[1]; /* G */
276 term
[2] = factor
[2] * dst
[2]; /* B */
278 case PIPE_BLENDFACTOR_DST_ALPHA
:
279 term
[0] = factor
[0] * dst
[3]; /* R */
280 term
[1] = factor
[1] * dst
[3]; /* G */
281 term
[2] = factor
[2] * dst
[3]; /* B */
283 case PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE
:
284 temp
= MIN2(src
[3], 1.0f
- dst
[3]);
285 term
[0] = factor
[0] * temp
; /* R */
286 term
[1] = factor
[1] * temp
; /* G */
287 term
[2] = factor
[2] * temp
; /* B */
289 case PIPE_BLENDFACTOR_CONST_COLOR
:
290 term
[0] = factor
[0] * con
[0]; /* R */
291 term
[1] = factor
[1] * con
[1]; /* G */
292 term
[2] = factor
[2] * con
[2]; /* B */
294 case PIPE_BLENDFACTOR_CONST_ALPHA
:
295 term
[0] = factor
[0] * con
[3]; /* R */
296 term
[1] = factor
[1] * con
[3]; /* G */
297 term
[2] = factor
[2] * con
[3]; /* B */
299 case PIPE_BLENDFACTOR_SRC1_COLOR
:
300 assert(0); /* to do */
302 case PIPE_BLENDFACTOR_SRC1_ALPHA
:
303 assert(0); /* to do */
305 case PIPE_BLENDFACTOR_ZERO
:
306 term
[0] = 0.0f
; /* R */
307 term
[1] = 0.0f
; /* G */
308 term
[2] = 0.0f
; /* B */
310 case PIPE_BLENDFACTOR_INV_SRC_COLOR
:
311 term
[0] = factor
[0] * (1.0f
- src
[0]); /* R */
312 term
[1] = factor
[1] * (1.0f
- src
[1]); /* G */
313 term
[2] = factor
[2] * (1.0f
- src
[2]); /* B */
315 case PIPE_BLENDFACTOR_INV_SRC_ALPHA
:
316 term
[0] = factor
[0] * (1.0f
- src
[3]); /* R */
317 term
[1] = factor
[1] * (1.0f
- src
[3]); /* G */
318 term
[2] = factor
[2] * (1.0f
- src
[3]); /* B */
320 case PIPE_BLENDFACTOR_INV_DST_ALPHA
:
321 term
[0] = factor
[0] * (1.0f
- dst
[3]); /* R */
322 term
[1] = factor
[1] * (1.0f
- dst
[3]); /* G */
323 term
[2] = factor
[2] * (1.0f
- dst
[3]); /* B */
325 case PIPE_BLENDFACTOR_INV_DST_COLOR
:
326 term
[0] = factor
[0] * (1.0f
- dst
[0]); /* R */
327 term
[1] = factor
[1] * (1.0f
- dst
[1]); /* G */
328 term
[2] = factor
[2] * (1.0f
- dst
[2]); /* B */
330 case PIPE_BLENDFACTOR_INV_CONST_COLOR
:
331 term
[0] = factor
[0] * (1.0f
- con
[0]); /* R */
332 term
[1] = factor
[1] * (1.0f
- con
[1]); /* G */
333 term
[2] = factor
[2] * (1.0f
- con
[2]); /* B */
335 case PIPE_BLENDFACTOR_INV_CONST_ALPHA
:
336 term
[0] = factor
[0] * (1.0f
- con
[3]); /* R */
337 term
[1] = factor
[1] * (1.0f
- con
[3]); /* G */
338 term
[2] = factor
[2] * (1.0f
- con
[3]); /* B */
340 case PIPE_BLENDFACTOR_INV_SRC1_COLOR
:
341 assert(0); /* to do */
343 case PIPE_BLENDFACTOR_INV_SRC1_ALPHA
:
344 assert(0); /* to do */
351 * Compute src/first term A
353 switch (alpha_factor
) {
354 case PIPE_BLENDFACTOR_ONE
:
355 term
[3] = factor
[3]; /* A */
357 case PIPE_BLENDFACTOR_SRC_COLOR
:
358 case PIPE_BLENDFACTOR_SRC_ALPHA
:
359 term
[3] = factor
[3] * src
[3]; /* A */
361 case PIPE_BLENDFACTOR_DST_COLOR
:
362 case PIPE_BLENDFACTOR_DST_ALPHA
:
363 term
[3] = factor
[3] * dst
[3]; /* A */
365 case PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE
:
366 term
[3] = src
[3]; /* A */
368 case PIPE_BLENDFACTOR_CONST_COLOR
:
369 case PIPE_BLENDFACTOR_CONST_ALPHA
:
370 term
[3] = factor
[3] * con
[3]; /* A */
372 case PIPE_BLENDFACTOR_ZERO
:
373 term
[3] = 0.0f
; /* A */
375 case PIPE_BLENDFACTOR_INV_SRC_COLOR
:
376 case PIPE_BLENDFACTOR_INV_SRC_ALPHA
:
377 term
[3] = factor
[3] * (1.0f
- src
[3]); /* A */
379 case PIPE_BLENDFACTOR_INV_DST_COLOR
:
380 case PIPE_BLENDFACTOR_INV_DST_ALPHA
:
381 term
[3] = factor
[3] * (1.0f
- dst
[3]); /* A */
383 case PIPE_BLENDFACTOR_INV_CONST_COLOR
:
384 case PIPE_BLENDFACTOR_INV_CONST_ALPHA
:
385 term
[3] = factor
[3] * (1.0f
- con
[3]);
394 compute_blend_ref(const struct pipe_blend_state
*blend
,
403 compute_blend_ref_term(blend
->rt
[0].rgb_src_factor
, blend
->rt
[0].alpha_src_factor
,
404 src
, src
, dst
, con
, src_term
);
405 compute_blend_ref_term(blend
->rt
[0].rgb_dst_factor
, blend
->rt
[0].alpha_dst_factor
,
406 dst
, src
, dst
, con
, dst_term
);
411 switch (blend
->rt
[0].rgb_func
) {
413 ADD_SAT(res
[0], src_term
[0], dst_term
[0]); /* R */
414 ADD_SAT(res
[1], src_term
[1], dst_term
[1]); /* G */
415 ADD_SAT(res
[2], src_term
[2], dst_term
[2]); /* B */
417 case PIPE_BLEND_SUBTRACT
:
418 SUB_SAT(res
[0], src_term
[0], dst_term
[0]); /* R */
419 SUB_SAT(res
[1], src_term
[1], dst_term
[1]); /* G */
420 SUB_SAT(res
[2], src_term
[2], dst_term
[2]); /* B */
422 case PIPE_BLEND_REVERSE_SUBTRACT
:
423 SUB_SAT(res
[0], dst_term
[0], src_term
[0]); /* R */
424 SUB_SAT(res
[1], dst_term
[1], src_term
[1]); /* G */
425 SUB_SAT(res
[2], dst_term
[2], src_term
[2]); /* B */
428 res
[0] = MIN2(src_term
[0], dst_term
[0]); /* R */
429 res
[1] = MIN2(src_term
[1], dst_term
[1]); /* G */
430 res
[2] = MIN2(src_term
[2], dst_term
[2]); /* B */
433 res
[0] = MAX2(src_term
[0], dst_term
[0]); /* R */
434 res
[1] = MAX2(src_term
[1], dst_term
[1]); /* G */
435 res
[2] = MAX2(src_term
[2], dst_term
[2]); /* B */
444 switch (blend
->rt
[0].alpha_func
) {
446 ADD_SAT(res
[3], src_term
[3], dst_term
[3]); /* A */
448 case PIPE_BLEND_SUBTRACT
:
449 SUB_SAT(res
[3], src_term
[3], dst_term
[3]); /* A */
451 case PIPE_BLEND_REVERSE_SUBTRACT
:
452 SUB_SAT(res
[3], dst_term
[3], src_term
[3]); /* A */
455 res
[3] = MIN2(src_term
[3], dst_term
[3]); /* A */
458 res
[3] = MAX2(src_term
[3], dst_term
[3]); /* A */
468 test_one(unsigned verbose
,
470 const struct pipe_blend_state
*blend
,
471 enum vector_mode mode
,
474 LLVMModuleRef module
= NULL
;
475 LLVMValueRef func
= NULL
;
476 LLVMExecutionEngineRef engine
= NULL
;
477 LLVMModuleProviderRef provider
= NULL
;
478 LLVMPassManagerRef pass
= NULL
;
480 blend_test_ptr_t blend_test_ptr
;
482 const unsigned n
= LP_TEST_NUM_SAMPLES
;
483 int64_t cycles
[LP_TEST_NUM_SAMPLES
];
484 double cycles_avg
= 0.0;
488 dump_blend_type(stdout
, blend
, mode
, type
);
490 module
= LLVMModuleCreateWithName("test");
492 func
= add_blend_test(module
, blend
, mode
, type
);
494 if(LLVMVerifyModule(module
, LLVMPrintMessageAction
, &error
)) {
495 LLVMDumpModule(module
);
498 LLVMDisposeMessage(error
);
500 provider
= LLVMCreateModuleProviderForExistingModule(module
);
501 if (LLVMCreateJITCompiler(&engine
, provider
, 1, &error
)) {
503 dump_blend_type(stderr
, blend
, mode
, type
);
504 fprintf(stderr
, "%s\n", error
);
505 LLVMDisposeMessage(error
);
510 pass
= LLVMCreatePassManager();
511 LLVMAddTargetData(LLVMGetExecutionEngineTargetData(engine
), pass
);
512 /* These are the passes currently listed in llvm-c/Transforms/Scalar.h,
513 * but there are more on SVN. */
514 LLVMAddConstantPropagationPass(pass
);
515 LLVMAddInstructionCombiningPass(pass
);
516 LLVMAddPromoteMemoryToRegisterPass(pass
);
517 LLVMAddGVNPass(pass
);
518 LLVMAddCFGSimplificationPass(pass
);
519 LLVMRunPassManager(pass
, module
);
525 LLVMDumpModule(module
);
527 blend_test_ptr
= (blend_test_ptr_t
)LLVMGetPointerToGlobal(engine
, func
);
530 lp_disassemble(blend_test_ptr
);
533 for(i
= 0; i
< n
&& success
; ++i
) {
535 PIPE_ALIGN_VAR(16) uint8_t src
[LP_NATIVE_VECTOR_WIDTH
/8];
536 PIPE_ALIGN_VAR(16) uint8_t dst
[LP_NATIVE_VECTOR_WIDTH
/8];
537 PIPE_ALIGN_VAR(16) uint8_t con
[LP_NATIVE_VECTOR_WIDTH
/8];
538 PIPE_ALIGN_VAR(16) uint8_t res
[LP_NATIVE_VECTOR_WIDTH
/8];
539 PIPE_ALIGN_VAR(16) uint8_t ref
[LP_NATIVE_VECTOR_WIDTH
/8];
540 int64_t start_counter
= 0;
541 int64_t end_counter
= 0;
543 random_vec(type
, src
);
544 random_vec(type
, dst
);
545 random_vec(type
, con
);
548 double fsrc
[LP_MAX_VECTOR_LENGTH
];
549 double fdst
[LP_MAX_VECTOR_LENGTH
];
550 double fcon
[LP_MAX_VECTOR_LENGTH
];
551 double fref
[LP_MAX_VECTOR_LENGTH
];
553 read_vec(type
, src
, fsrc
);
554 read_vec(type
, dst
, fdst
);
555 read_vec(type
, con
, fcon
);
557 for(j
= 0; j
< type
.length
; j
+= 4)
558 compute_blend_ref(blend
, fsrc
+ j
, fdst
+ j
, fcon
+ j
, fref
+ j
);
560 write_vec(type
, ref
, fref
);
563 start_counter
= rdtsc();
564 blend_test_ptr(src
, dst
, con
, res
);
565 end_counter
= rdtsc();
567 cycles
[i
] = end_counter
- start_counter
;
569 if(!compare_vec(type
, res
, ref
)) {
573 dump_blend_type(stderr
, blend
, mode
, type
);
574 fprintf(stderr
, "MISMATCH\n");
576 fprintf(stderr
, " Src: ");
577 dump_vec(stderr
, type
, src
);
578 fprintf(stderr
, "\n");
580 fprintf(stderr
, " Dst: ");
581 dump_vec(stderr
, type
, dst
);
582 fprintf(stderr
, "\n");
584 fprintf(stderr
, " Con: ");
585 dump_vec(stderr
, type
, con
);
586 fprintf(stderr
, "\n");
588 fprintf(stderr
, " Res: ");
589 dump_vec(stderr
, type
, res
);
590 fprintf(stderr
, "\n");
592 fprintf(stderr
, " Ref: ");
593 dump_vec(stderr
, type
, ref
);
594 fprintf(stderr
, "\n");
599 const unsigned stride
= type
.length
*type
.width
/8;
600 PIPE_ALIGN_VAR(16) uint8_t src
[4*LP_NATIVE_VECTOR_WIDTH
/8];
601 PIPE_ALIGN_VAR(16) uint8_t dst
[4*LP_NATIVE_VECTOR_WIDTH
/8];
602 PIPE_ALIGN_VAR(16) uint8_t con
[4*LP_NATIVE_VECTOR_WIDTH
/8];
603 PIPE_ALIGN_VAR(16) uint8_t res
[4*LP_NATIVE_VECTOR_WIDTH
/8];
604 PIPE_ALIGN_VAR(16) uint8_t ref
[4*LP_NATIVE_VECTOR_WIDTH
/8];
605 int64_t start_counter
= 0;
606 int64_t end_counter
= 0;
609 for(j
= 0; j
< 4; ++j
) {
610 random_vec(type
, src
+ j
*stride
);
611 random_vec(type
, dst
+ j
*stride
);
612 random_vec(type
, con
+ j
*stride
);
622 for(k
= 0; k
< type
.length
; ++k
) {
623 for(j
= 0; j
< 4; ++j
) {
624 fsrc
[j
] = read_elem(type
, src
+ j
*stride
, k
);
625 fdst
[j
] = read_elem(type
, dst
+ j
*stride
, k
);
626 fcon
[j
] = read_elem(type
, con
+ j
*stride
, k
);
629 compute_blend_ref(blend
, fsrc
, fdst
, fcon
, fref
);
631 for(j
= 0; j
< 4; ++j
)
632 write_elem(type
, ref
+ j
*stride
, k
, fref
[j
]);
636 start_counter
= rdtsc();
637 blend_test_ptr(src
, dst
, con
, res
);
638 end_counter
= rdtsc();
640 cycles
[i
] = end_counter
- start_counter
;
643 for (j
= 0; j
< 4; ++j
)
644 if(!compare_vec(type
, res
+ j
*stride
, ref
+ j
*stride
))
651 dump_blend_type(stderr
, blend
, mode
, type
);
652 fprintf(stderr
, "MISMATCH\n");
653 for(j
= 0; j
< 4; ++j
) {
654 char channel
= "RGBA"[j
];
655 fprintf(stderr
, " Src%c: ", channel
);
656 dump_vec(stderr
, type
, src
+ j
*stride
);
657 fprintf(stderr
, "\n");
659 fprintf(stderr
, " Dst%c: ", channel
);
660 dump_vec(stderr
, type
, dst
+ j
*stride
);
661 fprintf(stderr
, "\n");
663 fprintf(stderr
, " Con%c: ", channel
);
664 dump_vec(stderr
, type
, con
+ j
*stride
);
665 fprintf(stderr
, "\n");
667 fprintf(stderr
, " Res%c: ", channel
);
668 dump_vec(stderr
, type
, res
+ j
*stride
);
669 fprintf(stderr
, "\n");
671 fprintf(stderr
, " Ref%c: ", channel
);
672 dump_vec(stderr
, type
, ref
+ j
*stride
);
673 fprintf(stderr
, "\n");
680 * Unfortunately the output of cycle counter is not very reliable as it comes
681 * -- sometimes we get outliers (due IRQs perhaps?) which are
682 * better removed to avoid random or biased data.
685 double sum
= 0.0, sum2
= 0.0;
689 for(i
= 0; i
< n
; ++i
) {
691 sum2
+= cycles
[i
]*cycles
[i
];
695 std
= sqrtf((sum2
- n
*avg
*avg
)/n
);
699 for(i
= 0; i
< n
; ++i
) {
700 if(fabs(cycles
[i
] - avg
) <= 4.0*std
) {
711 write_tsv_row(fp
, blend
, mode
, type
, cycles_avg
, success
);
715 LLVMDumpModule(module
);
716 LLVMWriteBitcodeToFile(module
, "blend.bc");
717 fprintf(stderr
, "blend.bc written\n");
718 fprintf(stderr
, "Invoke as \"llc -o - blend.bc\"\n");
722 LLVMFreeMachineCodeForFunction(engine
, func
);
724 LLVMDisposeExecutionEngine(engine
);
726 LLVMDisposePassManager(pass
);
734 PIPE_BLENDFACTOR_ZERO
,
735 PIPE_BLENDFACTOR_ONE
,
736 PIPE_BLENDFACTOR_SRC_COLOR
,
737 PIPE_BLENDFACTOR_SRC_ALPHA
,
738 PIPE_BLENDFACTOR_DST_COLOR
,
739 PIPE_BLENDFACTOR_DST_ALPHA
,
740 PIPE_BLENDFACTOR_CONST_COLOR
,
741 PIPE_BLENDFACTOR_CONST_ALPHA
,
743 PIPE_BLENDFACTOR_SRC1_COLOR
,
744 PIPE_BLENDFACTOR_SRC1_ALPHA
,
746 PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE
,
747 PIPE_BLENDFACTOR_INV_SRC_COLOR
,
748 PIPE_BLENDFACTOR_INV_SRC_ALPHA
,
749 PIPE_BLENDFACTOR_INV_DST_COLOR
,
750 PIPE_BLENDFACTOR_INV_DST_ALPHA
,
751 PIPE_BLENDFACTOR_INV_CONST_COLOR
,
752 PIPE_BLENDFACTOR_INV_CONST_ALPHA
,
754 PIPE_BLENDFACTOR_INV_SRC1_COLOR
,
755 PIPE_BLENDFACTOR_INV_SRC1_ALPHA
,
764 PIPE_BLEND_REVERSE_SUBTRACT
,
770 const struct lp_type blend_types
[] = {
771 /* float, fixed, sign, norm, width, len */
772 { TRUE
, FALSE
, FALSE
, TRUE
, 32, 4 }, /* f32 x 4 */
773 { FALSE
, FALSE
, FALSE
, TRUE
, 8, 16 }, /* u8n x 16 */
777 const unsigned num_funcs
= sizeof(blend_funcs
)/sizeof(blend_funcs
[0]);
778 const unsigned num_factors
= sizeof(blend_factors
)/sizeof(blend_factors
[0]);
779 const unsigned num_types
= sizeof(blend_types
)/sizeof(blend_types
[0]);
783 test_all(unsigned verbose
, FILE *fp
)
785 const unsigned *rgb_func
;
786 const unsigned *rgb_src_factor
;
787 const unsigned *rgb_dst_factor
;
788 const unsigned *alpha_func
;
789 const unsigned *alpha_src_factor
;
790 const unsigned *alpha_dst_factor
;
791 struct pipe_blend_state blend
;
792 enum vector_mode mode
;
793 const struct lp_type
*type
;
796 for(rgb_func
= blend_funcs
; rgb_func
< &blend_funcs
[num_funcs
]; ++rgb_func
) {
797 for(alpha_func
= blend_funcs
; alpha_func
< &blend_funcs
[num_funcs
]; ++alpha_func
) {
798 for(rgb_src_factor
= blend_factors
; rgb_src_factor
< &blend_factors
[num_factors
]; ++rgb_src_factor
) {
799 for(rgb_dst_factor
= blend_factors
; rgb_dst_factor
<= rgb_src_factor
; ++rgb_dst_factor
) {
800 for(alpha_src_factor
= blend_factors
; alpha_src_factor
< &blend_factors
[num_factors
]; ++alpha_src_factor
) {
801 for(alpha_dst_factor
= blend_factors
; alpha_dst_factor
<= alpha_src_factor
; ++alpha_dst_factor
) {
802 for(mode
= 0; mode
< 2; ++mode
) {
803 for(type
= blend_types
; type
< &blend_types
[num_types
]; ++type
) {
805 if(*rgb_dst_factor
== PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE
||
806 *alpha_dst_factor
== PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE
)
809 memset(&blend
, 0, sizeof blend
);
810 blend
.rt
[0].blend_enable
= 1;
811 blend
.rt
[0].rgb_func
= *rgb_func
;
812 blend
.rt
[0].rgb_src_factor
= *rgb_src_factor
;
813 blend
.rt
[0].rgb_dst_factor
= *rgb_dst_factor
;
814 blend
.rt
[0].alpha_func
= *alpha_func
;
815 blend
.rt
[0].alpha_src_factor
= *alpha_src_factor
;
816 blend
.rt
[0].alpha_dst_factor
= *alpha_dst_factor
;
817 blend
.rt
[0].colormask
= PIPE_MASK_RGBA
;
819 if(!test_one(verbose
, fp
, &blend
, mode
, *type
))
836 test_some(unsigned verbose
, FILE *fp
, unsigned long n
)
838 const unsigned *rgb_func
;
839 const unsigned *rgb_src_factor
;
840 const unsigned *rgb_dst_factor
;
841 const unsigned *alpha_func
;
842 const unsigned *alpha_src_factor
;
843 const unsigned *alpha_dst_factor
;
844 struct pipe_blend_state blend
;
845 enum vector_mode mode
;
846 const struct lp_type
*type
;
850 for(i
= 0; i
< n
; ++i
) {
851 rgb_func
= &blend_funcs
[rand() % num_funcs
];
852 alpha_func
= &blend_funcs
[rand() % num_funcs
];
853 rgb_src_factor
= &blend_factors
[rand() % num_factors
];
854 alpha_src_factor
= &blend_factors
[rand() % num_factors
];
857 rgb_dst_factor
= &blend_factors
[rand() % num_factors
];
858 } while(*rgb_dst_factor
== PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE
);
861 alpha_dst_factor
= &blend_factors
[rand() % num_factors
];
862 } while(*alpha_dst_factor
== PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE
);
866 type
= &blend_types
[rand() % num_types
];
868 memset(&blend
, 0, sizeof blend
);
869 blend
.rt
[0].blend_enable
= 1;
870 blend
.rt
[0].rgb_func
= *rgb_func
;
871 blend
.rt
[0].rgb_src_factor
= *rgb_src_factor
;
872 blend
.rt
[0].rgb_dst_factor
= *rgb_dst_factor
;
873 blend
.rt
[0].alpha_func
= *alpha_func
;
874 blend
.rt
[0].alpha_src_factor
= *alpha_src_factor
;
875 blend
.rt
[0].alpha_dst_factor
= *alpha_dst_factor
;
876 blend
.rt
[0].colormask
= PIPE_MASK_RGBA
;
878 if(!test_one(verbose
, fp
, &blend
, mode
, *type
))