r300/compiler: Implement hardware assisted loops for vertex shaders.
[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/compiler.h"
27
28 #include "memory_pool.h"
29 #include "radeon_code.h"
30 #include "radeon_program.h"
31
32 struct rc_swizzle_caps;
33
34 struct radeon_compiler {
35 struct memory_pool Pool;
36 struct rc_program Program;
37 unsigned Debug:1;
38 unsigned Error:1;
39 char * ErrorMsg;
40
41 /* Hardware specification. */
42 unsigned is_r500;
43 unsigned max_temp_regs;
44
45 /**
46 * Variables used internally, not be touched by callers
47 * of the compiler
48 */
49 /*@{*/
50 struct rc_swizzle_caps * SwizzleCaps;
51 /*@}*/
52 };
53
54 void rc_init(struct radeon_compiler * c);
55 void rc_destroy(struct radeon_compiler * c);
56
57 void rc_debug(struct radeon_compiler * c, const char * fmt, ...);
58 void rc_error(struct radeon_compiler * c, const char * fmt, ...);
59
60 int rc_if_fail_helper(struct radeon_compiler * c, const char * file, int line, const char * assertion);
61
62 /**
63 * This macro acts like an if-statement that can be used to implement
64 * non-aborting assertions in the compiler.
65 *
66 * It checks whether \p cond is true. If not, an internal compiler error is
67 * flagged and the if-clause is run.
68 *
69 * A typical use-case would be:
70 *
71 * if (rc_assert(c, condition-that-must-be-true))
72 * return;
73 */
74 #define rc_assert(c, cond) \
75 (!(cond) && rc_if_fail_helper(c, __FILE__, __LINE__, #cond))
76
77 void rc_calculate_inputs_outputs(struct radeon_compiler * c);
78
79 void rc_move_input(struct radeon_compiler * c, unsigned input, struct rc_src_register new_input);
80 void rc_move_output(struct radeon_compiler * c, unsigned output, unsigned new_output, unsigned writemask);
81 void rc_copy_output(struct radeon_compiler * c, unsigned output, unsigned dup_output);
82 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input,
83 int full_vtransform);
84
85 struct r300_fragment_program_compiler {
86 struct radeon_compiler Base;
87 struct rX00_fragment_program_code *code;
88 /* Optional transformations and features. */
89 struct r300_fragment_program_external_state state;
90 unsigned enable_shadow_ambient;
91 /* Register corresponding to the depthbuffer. */
92 unsigned OutputDepth;
93 /* Registers corresponding to the four colorbuffers. */
94 unsigned OutputColor[4];
95
96 void * UserData;
97 void (*AllocateHwInputs)(
98 struct r300_fragment_program_compiler * c,
99 void (*allocate)(void * data, unsigned input, unsigned hwreg),
100 void * mydata);
101 };
102
103 void r3xx_compile_fragment_program(struct r300_fragment_program_compiler* c);
104
105
106 struct r300_vertex_program_compiler {
107 struct radeon_compiler Base;
108 struct r300_vertex_program_code *code;
109 uint32_t RequiredOutputs;
110
111 void * UserData;
112 void (*SetHwInputOutput)(struct r300_vertex_program_compiler * c);
113 };
114
115 void r3xx_compile_vertex_program(struct r300_vertex_program_compiler* c);
116 void r300_vertex_program_dump(struct r300_vertex_program_compiler * c);
117
118 #endif /* RADEON_COMPILER_H */