r300/vertprog: Refactor addArtificialOutputs to use rc_program
[mesa.git] / src / mesa / drivers / dri / r300 / compiler / radeon_compiler.h
1 /*
2 * Copyright 2009 Nicolai Hähnle <nhaehnle@gmail.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #ifndef RADEON_COMPILER_H
24 #define RADEON_COMPILER_H
25
26 #include "main/mtypes.h"
27 #include "shader/prog_instruction.h"
28
29 #include "memory_pool.h"
30 #include "radeon_code.h"
31
32
33 struct rc_instruction {
34 struct rc_instruction * Prev;
35 struct rc_instruction * Next;
36 struct prog_instruction I;
37 };
38
39 struct rc_program {
40 /**
41 * Instructions.Next points to the first instruction,
42 * Instructions.Prev points to the last instruction.
43 */
44 struct rc_instruction Instructions;
45
46 GLbitfield InputsRead;
47 GLbitfield OutputsWritten;
48 GLbitfield ShadowSamplers; /**< Texture units used for shadow sampling. */
49
50 struct rc_constant_list Constants;
51 };
52
53 struct radeon_compiler {
54 struct memory_pool Pool;
55 struct rc_program Program;
56 GLboolean Debug;
57 GLboolean Error;
58 char * ErrorMsg;
59 };
60
61 void rc_init(struct radeon_compiler * c);
62 void rc_destroy(struct radeon_compiler * c);
63
64 void rc_debug(struct radeon_compiler * c, const char * fmt, ...);
65 void rc_error(struct radeon_compiler * c, const char * fmt, ...);
66
67 void rc_move_input(struct radeon_compiler * c, unsigned input, struct prog_src_register new_input);
68 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input);
69
70 struct r300_fragment_program_compiler {
71 struct radeon_compiler Base;
72 struct rX00_fragment_program_code *code;
73 struct gl_program * program;
74 struct r300_fragment_program_external_state state;
75 GLboolean is_r500;
76 };
77
78 void r3xx_compile_fragment_program(struct r300_fragment_program_compiler* c);
79
80
81 struct r300_vertex_program_compiler {
82 struct radeon_compiler Base;
83 struct r300_vertex_program_code *code;
84 struct r300_vertex_program_external_state state;
85 GLbitfield RequiredOutputs;
86 struct gl_program *program;
87 };
88
89 void r3xx_compile_vertex_program(struct r300_vertex_program_compiler* c);
90
91 #endif /* RADEON_COMPILER_H */