summaryrefslogtreecommitdiff
path: root/src/drm/cairo-drm-intel-brw-eu.c
blob: 2b47d8c37e3b57385f8198e4baa222bf5bad1759 (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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
   Copyright (C) Intel Corp.  2006.  All Rights Reserved.
   Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
   develop this 3D driver.

   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 the rights to use, copy, modify, merge, publish,
   distribute, sublicense, 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 NONINFRINGEMENT.
   IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS 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.

 **********************************************************************/
/*
 * Authors:
 *   Keith Whitwell <keith@tungstengraphics.com>
 */

#include "cairoint.h"
#include "cairo-drm-intel-brw-eu.h"

#include <assert.h>
#include <stdlib.h>
#include <string.h>


/* How does predicate control work when execution_size != 8?  Do I
 * need to test/set for 0xffff when execution_size is 16?
 */
void brw_set_predicate_control_flag_value( struct brw_compile *p, uint32_t value )
{
    p->current->header.predicate_control = BRW_PREDICATE_NONE;

    if (value != 0xff) {
	if (value != p->flag_value) {
	    brw_push_insn_state(p);
	    brw_MOV(p, brw_flag_reg(), brw_imm_uw(value));
	    p->flag_value = value;
	    brw_pop_insn_state(p);
	}

	p->current->header.predicate_control = BRW_PREDICATE_NORMAL;
    }
}

void brw_set_predicate_control( struct brw_compile *p, uint32_t pc )
{
    p->current->header.predicate_control = pc;
}

void brw_set_conditionalmod( struct brw_compile *p, uint32_t conditional )
{
    p->current->header.destreg__conditonalmod = conditional;
}

void brw_set_access_mode( struct brw_compile *p, uint32_t access_mode )
{
    p->current->header.access_mode = access_mode;
}

void brw_set_compression_control( struct brw_compile *p, int compression_control )
{
    p->current->header.compression_control = compression_control;
}

void brw_set_mask_control( struct brw_compile *p, uint32_t value )
{
    p->current->header.mask_control = value;
}

void brw_set_saturate( struct brw_compile *p, uint32_t value )
{
    p->current->header.saturate = value;
}

void brw_push_insn_state( struct brw_compile *p )
{
    assert(p->current != &p->stack[BRW_EU_MAX_INSN_STACK-1]);
    memcpy(p->current+1, p->current, sizeof(struct brw_instruction));
    p->current++;
}

void brw_pop_insn_state( struct brw_compile *p )
{
    assert(p->current != p->stack);
    p->current--;
}

/************************************************************************/
void
brw_compile_init (struct brw_compile *p,
		  cairo_bool_t is_g4x)
{
    p->nr_insn = 0;
    p->current = p->stack;
    memset (p->current, 0, sizeof (p->current[0]));

    p->is_g4x = is_g4x;

    /* Some defaults?  */
    brw_set_mask_control (p, BRW_MASK_ENABLE); /* what does this do? */
    brw_set_saturate (p, 0);
    brw_set_compression_control (p, BRW_COMPRESSION_NONE);
    brw_set_predicate_control_flag_value (p, 0xff);
}

const uint32_t *
brw_get_program (struct brw_compile *p,
		 uint32_t *sz)
{
    *sz = p->nr_insn * sizeof (struct brw_instruction);
    return (const uint32_t *)p->store;
}



/*
 * Subroutine calls require special attention.
 * Mesa instructions may be expanded into multiple hardware instructions
 * so the prog_instruction::BranchTarget field can't be used as an index
 * into the hardware instructions.
 *
 * The BranchTarget field isn't needed, however.  Mesa's GLSL compiler
 * emits CAL and BGNSUB instructions with labels that can be used to map
 * subroutine calls to actual subroutine code blocks.
 *
 * The structures and function here implement patching of CAL instructions
 * so they jump to the right subroutine code...
 */


/*
 * For each OPCODE_BGNSUB we create one of these.
 */
struct brw_glsl_label
{
    const char *name; /*< the label string */
    uint32_t position;  /*< the position of the brw instruction for this label */
    struct brw_glsl_label *next;  /*< next in linked list */
};


/*
 * For each OPCODE_CAL we create one of these.
 */
struct brw_glsl_call
{
    uint32_t call_inst_pos;  /*< location of the CAL instruction */
    const char *sub_name;  /*< name of subroutine to call */
    struct brw_glsl_call *next;  /*< next in linked list */
};


/*
 * Called for each OPCODE_BGNSUB.
 */
    void
brw_save_label(struct brw_compile *c, const char *name, uint32_t position)
{
    struct brw_glsl_label *label = calloc(1, sizeof *label);
    label->name = name;
    label->position = position;
    label->next = c->first_label;
    c->first_label = label;
}


/*
 * Called for each OPCODE_CAL.
 */
    void
brw_save_call(struct brw_compile *c, const char *name, uint32_t call_pos)
{
    struct brw_glsl_call *call = calloc(1, sizeof *call);
    call->call_inst_pos = call_pos;
    call->sub_name = name;
    call->next = c->first_call;
    c->first_call = call;
}


/*
 * Lookup a label, return label's position/offset.
 */
    static uint32_t
brw_lookup_label(struct brw_compile *c, const char *name)
{
    const struct brw_glsl_label *label;
    for (label = c->first_label; label; label = label->next) {
	if (strcmp(name, label->name) == 0) {
	    return label->position;
	}
    }
    abort();  /* should never happen */
    return ~0;
}


/*
 * When we're done generating code, this function is called to resolve
 * subroutine calls.
 */
    void
brw_resolve_cals(struct brw_compile *c)
{
    const struct brw_glsl_call *call;

    for (call = c->first_call; call; call = call->next) {
	const uint32_t sub_loc = brw_lookup_label(c, call->sub_name);
	struct brw_instruction *brw_call_inst = &c->store[call->call_inst_pos];
	struct brw_instruction *brw_sub_inst = &c->store[sub_loc];
	int32_t offset = brw_sub_inst - brw_call_inst;

	/* patch brw_inst1 to point to brw_inst2 */
	brw_set_src1(brw_call_inst, brw_imm_d(offset * 16));
    }

    /* free linked list of calls */
    {
	struct brw_glsl_call *call, *next;
	for (call = c->first_call; call; call = next) {
	    next = call->next;
	    free(call);
	}
	c->first_call = NULL;
    }

    /* free linked list of labels */
    {
	struct brw_glsl_label *label, *next;
	for (label = c->first_label; label; label = next) {
	    next = label->next;
	    free(label);
	}
	c->first_label = NULL;
    }
}