Merge branch 'mesa_7_7_branch'
[mesa.git] / src / gallium / drivers / i965 / brw_vs.h
1 /*
2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
4 develop this 3D driver.
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a 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, sublicense, 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
16 portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **********************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 */
31
32
33 #ifndef BRW_VS_H
34 #define BRW_VS_H
35
36
37 #include "brw_context.h"
38 #include "brw_eu.h"
39
40
41 struct brw_vs_prog_key {
42 GLuint program_string_id;
43 GLuint nr_userclip:4;
44 GLuint pad:26;
45 struct brw_fs_signature fs_signature;
46 };
47
48 #define brw_vs_prog_key_size(s) (offsetof(struct brw_vs_prog_key, fs_signature) + \
49 brw_fs_signature_size(&(s)->fs_signature))
50
51
52 #define MAX_IF_DEPTH 32
53 #define MAX_LOOP_DEPTH 32
54
55 struct brw_vs_compile {
56 struct brw_compile func;
57 struct brw_vs_prog_key key;
58 struct brw_vs_prog_data prog_data;
59 struct brw_chipset chipset;
60
61 struct brw_vertex_shader *vp;
62
63 GLuint nr_inputs;
64 GLuint nr_outputs;
65 GLuint nr_immediates;
66 GLfloat immediate[128][4];
67
68 GLuint overflow_grf_start;
69 GLuint overflow_count;
70
71 GLuint first_tmp;
72 GLuint last_tmp;
73
74 struct brw_reg r0;
75 struct brw_reg r1;
76 struct brw_reg regs[TGSI_FILE_COUNT][128];
77 struct brw_reg tmp;
78 struct brw_reg stack;
79
80 struct {
81 GLboolean used_in_src;
82 struct brw_reg reg;
83 } output_regs[128];
84
85 struct brw_reg userplane[6];
86
87 /** we may need up to 3 constants per instruction (if use_const_buffer) */
88 struct {
89 GLint index;
90 struct brw_reg reg;
91 } current_const[3];
92
93 struct brw_instruction *if_inst[MAX_IF_DEPTH];
94 struct brw_instruction *loop_inst[MAX_LOOP_DEPTH];
95 GLuint insn;
96 GLuint if_depth;
97 GLuint loop_depth;
98 GLuint end_offset;
99
100 struct brw_indirect stack_index;
101 };
102
103
104 void brw_vs_emit( struct brw_vs_compile *c );
105
106 #endif