Merge remote branch 'origin/master' into nv50-compiler
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_sse2.h
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 #ifndef TGSI_SSE2_H
29 #define TGSI_SSE2_H
30
31 #if defined __cplusplus
32 extern "C" {
33 #endif
34
35 #include "pipe/p_compiler.h"
36
37 struct tgsi_exec_machine;
38 struct tgsi_interp_coef;
39 struct tgsi_token;
40 struct x86_function;
41
42 unsigned
43 tgsi_emit_sse2(
44 const struct tgsi_token *tokens,
45 struct x86_function *function,
46 float (*immediates)[4],
47 boolean do_swizzles );
48
49
50 /* This is the function prototype generated when do_swizzles is false
51 * -- effectively for fragment shaders.
52 */
53 typedef void (PIPE_CDECL *tgsi_sse2_fs_function) (
54 struct tgsi_exec_machine *machine, /* 1 */
55 const float (*constant)[4], /* 2 */
56 const float (*immediate)[4], /* 3 */
57 const struct tgsi_interp_coef *coef /* 4 */
58 );
59
60
61 /* This is the function prototype generated when do_swizzles is true
62 * -- effectively for vertex shaders.
63 */
64 typedef void (PIPE_CDECL *tgsi_sse2_vs_func) (
65 struct tgsi_exec_machine *machine, /* 1 */
66 const float (*constant)[4], /* 2 */
67 const float (*immediate)[4], /* 3 */
68 const float (*aos_input)[4], /* 4 */
69 uint num_inputs, /* 5 */
70 uint input_stride, /* 6 */
71 float (*aos_output)[4], /* 7 */
72 uint num_outputs, /* 8 */
73 uint output_stride ); /* 9 */
74
75
76 #if defined __cplusplus
77 }
78 #endif
79
80 #endif /* TGSI_SSE2_H */