1 /**************************************************************************
3 * Copyright 2010 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
18 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
26 **************************************************************************/
29 #include "lp_bld_type.h"
30 #include "lp_bld_arit.h"
31 #include "lp_bld_const.h"
32 #include "lp_bld_swizzle.h"
33 #include "lp_bld_quad.h"
36 static const unsigned char
38 LP_BLD_QUAD_TOP_LEFT
, LP_BLD_QUAD_TOP_LEFT
,
39 LP_BLD_QUAD_BOTTOM_LEFT
, LP_BLD_QUAD_BOTTOM_LEFT
42 static const unsigned char
44 LP_BLD_QUAD_TOP_RIGHT
, LP_BLD_QUAD_TOP_RIGHT
,
45 LP_BLD_QUAD_BOTTOM_RIGHT
, LP_BLD_QUAD_BOTTOM_RIGHT
48 static const unsigned char
50 LP_BLD_QUAD_TOP_LEFT
, LP_BLD_QUAD_TOP_RIGHT
,
51 LP_BLD_QUAD_TOP_LEFT
, LP_BLD_QUAD_TOP_RIGHT
54 static const unsigned char
56 LP_BLD_QUAD_BOTTOM_LEFT
, LP_BLD_QUAD_BOTTOM_RIGHT
,
57 LP_BLD_QUAD_BOTTOM_LEFT
, LP_BLD_QUAD_BOTTOM_RIGHT
62 lp_build_ddx(struct lp_build_context
*bld
,
65 LLVMValueRef a_left
= lp_build_swizzle_aos(bld
, a
, swizzle_left
);
66 LLVMValueRef a_right
= lp_build_swizzle_aos(bld
, a
, swizzle_right
);
67 return lp_build_sub(bld
, a_right
, a_left
);
72 lp_build_ddy(struct lp_build_context
*bld
,
75 LLVMValueRef a_top
= lp_build_swizzle_aos(bld
, a
, swizzle_top
);
76 LLVMValueRef a_bottom
= lp_build_swizzle_aos(bld
, a
, swizzle_bottom
);
77 return lp_build_sub(bld
, a_bottom
, a_top
);
82 lp_build_scalar_ddx(struct lp_build_context
*bld
,
85 LLVMBuilderRef builder
= bld
->gallivm
->builder
;
86 LLVMValueRef idx_left
= lp_build_const_int32(bld
->gallivm
, LP_BLD_QUAD_TOP_LEFT
);
87 LLVMValueRef idx_right
= lp_build_const_int32(bld
->gallivm
, LP_BLD_QUAD_TOP_RIGHT
);
88 LLVMValueRef a_left
= LLVMBuildExtractElement(builder
, a
, idx_left
, "left");
89 LLVMValueRef a_right
= LLVMBuildExtractElement(builder
, a
, idx_right
, "right");
90 if (bld
->type
.floating
)
91 return LLVMBuildFSub(builder
, a_right
, a_left
, "ddx");
93 return LLVMBuildSub(builder
, a_right
, a_left
, "ddx");
98 lp_build_scalar_ddy(struct lp_build_context
*bld
,
101 LLVMBuilderRef builder
= bld
->gallivm
->builder
;
102 LLVMValueRef idx_top
= lp_build_const_int32(bld
->gallivm
, LP_BLD_QUAD_TOP_LEFT
);
103 LLVMValueRef idx_bottom
= lp_build_const_int32(bld
->gallivm
, LP_BLD_QUAD_BOTTOM_LEFT
);
104 LLVMValueRef a_top
= LLVMBuildExtractElement(builder
, a
, idx_top
, "top");
105 LLVMValueRef a_bottom
= LLVMBuildExtractElement(builder
, a
, idx_bottom
, "bottom");
106 if (bld
->type
.floating
)
107 return LLVMBuildFSub(builder
, a_bottom
, a_top
, "ddy");
109 return LLVMBuildSub(builder
, a_bottom
, a_top
, "ddy");