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