summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c
blob: adf900a5cb3bfb6b23c5de27c45f12da28726685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*
 * Copyright 2009 Nicolai Hähnle <nhaehnle@gmail.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * on the rights to use, copy, modify, merge, publish, distribute, sub
 * license, and/or sell copies of the Software, and to permit persons to whom
 * the Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 * USE OR OTHER DEALINGS IN THE SOFTWARE. */

#include "radeon_compiler.h"

#include <stdarg.h>

#include "radeon_program.h"


void rc_init(struct radeon_compiler * c)
{
	memset(c, 0, sizeof(*c));

	memory_pool_init(&c->Pool);
	c->Program.Instructions.Prev = &c->Program.Instructions;
	c->Program.Instructions.Next = &c->Program.Instructions;
	c->Program.Instructions.I.Opcode = OPCODE_END;
}

void rc_destroy(struct radeon_compiler * c)
{
	rc_constants_destroy(&c->Program.Constants);
	memory_pool_destroy(&c->Pool);
	free(c->ErrorMsg);
}

void rc_debug(struct radeon_compiler * c, const char * fmt, ...)
{
	va_list ap;

	if (!c->Debug)
		return;

	va_start(ap, fmt);
	vfprintf(stderr, fmt, ap);
	va_end(ap);
}

void rc_error(struct radeon_compiler * c, const char * fmt, ...)
{
	va_list ap;

	c->Error = GL_TRUE;

	if (!c->ErrorMsg) {
		/* Only remember the first error */
		char buf[1024];
		int written;

		va_start(ap, fmt);
		written = vsnprintf(buf, sizeof(buf), fmt, ap);
		va_end(ap);

		if (written < sizeof(buf)) {
			c->ErrorMsg = strdup(buf);
		} else {
			c->ErrorMsg = malloc(written + 1);

			va_start(ap, fmt);
			vsnprintf(c->ErrorMsg, written + 1, fmt, ap);
			va_end(ap);
		}
	}

	if (c->Debug) {
		fprintf(stderr, "r300compiler error: ");

		va_start(ap, fmt);
		vfprintf(stderr, fmt, ap);
		va_end(ap);
	}
}

/**
 * Rewrite the program such that everything that source the given input
 * register will source new_input instead.
 */
void rc_move_input(struct radeon_compiler * c, unsigned input, struct prog_src_register new_input)
{
	struct rc_instruction * inst;

	c->Program.InputsRead &= ~(1 << input);

	for(inst = c->Program.Instructions.Next; inst != &c->Program.Instructions; inst = inst->Next) {
		const unsigned numsrcs = _mesa_num_inst_src_regs(inst->I.Opcode);
		unsigned i;

		for(i = 0; i < numsrcs; ++i) {
			if (inst->I.SrcReg[i].File == PROGRAM_INPUT && inst->I.SrcReg[i].Index == input) {
				inst->I.SrcReg[i].File = new_input.File;
				inst->I.SrcReg[i].Index = new_input.Index;
				inst->I.SrcReg[i].Swizzle = combine_swizzles(new_input.Swizzle, inst->I.SrcReg[i].Swizzle);
				if (!inst->I.SrcReg[i].Abs) {
					inst->I.SrcReg[i].Negate ^= new_input.Negate;
					inst->I.SrcReg[i].Abs = new_input.Abs;
				}

				c->Program.InputsRead |= 1 << new_input.Index;
			}
		}
	}
}


/**
 * Introduce standard code fragment to deal with fragment.position.
 */
void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input)
{
	unsigned tempregi = rc_find_free_temporary(c);

	c->Program.InputsRead &= ~(1 << wpos);
	c->Program.InputsRead |= 1 << new_input;

	/* perspective divide */
	struct rc_instruction * inst_rcp = rc_insert_new_instruction(c, &c->Program.Instructions);
	inst_rcp->I.Opcode = OPCODE_RCP;

	inst_rcp->I.DstReg.File = PROGRAM_TEMPORARY;
	inst_rcp->I.DstReg.Index = tempregi;
	inst_rcp->I.DstReg.WriteMask = WRITEMASK_W;

	inst_rcp->I.SrcReg[0].File = PROGRAM_INPUT;
	inst_rcp->I.SrcReg[0].Index = new_input;
	inst_rcp->I.SrcReg[0].Swizzle = SWIZZLE_WWWW;

	struct rc_instruction * inst_mul = rc_insert_new_instruction(c, inst_rcp);
	inst_mul->I.Opcode = OPCODE_MUL;

	inst_mul->I.DstReg.File = PROGRAM_TEMPORARY;
	inst_mul->I.DstReg.Index = tempregi;
	inst_mul->I.DstReg.WriteMask = WRITEMASK_XYZ;

	inst_mul->I.SrcReg[0].File = PROGRAM_INPUT;
	inst_mul->I.SrcReg[0].Index = new_input;

	inst_mul->I.SrcReg[1].File = PROGRAM_TEMPORARY;
	inst_mul->I.SrcReg[1].Index = tempregi;
	inst_mul->I.SrcReg[1].Swizzle = SWIZZLE_WWWW;

	/* viewport transformation */
	struct rc_instruction * inst_mad = rc_insert_new_instruction(c, inst_mul);
	inst_mad->I.Opcode = OPCODE_MAD;

	inst_mad->I.DstReg.File = PROGRAM_TEMPORARY;
	inst_mad->I.DstReg.Index = tempregi;
	inst_mad->I.DstReg.WriteMask = WRITEMASK_XYZ;

	inst_mad->I.SrcReg[0].File = PROGRAM_TEMPORARY;
	inst_mad->I.SrcReg[0].Index = tempregi;
	inst_mad->I.SrcReg[0].Swizzle = MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_ZERO);

	inst_mad->I.SrcReg[1].File = PROGRAM_STATE_VAR;
	inst_mad->I.SrcReg[1].Index = rc_constants_add_state(&c->Program.Constants, RC_STATE_R300_WINDOW_DIMENSION, 0);
	inst_mad->I.SrcReg[1].Swizzle = MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_ZERO);

	inst_mad->I.SrcReg[2].File = PROGRAM_STATE_VAR;
	inst_mad->I.SrcReg[2].Index = inst_mad->I.SrcReg[1].Index;
	inst_mad->I.SrcReg[2].Swizzle = MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_ZERO);

	struct rc_instruction * inst;
	for (inst = inst_mad->Next; inst != &c->Program.Instructions; inst = inst->Next) {
		const unsigned numsrcs = _mesa_num_inst_src_regs(inst->I.Opcode);
		unsigned i;

		for(i = 0; i < numsrcs; i++) {
			if (inst->I.SrcReg[i].File == PROGRAM_INPUT &&
			    inst->I.SrcReg[i].Index == wpos) {
				inst->I.SrcReg[i].File = PROGRAM_TEMPORARY;
				inst->I.SrcReg[i].Index = tempregi;
			}
		}
	}
}