i965: Fix render-to-texture in non-FinishRenderTexture cases.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_context.h
1 /*
2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics to
4 develop this 3D driver.
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a copy of this software and associated documentation files (the
8 "Software"), to deal in the Software without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sublicense, and/or sell copies of the Software, and to
11 permit persons to whom the Software is furnished to do so, subject to
12 the following conditions:
13
14 The above copyright notice and this permission notice (including the
15 next paragraph) shall be included in all copies or substantial
16 portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **********************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keithw@vmware.com>
30 */
31
32
33 #ifndef BRWCONTEXT_INC
34 #define BRWCONTEXT_INC
35
36 #include <stdbool.h>
37 #include <string.h>
38 #include "main/imports.h"
39 #include "main/macros.h"
40 #include "main/mm.h"
41 #include "main/mtypes.h"
42 #include "brw_structs.h"
43
44 #ifdef __cplusplus
45 extern "C" {
46 /* Evil hack for using libdrm in a c++ compiler. */
47 #define virtual virt
48 #endif
49
50 #include <drm.h>
51 #include <intel_bufmgr.h>
52 #include <i915_drm.h>
53 #ifdef __cplusplus
54 #undef virtual
55 }
56 #endif
57
58 #ifdef __cplusplus
59 extern "C" {
60 #endif
61 #include "intel_debug.h"
62 #include "intel_screen.h"
63 #include "intel_tex_obj.h"
64 #include "intel_resolve_map.h"
65
66 /* Glossary:
67 *
68 * URB - uniform resource buffer. A mid-sized buffer which is
69 * partitioned between the fixed function units and used for passing
70 * values (vertices, primitives, constants) between them.
71 *
72 * CURBE - constant URB entry. An urb region (entry) used to hold
73 * constant values which the fixed function units can be instructed to
74 * preload into the GRF when spawning a thread.
75 *
76 * VUE - vertex URB entry. An urb entry holding a vertex and usually
77 * a vertex header. The header contains control information and
78 * things like primitive type, Begin/end flags and clip codes.
79 *
80 * PUE - primitive URB entry. An urb entry produced by the setup (SF)
81 * unit holding rasterization and interpolation parameters.
82 *
83 * GRF - general register file. One of several register files
84 * addressable by programmed threads. The inputs (r0, payload, curbe,
85 * urb) of the thread are preloaded to this area before the thread is
86 * spawned. The registers are individually 8 dwords wide and suitable
87 * for general usage. Registers holding thread input values are not
88 * special and may be overwritten.
89 *
90 * MRF - message register file. Threads communicate (and terminate)
91 * by sending messages. Message parameters are placed in contiguous
92 * MRF registers. All program output is via these messages. URB
93 * entries are populated by sending a message to the shared URB
94 * function containing the new data, together with a control word,
95 * often an unmodified copy of R0.
96 *
97 * R0 - GRF register 0. Typically holds control information used when
98 * sending messages to other threads.
99 *
100 * EU or GEN4 EU: The name of the programmable subsystem of the
101 * i965 hardware. Threads are executed by the EU, the registers
102 * described above are part of the EU architecture.
103 *
104 * Fixed function units:
105 *
106 * CS - Command streamer. Notional first unit, little software
107 * interaction. Holds the URB entries used for constant data, ie the
108 * CURBEs.
109 *
110 * VF/VS - Vertex Fetch / Vertex Shader. The fixed function part of
111 * this unit is responsible for pulling vertices out of vertex buffers
112 * in vram and injecting them into the processing pipe as VUEs. If
113 * enabled, it first passes them to a VS thread which is a good place
114 * for the driver to implement any active vertex shader.
115 *
116 * GS - Geometry Shader. This corresponds to a new DX10 concept. If
117 * enabled, incoming strips etc are passed to GS threads in individual
118 * line/triangle/point units. The GS thread may perform arbitary
119 * computation and emit whatever primtives with whatever vertices it
120 * chooses. This makes GS an excellent place to implement GL's
121 * unfilled polygon modes, though of course it is capable of much
122 * more. Additionally, GS is used to translate away primitives not
123 * handled by latter units, including Quads and Lineloops.
124 *
125 * CS - Clipper. Mesa's clipping algorithms are imported to run on
126 * this unit. The fixed function part performs cliptesting against
127 * the 6 fixed clipplanes and makes descisions on whether or not the
128 * incoming primitive needs to be passed to a thread for clipping.
129 * User clip planes are handled via cooperation with the VS thread.
130 *
131 * SF - Strips Fans or Setup: Triangles are prepared for
132 * rasterization. Interpolation coefficients are calculated.
133 * Flatshading and two-side lighting usually performed here.
134 *
135 * WM - Windower. Interpolation of vertex attributes performed here.
136 * Fragment shader implemented here. SIMD aspects of EU taken full
137 * advantage of, as pixels are processed in blocks of 16.
138 *
139 * CC - Color Calculator. No EU threads associated with this unit.
140 * Handles blending and (presumably) depth and stencil testing.
141 */
142
143 #define BRW_MAX_CURBE (32*16)
144
145 struct brw_context;
146 struct brw_instruction;
147 struct brw_vs_prog_key;
148 struct brw_vec4_prog_key;
149 struct brw_wm_prog_key;
150 struct brw_wm_prog_data;
151
152 enum brw_state_id {
153 BRW_STATE_URB_FENCE,
154 BRW_STATE_FRAGMENT_PROGRAM,
155 BRW_STATE_GEOMETRY_PROGRAM,
156 BRW_STATE_VERTEX_PROGRAM,
157 BRW_STATE_CURBE_OFFSETS,
158 BRW_STATE_REDUCED_PRIMITIVE,
159 BRW_STATE_PRIMITIVE,
160 BRW_STATE_CONTEXT,
161 BRW_STATE_PSP,
162 BRW_STATE_SURFACES,
163 BRW_STATE_VS_BINDING_TABLE,
164 BRW_STATE_GS_BINDING_TABLE,
165 BRW_STATE_PS_BINDING_TABLE,
166 BRW_STATE_INDICES,
167 BRW_STATE_VERTICES,
168 BRW_STATE_BATCH,
169 BRW_STATE_INDEX_BUFFER,
170 BRW_STATE_VS_CONSTBUF,
171 BRW_STATE_GS_CONSTBUF,
172 BRW_STATE_PROGRAM_CACHE,
173 BRW_STATE_STATE_BASE_ADDRESS,
174 BRW_STATE_VUE_MAP_VS,
175 BRW_STATE_VUE_MAP_GEOM_OUT,
176 BRW_STATE_TRANSFORM_FEEDBACK,
177 BRW_STATE_RASTERIZER_DISCARD,
178 BRW_STATE_STATS_WM,
179 BRW_STATE_UNIFORM_BUFFER,
180 BRW_STATE_ATOMIC_BUFFER,
181 BRW_STATE_META_IN_PROGRESS,
182 BRW_STATE_INTERPOLATION_MAP,
183 BRW_STATE_PUSH_CONSTANT_ALLOCATION,
184 BRW_NUM_STATE_BITS
185 };
186
187 #define BRW_NEW_URB_FENCE (1 << BRW_STATE_URB_FENCE)
188 #define BRW_NEW_FRAGMENT_PROGRAM (1 << BRW_STATE_FRAGMENT_PROGRAM)
189 #define BRW_NEW_GEOMETRY_PROGRAM (1 << BRW_STATE_GEOMETRY_PROGRAM)
190 #define BRW_NEW_VERTEX_PROGRAM (1 << BRW_STATE_VERTEX_PROGRAM)
191 #define BRW_NEW_CURBE_OFFSETS (1 << BRW_STATE_CURBE_OFFSETS)
192 #define BRW_NEW_REDUCED_PRIMITIVE (1 << BRW_STATE_REDUCED_PRIMITIVE)
193 #define BRW_NEW_PRIMITIVE (1 << BRW_STATE_PRIMITIVE)
194 #define BRW_NEW_CONTEXT (1 << BRW_STATE_CONTEXT)
195 #define BRW_NEW_PSP (1 << BRW_STATE_PSP)
196 #define BRW_NEW_SURFACES (1 << BRW_STATE_SURFACES)
197 #define BRW_NEW_VS_BINDING_TABLE (1 << BRW_STATE_VS_BINDING_TABLE)
198 #define BRW_NEW_GS_BINDING_TABLE (1 << BRW_STATE_GS_BINDING_TABLE)
199 #define BRW_NEW_PS_BINDING_TABLE (1 << BRW_STATE_PS_BINDING_TABLE)
200 #define BRW_NEW_INDICES (1 << BRW_STATE_INDICES)
201 #define BRW_NEW_VERTICES (1 << BRW_STATE_VERTICES)
202 /**
203 * Used for any batch entry with a relocated pointer that will be used
204 * by any 3D rendering.
205 */
206 #define BRW_NEW_BATCH (1 << BRW_STATE_BATCH)
207 /** \see brw.state.depth_region */
208 #define BRW_NEW_INDEX_BUFFER (1 << BRW_STATE_INDEX_BUFFER)
209 #define BRW_NEW_VS_CONSTBUF (1 << BRW_STATE_VS_CONSTBUF)
210 #define BRW_NEW_GS_CONSTBUF (1 << BRW_STATE_GS_CONSTBUF)
211 #define BRW_NEW_PROGRAM_CACHE (1 << BRW_STATE_PROGRAM_CACHE)
212 #define BRW_NEW_STATE_BASE_ADDRESS (1 << BRW_STATE_STATE_BASE_ADDRESS)
213 #define BRW_NEW_VUE_MAP_VS (1 << BRW_STATE_VUE_MAP_VS)
214 #define BRW_NEW_VUE_MAP_GEOM_OUT (1 << BRW_STATE_VUE_MAP_GEOM_OUT)
215 #define BRW_NEW_TRANSFORM_FEEDBACK (1 << BRW_STATE_TRANSFORM_FEEDBACK)
216 #define BRW_NEW_RASTERIZER_DISCARD (1 << BRW_STATE_RASTERIZER_DISCARD)
217 #define BRW_NEW_STATS_WM (1 << BRW_STATE_STATS_WM)
218 #define BRW_NEW_UNIFORM_BUFFER (1 << BRW_STATE_UNIFORM_BUFFER)
219 #define BRW_NEW_ATOMIC_BUFFER (1 << BRW_STATE_ATOMIC_BUFFER)
220 #define BRW_NEW_META_IN_PROGRESS (1 << BRW_STATE_META_IN_PROGRESS)
221 #define BRW_NEW_INTERPOLATION_MAP (1 << BRW_STATE_INTERPOLATION_MAP)
222 #define BRW_NEW_PUSH_CONSTANT_ALLOCATION (1 << BRW_STATE_PUSH_CONSTANT_ALLOCATION)
223
224 struct brw_state_flags {
225 /** State update flags signalled by mesa internals */
226 GLuint mesa;
227 /**
228 * State update flags signalled as the result of brw_tracked_state updates
229 */
230 GLuint brw;
231 /** State update flags signalled by brw_state_cache.c searches */
232 GLuint cache;
233 };
234
235 #define AUB_TRACE_TYPE_MASK 0x0000ff00
236 #define AUB_TRACE_TYPE_NOTYPE (0 << 8)
237 #define AUB_TRACE_TYPE_BATCH (1 << 8)
238 #define AUB_TRACE_TYPE_VERTEX_BUFFER (5 << 8)
239 #define AUB_TRACE_TYPE_2D_MAP (6 << 8)
240 #define AUB_TRACE_TYPE_CUBE_MAP (7 << 8)
241 #define AUB_TRACE_TYPE_VOLUME_MAP (9 << 8)
242 #define AUB_TRACE_TYPE_1D_MAP (10 << 8)
243 #define AUB_TRACE_TYPE_CONSTANT_BUFFER (11 << 8)
244 #define AUB_TRACE_TYPE_CONSTANT_URB (12 << 8)
245 #define AUB_TRACE_TYPE_INDEX_BUFFER (13 << 8)
246 #define AUB_TRACE_TYPE_GENERAL (14 << 8)
247 #define AUB_TRACE_TYPE_SURFACE (15 << 8)
248
249 /**
250 * state_struct_type enum values are encoded with the top 16 bits representing
251 * the type to be delivered to the .aub file, and the bottom 16 bits
252 * representing the subtype. This macro performs the encoding.
253 */
254 #define ENCODE_SS_TYPE(type, subtype) (((type) << 16) | (subtype))
255
256 enum state_struct_type {
257 AUB_TRACE_VS_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 1),
258 AUB_TRACE_GS_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 2),
259 AUB_TRACE_CLIP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 3),
260 AUB_TRACE_SF_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 4),
261 AUB_TRACE_WM_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 5),
262 AUB_TRACE_CC_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 6),
263 AUB_TRACE_CLIP_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 7),
264 AUB_TRACE_SF_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 8),
265 AUB_TRACE_CC_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x9),
266 AUB_TRACE_SAMPLER_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xa),
267 AUB_TRACE_KERNEL_INSTRUCTIONS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xb),
268 AUB_TRACE_SCRATCH_SPACE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xc),
269 AUB_TRACE_SAMPLER_DEFAULT_COLOR = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xd),
270
271 AUB_TRACE_SCISSOR_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x15),
272 AUB_TRACE_BLEND_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x16),
273 AUB_TRACE_DEPTH_STENCIL_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x17),
274
275 AUB_TRACE_VERTEX_BUFFER = ENCODE_SS_TYPE(AUB_TRACE_TYPE_VERTEX_BUFFER, 0),
276 AUB_TRACE_BINDING_TABLE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_SURFACE, 0x100),
277 AUB_TRACE_SURFACE_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_SURFACE, 0x200),
278 AUB_TRACE_VS_CONSTANTS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_CONSTANT_BUFFER, 0),
279 AUB_TRACE_WM_CONSTANTS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_CONSTANT_BUFFER, 1),
280 };
281
282 /**
283 * Decode a state_struct_type value to determine the type that should be
284 * stored in the .aub file.
285 */
286 static inline uint32_t AUB_TRACE_TYPE(enum state_struct_type ss_type)
287 {
288 return (ss_type & 0xFFFF0000) >> 16;
289 }
290
291 /**
292 * Decode a state_struct_type value to determine the subtype that should be
293 * stored in the .aub file.
294 */
295 static inline uint32_t AUB_TRACE_SUBTYPE(enum state_struct_type ss_type)
296 {
297 return ss_type & 0xFFFF;
298 }
299
300 /** Subclass of Mesa vertex program */
301 struct brw_vertex_program {
302 struct gl_vertex_program program;
303 GLuint id;
304 };
305
306
307 /** Subclass of Mesa geometry program */
308 struct brw_geometry_program {
309 struct gl_geometry_program program;
310 unsigned id; /**< serial no. to identify geom progs, never re-used */
311 };
312
313
314 /** Subclass of Mesa fragment program */
315 struct brw_fragment_program {
316 struct gl_fragment_program program;
317 GLuint id; /**< serial no. to identify frag progs, never re-used */
318 };
319
320
321 /** Subclass of Mesa compute program */
322 struct brw_compute_program {
323 struct gl_compute_program program;
324 unsigned id; /**< serial no. to identify compute progs, never re-used */
325 };
326
327
328 struct brw_shader {
329 struct gl_shader base;
330
331 bool compiled_once;
332 };
333
334 /* Note: If adding fields that need anything besides a normal memcmp() for
335 * comparing them, be sure to go fix brw_stage_prog_data_compare().
336 */
337 struct brw_stage_prog_data {
338 struct {
339 /** size of our binding table. */
340 uint32_t size_bytes;
341
342 /** @{
343 * surface indices for the various groups of surfaces
344 */
345 uint32_t pull_constants_start;
346 uint32_t texture_start;
347 uint32_t gather_texture_start;
348 uint32_t ubo_start;
349 uint32_t abo_start;
350 uint32_t shader_time_start;
351 /** @} */
352 } binding_table;
353
354 GLuint nr_params; /**< number of float params/constants */
355 GLuint nr_pull_params;
356
357 /* Pointers to tracked values (only valid once
358 * _mesa_load_state_parameters has been called at runtime).
359 *
360 * These must be the last fields of the struct (see
361 * brw_stage_prog_data_compare()).
362 */
363 const float **param;
364 const float **pull_param;
365 };
366
367 /* Data about a particular attempt to compile a program. Note that
368 * there can be many of these, each in a different GL state
369 * corresponding to a different brw_wm_prog_key struct, with different
370 * compiled programs.
371 *
372 * Note: brw_wm_prog_data_compare() must be updated when adding fields to this
373 * struct!
374 */
375 struct brw_wm_prog_data {
376 struct brw_stage_prog_data base;
377
378 GLuint curb_read_length;
379 GLuint num_varying_inputs;
380
381 GLuint first_curbe_grf;
382 GLuint first_curbe_grf_16;
383 GLuint reg_blocks;
384 GLuint reg_blocks_16;
385 GLuint total_scratch;
386
387 struct {
388 /** @{
389 * surface indices the WM-specific surfaces
390 */
391 uint32_t render_target_start;
392 /** @} */
393 } binding_table;
394
395 bool dual_src_blend;
396 bool uses_pos_offset;
397 bool uses_omask;
398 uint32_t prog_offset_16;
399
400 /**
401 * Mask of which interpolation modes are required by the fragment shader.
402 * Used in hardware setup on gen6+.
403 */
404 uint32_t barycentric_interp_modes;
405
406 /**
407 * Map from gl_varying_slot to the position within the FS setup data
408 * payload where the varying's attribute vertex deltas should be delivered.
409 * For varying slots that are not used by the FS, the value is -1.
410 */
411 int urb_setup[VARYING_SLOT_MAX];
412 };
413
414 /**
415 * Enum representing the i965-specific vertex results that don't correspond
416 * exactly to any element of gl_varying_slot. The values of this enum are
417 * assigned such that they don't conflict with gl_varying_slot.
418 */
419 typedef enum
420 {
421 BRW_VARYING_SLOT_NDC = VARYING_SLOT_MAX,
422 BRW_VARYING_SLOT_PAD,
423 /**
424 * Technically this is not a varying but just a placeholder that
425 * compile_sf_prog() inserts into its VUE map to cause the gl_PointCoord
426 * builtin variable to be compiled correctly. see compile_sf_prog() for
427 * more info.
428 */
429 BRW_VARYING_SLOT_PNTC,
430 BRW_VARYING_SLOT_COUNT
431 } brw_varying_slot;
432
433
434 /**
435 * Data structure recording the relationship between the gl_varying_slot enum
436 * and "slots" within the vertex URB entry (VUE). A "slot" is defined as a
437 * single octaword within the VUE (128 bits).
438 *
439 * Note that each BRW register contains 256 bits (2 octawords), so when
440 * accessing the VUE in URB_NOSWIZZLE mode, each register corresponds to two
441 * consecutive VUE slots. When accessing the VUE in URB_INTERLEAVED mode (as
442 * in a vertex shader), each register corresponds to a single VUE slot, since
443 * it contains data for two separate vertices.
444 */
445 struct brw_vue_map {
446 /**
447 * Bitfield representing all varying slots that are (a) stored in this VUE
448 * map, and (b) actually written by the shader. Does not include any of
449 * the additional varying slots defined in brw_varying_slot.
450 */
451 GLbitfield64 slots_valid;
452
453 /**
454 * Map from gl_varying_slot value to VUE slot. For gl_varying_slots that are
455 * not stored in a slot (because they are not written, or because
456 * additional processing is applied before storing them in the VUE), the
457 * value is -1.
458 */
459 signed char varying_to_slot[BRW_VARYING_SLOT_COUNT];
460
461 /**
462 * Map from VUE slot to gl_varying_slot value. For slots that do not
463 * directly correspond to a gl_varying_slot, the value comes from
464 * brw_varying_slot.
465 *
466 * For slots that are not in use, the value is BRW_VARYING_SLOT_COUNT (this
467 * simplifies code that uses the value stored in slot_to_varying to
468 * create a bit mask).
469 */
470 signed char slot_to_varying[BRW_VARYING_SLOT_COUNT];
471
472 /**
473 * Total number of VUE slots in use
474 */
475 int num_slots;
476 };
477
478 /**
479 * Convert a VUE slot number into a byte offset within the VUE.
480 */
481 static inline GLuint brw_vue_slot_to_offset(GLuint slot)
482 {
483 return 16*slot;
484 }
485
486 /**
487 * Convert a vertex output (brw_varying_slot) into a byte offset within the
488 * VUE.
489 */
490 static inline GLuint brw_varying_to_offset(struct brw_vue_map *vue_map,
491 GLuint varying)
492 {
493 return brw_vue_slot_to_offset(vue_map->varying_to_slot[varying]);
494 }
495
496 void brw_compute_vue_map(struct brw_context *brw, struct brw_vue_map *vue_map,
497 GLbitfield64 slots_valid);
498
499
500 /**
501 * Bitmask indicating which fragment shader inputs represent varyings (and
502 * hence have to be delivered to the fragment shader by the SF/SBE stage).
503 */
504 #define BRW_FS_VARYING_INPUT_MASK \
505 (BITFIELD64_RANGE(0, VARYING_SLOT_MAX) & \
506 ~VARYING_BIT_POS & ~VARYING_BIT_FACE)
507
508
509 /*
510 * Mapping of VUE map slots to interpolation modes.
511 */
512 struct interpolation_mode_map {
513 unsigned char mode[BRW_VARYING_SLOT_COUNT];
514 };
515
516 static inline bool brw_any_flat_varyings(struct interpolation_mode_map *map)
517 {
518 for (int i = 0; i < BRW_VARYING_SLOT_COUNT; i++)
519 if (map->mode[i] == INTERP_QUALIFIER_FLAT)
520 return true;
521
522 return false;
523 }
524
525 static inline bool brw_any_noperspective_varyings(struct interpolation_mode_map *map)
526 {
527 for (int i = 0; i < BRW_VARYING_SLOT_COUNT; i++)
528 if (map->mode[i] == INTERP_QUALIFIER_NOPERSPECTIVE)
529 return true;
530
531 return false;
532 }
533
534
535 struct brw_sf_prog_data {
536 GLuint urb_read_length;
537 GLuint total_grf;
538
539 /* Each vertex may have upto 12 attributes, 4 components each,
540 * except WPOS which requires only 2. (11*4 + 2) == 44 ==> 11
541 * rows.
542 *
543 * Actually we use 4 for each, so call it 12 rows.
544 */
545 GLuint urb_entry_size;
546 };
547
548
549 /**
550 * We always program SF to start reading at an offset of 1 (2 varying slots)
551 * from the start of the vertex URB entry. This causes it to skip:
552 * - VARYING_SLOT_PSIZ and BRW_VARYING_SLOT_NDC on gen4-5
553 * - VARYING_SLOT_PSIZ and VARYING_SLOT_POS on gen6+
554 */
555 #define BRW_SF_URB_ENTRY_READ_OFFSET 1
556
557
558 struct brw_clip_prog_data {
559 GLuint curb_read_length; /* user planes? */
560 GLuint clip_mode;
561 GLuint urb_read_length;
562 GLuint total_grf;
563 };
564
565 struct brw_ff_gs_prog_data {
566 GLuint urb_read_length;
567 GLuint total_grf;
568
569 /**
570 * Gen6 transform feedback: Amount by which the streaming vertex buffer
571 * indices should be incremented each time the GS is invoked.
572 */
573 unsigned svbi_postincrement_value;
574 };
575
576
577 /* Note: brw_vec4_prog_data_compare() must be updated when adding fields to
578 * this struct!
579 */
580 struct brw_vec4_prog_data {
581 struct brw_stage_prog_data base;
582 struct brw_vue_map vue_map;
583
584 /**
585 * Register where the thread expects to find input data from the URB
586 * (typically uniforms, followed by per-vertex inputs).
587 */
588 unsigned dispatch_grf_start_reg;
589
590 GLuint curb_read_length;
591 GLuint urb_read_length;
592 GLuint total_grf;
593 GLuint total_scratch;
594
595 /* Used for calculating urb partitions. In the VS, this is the size of the
596 * URB entry used for both input and output to the thread. In the GS, this
597 * is the size of the URB entry used for output.
598 */
599 GLuint urb_entry_size;
600 };
601
602
603 /* Note: brw_vs_prog_data_compare() must be updated when adding fields to this
604 * struct!
605 */
606 struct brw_vs_prog_data {
607 struct brw_vec4_prog_data base;
608
609 GLbitfield64 inputs_read;
610
611 bool uses_vertexid;
612 };
613
614
615 /* Note: brw_gs_prog_data_compare() must be updated when adding fields to
616 * this struct!
617 */
618 struct brw_gs_prog_data
619 {
620 struct brw_vec4_prog_data base;
621
622 /**
623 * Size of an output vertex, measured in HWORDS (32 bytes).
624 */
625 unsigned output_vertex_size_hwords;
626
627 unsigned output_topology;
628
629 /**
630 * Size of the control data (cut bits or StreamID bits), in hwords (32
631 * bytes). 0 if there is no control data.
632 */
633 unsigned control_data_header_size_hwords;
634
635 /**
636 * Format of the control data (either GEN7_GS_CONTROL_DATA_FORMAT_GSCTL_SID
637 * if the control data is StreamID bits, or
638 * GEN7_GS_CONTROL_DATA_FORMAT_GSCTL_CUT if the control data is cut bits).
639 * Ignored if control_data_header_size is 0.
640 */
641 unsigned control_data_format;
642
643 bool include_primitive_id;
644
645 int invocations;
646
647 /**
648 * True if the thread should be dispatched in DUAL_INSTANCE mode, false if
649 * it should be dispatched in DUAL_OBJECT mode.
650 */
651 bool dual_instanced_dispatch;
652 };
653
654 /** Number of texture sampler units */
655 #define BRW_MAX_TEX_UNIT 32
656
657 /** Max number of render targets in a shader */
658 #define BRW_MAX_DRAW_BUFFERS 8
659
660 /** Max number of atomic counter buffer objects in a shader */
661 #define BRW_MAX_ABO 16
662
663 /**
664 * Max number of binding table entries used for stream output.
665 *
666 * From the OpenGL 3.0 spec, table 6.44 (Transform Feedback State), the
667 * minimum value of MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS is 64.
668 *
669 * On Gen6, the size of transform feedback data is limited not by the number
670 * of components but by the number of binding table entries we set aside. We
671 * use one binding table entry for a float, one entry for a vector, and one
672 * entry per matrix column. Since the only way we can communicate our
673 * transform feedback capabilities to the client is via
674 * MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS, we need to plan for the
675 * worst case, in which all the varyings are floats, so we use up one binding
676 * table entry per component. Therefore we need to set aside at least 64
677 * binding table entries for use by transform feedback.
678 *
679 * Note: since we don't currently pack varyings, it is currently impossible
680 * for the client to actually use up all of these binding table entries--if
681 * all of their varyings were floats, they would run out of varying slots and
682 * fail to link. But that's a bug, so it seems prudent to go ahead and
683 * allocate the number of binding table entries we will need once the bug is
684 * fixed.
685 */
686 #define BRW_MAX_SOL_BINDINGS 64
687
688 /** Maximum number of actual buffers used for stream output */
689 #define BRW_MAX_SOL_BUFFERS 4
690
691 #define BRW_MAX_SURFACES (BRW_MAX_DRAW_BUFFERS + \
692 BRW_MAX_TEX_UNIT * 2 + /* normal, gather */ \
693 12 + /* ubo */ \
694 BRW_MAX_ABO + \
695 2 /* shader time, pull constants */)
696
697 #define SURF_INDEX_GEN6_SOL_BINDING(t) (t)
698 #define BRW_MAX_GEN6_GS_SURFACES SURF_INDEX_GEN6_SOL_BINDING(BRW_MAX_SOL_BINDINGS)
699
700 /**
701 * Stride in bytes between shader_time entries.
702 *
703 * We separate entries by a cacheline to reduce traffic between EUs writing to
704 * different entries.
705 */
706 #define SHADER_TIME_STRIDE 64
707
708 enum brw_cache_id {
709 BRW_CC_VP,
710 BRW_CC_UNIT,
711 BRW_WM_PROG,
712 BRW_BLORP_BLIT_PROG,
713 BRW_BLORP_CONST_COLOR_PROG,
714 BRW_SAMPLER,
715 BRW_WM_UNIT,
716 BRW_SF_PROG,
717 BRW_SF_VP,
718 BRW_SF_UNIT, /* scissor state on gen6 */
719 BRW_VS_UNIT,
720 BRW_VS_PROG,
721 BRW_FF_GS_UNIT,
722 BRW_FF_GS_PROG,
723 BRW_GS_PROG,
724 BRW_CLIP_VP,
725 BRW_CLIP_UNIT,
726 BRW_CLIP_PROG,
727
728 BRW_MAX_CACHE
729 };
730
731 struct brw_cache_item {
732 /**
733 * Effectively part of the key, cache_id identifies what kind of state
734 * buffer is involved, and also which brw->state.dirty.cache flag should
735 * be set when this cache item is chosen.
736 */
737 enum brw_cache_id cache_id;
738 /** 32-bit hash of the key data */
739 GLuint hash;
740 GLuint key_size; /* for variable-sized keys */
741 GLuint aux_size;
742 const void *key;
743
744 uint32_t offset;
745 uint32_t size;
746
747 struct brw_cache_item *next;
748 };
749
750
751 typedef bool (*cache_aux_compare_func)(const void *a, const void *b);
752 typedef void (*cache_aux_free_func)(const void *aux);
753
754 struct brw_cache {
755 struct brw_context *brw;
756
757 struct brw_cache_item **items;
758 drm_intel_bo *bo;
759 GLuint size, n_items;
760
761 uint32_t next_offset;
762 bool bo_used_by_gpu;
763
764 /**
765 * Optional functions used in determining whether the prog_data for a new
766 * cache item matches an existing cache item (in case there's relevant data
767 * outside of the prog_data). If NULL, a plain memcmp is done.
768 */
769 cache_aux_compare_func aux_compare[BRW_MAX_CACHE];
770 /** Optional functions for freeing other pointers attached to a prog_data. */
771 cache_aux_free_func aux_free[BRW_MAX_CACHE];
772 };
773
774
775 /* Considered adding a member to this struct to document which flags
776 * an update might raise so that ordering of the state atoms can be
777 * checked or derived at runtime. Dropped the idea in favor of having
778 * a debug mode where the state is monitored for flags which are
779 * raised that have already been tested against.
780 */
781 struct brw_tracked_state {
782 struct brw_state_flags dirty;
783 void (*emit)( struct brw_context *brw );
784 };
785
786 enum shader_time_shader_type {
787 ST_NONE,
788 ST_VS,
789 ST_VS_WRITTEN,
790 ST_VS_RESET,
791 ST_GS,
792 ST_GS_WRITTEN,
793 ST_GS_RESET,
794 ST_FS8,
795 ST_FS8_WRITTEN,
796 ST_FS8_RESET,
797 ST_FS16,
798 ST_FS16_WRITTEN,
799 ST_FS16_RESET,
800 };
801
802 /* Flags for brw->state.cache.
803 */
804 #define CACHE_NEW_CC_VP (1<<BRW_CC_VP)
805 #define CACHE_NEW_CC_UNIT (1<<BRW_CC_UNIT)
806 #define CACHE_NEW_WM_PROG (1<<BRW_WM_PROG)
807 #define CACHE_NEW_BLORP_BLIT_PROG (1<<BRW_BLORP_BLIT_PROG)
808 #define CACHE_NEW_BLORP_CONST_COLOR_PROG (1<<BRW_BLORP_CONST_COLOR_PROG)
809 #define CACHE_NEW_SAMPLER (1<<BRW_SAMPLER)
810 #define CACHE_NEW_WM_UNIT (1<<BRW_WM_UNIT)
811 #define CACHE_NEW_SF_PROG (1<<BRW_SF_PROG)
812 #define CACHE_NEW_SF_VP (1<<BRW_SF_VP)
813 #define CACHE_NEW_SF_UNIT (1<<BRW_SF_UNIT)
814 #define CACHE_NEW_VS_UNIT (1<<BRW_VS_UNIT)
815 #define CACHE_NEW_VS_PROG (1<<BRW_VS_PROG)
816 #define CACHE_NEW_FF_GS_UNIT (1<<BRW_FF_GS_UNIT)
817 #define CACHE_NEW_FF_GS_PROG (1<<BRW_FF_GS_PROG)
818 #define CACHE_NEW_GS_PROG (1<<BRW_GS_PROG)
819 #define CACHE_NEW_CLIP_VP (1<<BRW_CLIP_VP)
820 #define CACHE_NEW_CLIP_UNIT (1<<BRW_CLIP_UNIT)
821 #define CACHE_NEW_CLIP_PROG (1<<BRW_CLIP_PROG)
822
823 struct brw_cached_batch_item {
824 struct header *header;
825 GLuint sz;
826 struct brw_cached_batch_item *next;
827 };
828
829 struct brw_vertex_buffer {
830 /** Buffer object containing the uploaded vertex data */
831 drm_intel_bo *bo;
832 uint32_t offset;
833 /** Byte stride between elements in the uploaded array */
834 GLuint stride;
835 GLuint step_rate;
836 };
837 struct brw_vertex_element {
838 const struct gl_client_array *glarray;
839
840 int buffer;
841
842 /** The corresponding Mesa vertex attribute */
843 gl_vert_attrib attrib;
844 /** Offset of the first element within the buffer object */
845 unsigned int offset;
846 };
847
848 struct brw_query_object {
849 struct gl_query_object Base;
850
851 /** Last query BO associated with this query. */
852 drm_intel_bo *bo;
853
854 /** Last index in bo with query data for this object. */
855 int last_index;
856 };
857
858 struct intel_sync_object {
859 struct gl_sync_object Base;
860
861 /** Batch associated with this sync object */
862 drm_intel_bo *bo;
863 };
864
865 enum brw_gpu_ring {
866 UNKNOWN_RING,
867 RENDER_RING,
868 BLT_RING,
869 };
870
871 struct intel_batchbuffer {
872 /** Current batchbuffer being queued up. */
873 drm_intel_bo *bo;
874 /** Last BO submitted to the hardware. Used for glFinish(). */
875 drm_intel_bo *last_bo;
876 /** BO for post-sync nonzero writes for gen6 workaround. */
877 drm_intel_bo *workaround_bo;
878 bool need_workaround_flush;
879
880 struct cached_batch_item *cached_items;
881
882 uint16_t emit, total;
883 uint16_t used, reserved_space;
884 uint32_t *map;
885 uint32_t *cpu_map;
886 #define BATCH_SZ (8192*sizeof(uint32_t))
887
888 uint32_t state_batch_offset;
889 enum brw_gpu_ring ring;
890 bool needs_sol_reset;
891
892 struct {
893 uint16_t used;
894 int reloc_count;
895 } saved;
896 };
897
898 #define BRW_MAX_XFB_STREAMS 4
899
900 struct brw_transform_feedback_object {
901 struct gl_transform_feedback_object base;
902
903 /** A buffer to hold SO_WRITE_OFFSET(n) values while paused. */
904 drm_intel_bo *offset_bo;
905
906 /** If true, SO_WRITE_OFFSET(n) should be reset to zero at next use. */
907 bool zero_offsets;
908
909 /** The most recent primitive mode (GL_TRIANGLES/GL_POINTS/GL_LINES). */
910 GLenum primitive_mode;
911
912 /**
913 * Count of primitives generated during this transform feedback operation.
914 * @{
915 */
916 uint64_t prims_generated[BRW_MAX_XFB_STREAMS];
917 drm_intel_bo *prim_count_bo;
918 unsigned prim_count_buffer_index; /**< in number of uint64_t units */
919 /** @} */
920
921 /**
922 * Number of vertices written between last Begin/EndTransformFeedback().
923 *
924 * Used to implement DrawTransformFeedback().
925 */
926 uint64_t vertices_written[BRW_MAX_XFB_STREAMS];
927 bool vertices_written_valid;
928 };
929
930 /**
931 * Data shared between each programmable stage in the pipeline (vs, gs, and
932 * wm).
933 */
934 struct brw_stage_state
935 {
936 struct brw_stage_prog_data *prog_data;
937
938 /**
939 * Optional scratch buffer used to store spilled register values and
940 * variably-indexed GRF arrays.
941 */
942 drm_intel_bo *scratch_bo;
943
944 /** Pull constant buffer */
945 drm_intel_bo *const_bo;
946
947 /** Offset in the program cache to the program */
948 uint32_t prog_offset;
949
950 /** Offset in the batchbuffer to Gen4-5 pipelined state (VS/WM/GS_STATE). */
951 uint32_t state_offset;
952
953 uint32_t push_const_offset; /* Offset in the batchbuffer */
954 int push_const_size; /* in 256-bit register increments */
955
956 /* Binding table: pointers to SURFACE_STATE entries. */
957 uint32_t bind_bo_offset;
958 uint32_t surf_offset[BRW_MAX_SURFACES];
959
960 /** SAMPLER_STATE count and table offset */
961 uint32_t sampler_count;
962 uint32_t sampler_offset;
963
964 /** Offsets in the batch to sampler default colors (texture border color) */
965 uint32_t sdc_offset[BRW_MAX_TEX_UNIT];
966 };
967
968
969 /**
970 * brw_context is derived from gl_context.
971 */
972 struct brw_context
973 {
974 struct gl_context ctx; /**< base class, must be first field */
975
976 struct
977 {
978 void (*update_texture_surface)(struct gl_context *ctx,
979 unsigned unit,
980 uint32_t *surf_offset,
981 bool for_gather);
982 void (*update_renderbuffer_surface)(struct brw_context *brw,
983 struct gl_renderbuffer *rb,
984 bool layered,
985 unsigned unit);
986 void (*update_null_renderbuffer_surface)(struct brw_context *brw,
987 unsigned unit);
988
989 void (*create_raw_surface)(struct brw_context *brw,
990 drm_intel_bo *bo,
991 uint32_t offset,
992 uint32_t size,
993 uint32_t *out_offset,
994 bool rw);
995 void (*emit_buffer_surface_state)(struct brw_context *brw,
996 uint32_t *out_offset,
997 drm_intel_bo *bo,
998 unsigned buffer_offset,
999 unsigned surface_format,
1000 unsigned buffer_size,
1001 unsigned pitch,
1002 unsigned mocs,
1003 bool rw);
1004
1005 /** Upload a SAMPLER_STATE table. */
1006 void (*upload_sampler_state_table)(struct brw_context *brw,
1007 struct gl_program *prog,
1008 uint32_t sampler_count,
1009 uint32_t *sst_offset,
1010 uint32_t *sdc_offset);
1011
1012 /**
1013 * Send the appropriate state packets to configure depth, stencil, and
1014 * HiZ buffers (i965+ only)
1015 */
1016 void (*emit_depth_stencil_hiz)(struct brw_context *brw,
1017 struct intel_mipmap_tree *depth_mt,
1018 uint32_t depth_offset,
1019 uint32_t depthbuffer_format,
1020 uint32_t depth_surface_type,
1021 struct intel_mipmap_tree *stencil_mt,
1022 bool hiz, bool separate_stencil,
1023 uint32_t width, uint32_t height,
1024 uint32_t tile_x, uint32_t tile_y);
1025
1026 } vtbl;
1027
1028 dri_bufmgr *bufmgr;
1029
1030 drm_intel_context *hw_ctx;
1031
1032 /**
1033 * Set of drm_intel_bo * that have been rendered to within this batchbuffer
1034 * and would need flushing before being used from another cache domain that
1035 * isn't coherent with it (i.e. the sampler).
1036 */
1037 struct set *render_cache;
1038
1039 /**
1040 * Number of resets observed in the system at context creation.
1041 *
1042 * This is tracked in the context so that we can determine that another
1043 * reset has occured.
1044 */
1045 uint32_t reset_count;
1046
1047 struct intel_batchbuffer batch;
1048 bool no_batch_wrap;
1049
1050 struct {
1051 drm_intel_bo *bo;
1052 GLuint offset;
1053 uint32_t buffer_len;
1054 uint32_t buffer_offset;
1055 char buffer[4096];
1056 } upload;
1057
1058 /**
1059 * Set if rendering has occured to the drawable's front buffer.
1060 *
1061 * This is used in the DRI2 case to detect that glFlush should also copy
1062 * the contents of the fake front buffer to the real front buffer.
1063 */
1064 bool front_buffer_dirty;
1065
1066 /**
1067 * Track whether front-buffer rendering is currently enabled
1068 *
1069 * A separate flag is used to track this in order to support MRT more
1070 * easily.
1071 */
1072 bool is_front_buffer_rendering;
1073
1074 /**
1075 * Track whether front-buffer is the current read target.
1076 *
1077 * This is closely associated with is_front_buffer_rendering, but may
1078 * be set separately. The DRI2 fake front buffer must be referenced
1079 * either way.
1080 */
1081 bool is_front_buffer_reading;
1082
1083 /** Framerate throttling: @{ */
1084 drm_intel_bo *first_post_swapbuffers_batch;
1085 bool need_throttle;
1086 /** @} */
1087
1088 GLuint stats_wm;
1089
1090 /**
1091 * drirc options:
1092 * @{
1093 */
1094 bool no_rast;
1095 bool always_flush_batch;
1096 bool always_flush_cache;
1097 bool disable_throttling;
1098 bool precompile;
1099 bool disable_derivative_optimization;
1100
1101 driOptionCache optionCache;
1102 /** @} */
1103
1104 GLuint primitive; /**< Hardware primitive, such as _3DPRIM_TRILIST. */
1105
1106 GLenum reduced_primitive;
1107
1108 /**
1109 * Set if we're either a debug context or the INTEL_DEBUG=perf environment
1110 * variable is set, this is the flag indicating to do expensive work that
1111 * might lead to a perf_debug() call.
1112 */
1113 bool perf_debug;
1114
1115 uint32_t max_gtt_map_object_size;
1116
1117 int gen;
1118 int gt;
1119
1120 bool is_g4x;
1121 bool is_baytrail;
1122 bool is_haswell;
1123
1124 bool has_hiz;
1125 bool has_separate_stencil;
1126 bool must_use_separate_stencil;
1127 bool has_llc;
1128 bool has_swizzling;
1129 bool has_surface_tile_offset;
1130 bool has_compr4;
1131 bool has_negative_rhw_bug;
1132 bool has_pln;
1133
1134 /**
1135 * Some versions of Gen hardware don't do centroid interpolation correctly
1136 * on unlit pixels, causing incorrect values for derivatives near triangle
1137 * edges. Enabling this flag causes the fragment shader to use
1138 * non-centroid interpolation for unlit pixels, at the expense of two extra
1139 * fragment shader instructions.
1140 */
1141 bool needs_unlit_centroid_workaround;
1142
1143 GLuint NewGLState;
1144 struct {
1145 struct brw_state_flags dirty;
1146 } state;
1147
1148 struct brw_cache cache;
1149 struct brw_cached_batch_item *cached_batch_items;
1150
1151 /* Whether a meta-operation is in progress. */
1152 bool meta_in_progress;
1153
1154 struct {
1155 struct brw_vertex_element inputs[VERT_ATTRIB_MAX];
1156 struct brw_vertex_buffer buffers[VERT_ATTRIB_MAX];
1157
1158 struct brw_vertex_element *enabled[VERT_ATTRIB_MAX];
1159 GLuint nr_enabled;
1160 GLuint nr_buffers;
1161
1162 /* Summary of size and varying of active arrays, so we can check
1163 * for changes to this state:
1164 */
1165 unsigned int min_index, max_index;
1166
1167 /* Offset from start of vertex buffer so we can avoid redefining
1168 * the same VB packed over and over again.
1169 */
1170 unsigned int start_vertex_bias;
1171 } vb;
1172
1173 struct {
1174 /**
1175 * Index buffer for this draw_prims call.
1176 *
1177 * Updates are signaled by BRW_NEW_INDICES.
1178 */
1179 const struct _mesa_index_buffer *ib;
1180
1181 /* Updates are signaled by BRW_NEW_INDEX_BUFFER. */
1182 drm_intel_bo *bo;
1183 GLuint type;
1184
1185 /* Offset to index buffer index to use in CMD_3D_PRIM so that we can
1186 * avoid re-uploading the IB packet over and over if we're actually
1187 * referencing the same index buffer.
1188 */
1189 unsigned int start_vertex_offset;
1190 } ib;
1191
1192 /* Active vertex program:
1193 */
1194 const struct gl_vertex_program *vertex_program;
1195 const struct gl_geometry_program *geometry_program;
1196 const struct gl_fragment_program *fragment_program;
1197
1198 /* hw-dependent 3DSTATE_VF_STATISTICS opcode */
1199 uint32_t CMD_VF_STATISTICS;
1200 /* hw-dependent 3DSTATE_PIPELINE_SELECT opcode */
1201 uint32_t CMD_PIPELINE_SELECT;
1202
1203 /**
1204 * Platform specific constants containing the maximum number of threads
1205 * for each pipeline stage.
1206 */
1207 int max_vs_threads;
1208 int max_gs_threads;
1209 int max_wm_threads;
1210
1211 /* BRW_NEW_URB_ALLOCATIONS:
1212 */
1213 struct {
1214 GLuint vsize; /* vertex size plus header in urb registers */
1215 GLuint csize; /* constant buffer size in urb registers */
1216 GLuint sfsize; /* setup data size in urb registers */
1217
1218 bool constrained;
1219
1220 GLuint min_vs_entries; /* Minimum number of VS entries */
1221 GLuint max_vs_entries; /* Maximum number of VS entries */
1222 GLuint max_gs_entries; /* Maximum number of GS entries */
1223
1224 GLuint nr_vs_entries;
1225 GLuint nr_gs_entries;
1226 GLuint nr_clip_entries;
1227 GLuint nr_sf_entries;
1228 GLuint nr_cs_entries;
1229
1230 GLuint vs_start;
1231 GLuint gs_start;
1232 GLuint clip_start;
1233 GLuint sf_start;
1234 GLuint cs_start;
1235 GLuint size; /* Hardware URB size, in KB. */
1236
1237 /* gen6: True if the most recently sent _3DSTATE_URB message allocated
1238 * URB space for the GS.
1239 */
1240 bool gen6_gs_previously_active;
1241 } urb;
1242
1243
1244 /* BRW_NEW_CURBE_OFFSETS:
1245 */
1246 struct {
1247 GLuint wm_start; /**< pos of first wm const in CURBE buffer */
1248 GLuint wm_size; /**< number of float[4] consts, multiple of 16 */
1249 GLuint clip_start;
1250 GLuint clip_size;
1251 GLuint vs_start;
1252 GLuint vs_size;
1253 GLuint total_size;
1254
1255 drm_intel_bo *curbe_bo;
1256 /** Offset within curbe_bo of space for current curbe entry */
1257 GLuint curbe_offset;
1258 /** Offset within curbe_bo of space for next curbe entry */
1259 GLuint curbe_next_offset;
1260
1261 /**
1262 * Copy of the last set of CURBEs uploaded. Frequently we'll end up
1263 * in brw_curbe.c with the same set of constant data to be uploaded,
1264 * so we'd rather not upload new constants in that case (it can cause
1265 * a pipeline bubble since only up to 4 can be pipelined at a time).
1266 */
1267 GLfloat *last_buf;
1268 /**
1269 * Allocation for where to calculate the next set of CURBEs.
1270 * It's a hot enough path that malloc/free of that data matters.
1271 */
1272 GLfloat *next_buf;
1273 GLuint last_bufsz;
1274 } curbe;
1275
1276 /**
1277 * Layout of vertex data exiting the vertex shader.
1278 *
1279 * BRW_NEW_VUE_MAP_VS is flagged when this VUE map changes.
1280 */
1281 struct brw_vue_map vue_map_vs;
1282
1283 /**
1284 * Layout of vertex data exiting the geometry portion of the pipleine.
1285 * This comes from the geometry shader if one exists, otherwise from the
1286 * vertex shader.
1287 *
1288 * BRW_NEW_VUE_MAP_GEOM_OUT is flagged when the VUE map changes.
1289 */
1290 struct brw_vue_map vue_map_geom_out;
1291
1292 /**
1293 * Data structures used by all vec4 program compiles (not specific to any
1294 * particular program).
1295 */
1296 struct {
1297 struct ra_regs *regs;
1298
1299 /**
1300 * Array of the ra classes for the unaligned contiguous register
1301 * block sizes used.
1302 */
1303 int *classes;
1304
1305 /**
1306 * Mapping for register-allocated objects in *regs to the first
1307 * GRF for that object.
1308 */
1309 uint8_t *ra_reg_to_grf;
1310 } vec4;
1311
1312 struct {
1313 struct brw_stage_state base;
1314 struct brw_vs_prog_data *prog_data;
1315 } vs;
1316
1317 struct {
1318 struct brw_stage_state base;
1319 struct brw_gs_prog_data *prog_data;
1320
1321 /**
1322 * True if the 3DSTATE_GS command most recently emitted to the 3D
1323 * pipeline enabled the GS; false otherwise.
1324 */
1325 bool enabled;
1326 } gs;
1327
1328 struct {
1329 struct brw_ff_gs_prog_data *prog_data;
1330
1331 bool prog_active;
1332 /** Offset in the program cache to the CLIP program pre-gen6 */
1333 uint32_t prog_offset;
1334 uint32_t state_offset;
1335
1336 uint32_t bind_bo_offset;
1337 uint32_t surf_offset[BRW_MAX_GEN6_GS_SURFACES];
1338 } ff_gs;
1339
1340 struct {
1341 struct brw_clip_prog_data *prog_data;
1342
1343 /** Offset in the program cache to the CLIP program pre-gen6 */
1344 uint32_t prog_offset;
1345
1346 /* Offset in the batch to the CLIP state on pre-gen6. */
1347 uint32_t state_offset;
1348
1349 /* As of gen6, this is the offset in the batch to the CLIP VP,
1350 * instead of vp_bo.
1351 */
1352 uint32_t vp_offset;
1353 } clip;
1354
1355
1356 struct {
1357 struct brw_sf_prog_data *prog_data;
1358
1359 /** Offset in the program cache to the CLIP program pre-gen6 */
1360 uint32_t prog_offset;
1361 uint32_t state_offset;
1362 uint32_t vp_offset;
1363 } sf;
1364
1365 struct {
1366 struct brw_stage_state base;
1367 struct brw_wm_prog_data *prog_data;
1368
1369 GLuint render_surf;
1370
1371 /**
1372 * Buffer object used in place of multisampled null render targets on
1373 * Gen6. See brw_update_null_renderbuffer_surface().
1374 */
1375 drm_intel_bo *multisampled_null_render_target_bo;
1376
1377 struct {
1378 struct ra_regs *regs;
1379
1380 /**
1381 * Array of the ra classes for the unaligned contiguous register
1382 * block sizes used, indexed by register size.
1383 */
1384 int classes[16];
1385
1386 /**
1387 * Mapping for register-allocated objects in *regs to the first
1388 * GRF for that object.
1389 */
1390 uint8_t *ra_reg_to_grf;
1391
1392 /**
1393 * ra class for the aligned pairs we use for PLN, which doesn't
1394 * appear in *classes.
1395 */
1396 int aligned_pairs_class;
1397 } reg_sets[2];
1398 } wm;
1399
1400
1401 struct {
1402 uint32_t state_offset;
1403 uint32_t blend_state_offset;
1404 uint32_t depth_stencil_state_offset;
1405 uint32_t vp_offset;
1406 } cc;
1407
1408 struct {
1409 struct brw_query_object *obj;
1410 bool begin_emitted;
1411 } query;
1412
1413 struct {
1414 /** A map from pipeline statistics counter IDs to MMIO addresses. */
1415 const int *statistics_registers;
1416
1417 /** The number of active monitors using OA counters. */
1418 unsigned oa_users;
1419
1420 /**
1421 * A buffer object storing OA counter snapshots taken at the start and
1422 * end of each batch (creating "bookends" around the batch).
1423 */
1424 drm_intel_bo *bookend_bo;
1425
1426 /** The number of snapshots written to bookend_bo. */
1427 int bookend_snapshots;
1428
1429 /**
1430 * An array of monitors whose results haven't yet been assembled based on
1431 * the data in buffer objects.
1432 *
1433 * These may be active, or have already ended. However, the results
1434 * have not been requested.
1435 */
1436 struct brw_perf_monitor_object **unresolved;
1437 int unresolved_elements;
1438 int unresolved_array_size;
1439
1440 /**
1441 * Mapping from a uint32_t offset within an OA snapshot to the ID of
1442 * the counter which MI_REPORT_PERF_COUNT stores there.
1443 */
1444 const int *oa_snapshot_layout;
1445
1446 /** Number of 32-bit entries in a hardware counter snapshot. */
1447 int entries_per_oa_snapshot;
1448 } perfmon;
1449
1450 int num_atoms;
1451 const struct brw_tracked_state **atoms;
1452
1453 /* If (INTEL_DEBUG & DEBUG_BATCH) */
1454 struct {
1455 uint32_t offset;
1456 uint32_t size;
1457 enum state_struct_type type;
1458 } *state_batch_list;
1459 int state_batch_count;
1460
1461 uint32_t render_target_format[MESA_FORMAT_COUNT];
1462 bool format_supported_as_render_target[MESA_FORMAT_COUNT];
1463
1464 /* Interpolation modes, one byte per vue slot.
1465 * Used Gen4/5 by the clip|sf|wm stages. Ignored on Gen6+.
1466 */
1467 struct interpolation_mode_map interpolation_mode;
1468
1469 /* PrimitiveRestart */
1470 struct {
1471 bool in_progress;
1472 bool enable_cut_index;
1473 } prim_restart;
1474
1475 /** Computed depth/stencil/hiz state from the current attached
1476 * renderbuffers, valid only during the drawing state upload loop after
1477 * brw_workaround_depthstencil_alignment().
1478 */
1479 struct {
1480 struct intel_mipmap_tree *depth_mt;
1481 struct intel_mipmap_tree *stencil_mt;
1482
1483 /* Inter-tile (page-aligned) byte offsets. */
1484 uint32_t depth_offset, hiz_offset, stencil_offset;
1485 /* Intra-tile x,y offsets for drawing to depth/stencil/hiz */
1486 uint32_t tile_x, tile_y;
1487 } depthstencil;
1488
1489 uint32_t num_instances;
1490 int basevertex;
1491
1492 struct {
1493 drm_intel_bo *bo;
1494 struct gl_shader_program **shader_programs;
1495 struct gl_program **programs;
1496 enum shader_time_shader_type *types;
1497 uint64_t *cumulative;
1498 int num_entries;
1499 int max_entries;
1500 double report_time;
1501 } shader_time;
1502
1503 __DRIcontext *driContext;
1504 struct intel_screen *intelScreen;
1505 };
1506
1507 static inline bool
1508 is_power_of_two(uint32_t value)
1509 {
1510 return (value & (value - 1)) == 0;
1511 }
1512
1513 /*======================================================================
1514 * brw_vtbl.c
1515 */
1516 void brwInitVtbl( struct brw_context *brw );
1517
1518 /* brw_clear.c */
1519 extern void intelInitClearFuncs(struct dd_function_table *functions);
1520
1521 /*======================================================================
1522 * brw_context.c
1523 */
1524 extern const char *const brw_vendor_string;
1525
1526 extern const char *brw_get_renderer_string(unsigned deviceID);
1527
1528 extern void intelFinish(struct gl_context * ctx);
1529
1530 enum {
1531 DRI_CONF_BO_REUSE_DISABLED,
1532 DRI_CONF_BO_REUSE_ALL
1533 };
1534
1535 void intel_update_renderbuffers(__DRIcontext *context,
1536 __DRIdrawable *drawable);
1537 void intel_prepare_render(struct brw_context *brw);
1538
1539 void intel_resolve_for_dri2_flush(struct brw_context *brw,
1540 __DRIdrawable *drawable);
1541
1542 GLboolean brwCreateContext(gl_api api,
1543 const struct gl_config *mesaVis,
1544 __DRIcontext *driContextPriv,
1545 unsigned major_version,
1546 unsigned minor_version,
1547 uint32_t flags,
1548 bool notify_reset,
1549 unsigned *error,
1550 void *sharedContextPrivate);
1551
1552 /*======================================================================
1553 * brw_misc_state.c
1554 */
1555 void brw_get_depthstencil_tile_masks(struct intel_mipmap_tree *depth_mt,
1556 uint32_t depth_level,
1557 uint32_t depth_layer,
1558 struct intel_mipmap_tree *stencil_mt,
1559 uint32_t *out_tile_mask_x,
1560 uint32_t *out_tile_mask_y);
1561 void brw_workaround_depthstencil_alignment(struct brw_context *brw,
1562 GLbitfield clear_mask);
1563
1564 /* brw_object_purgeable.c */
1565 void brw_init_object_purgeable_functions(struct dd_function_table *functions);
1566
1567 /*======================================================================
1568 * brw_queryobj.c
1569 */
1570 void brw_init_common_queryobj_functions(struct dd_function_table *functions);
1571 void gen4_init_queryobj_functions(struct dd_function_table *functions);
1572 void brw_emit_query_begin(struct brw_context *brw);
1573 void brw_emit_query_end(struct brw_context *brw);
1574
1575 /** gen6_queryobj.c */
1576 void gen6_init_queryobj_functions(struct dd_function_table *functions);
1577 void brw_write_timestamp(struct brw_context *brw, drm_intel_bo *bo, int idx);
1578 void brw_write_depth_count(struct brw_context *brw, drm_intel_bo *bo, int idx);
1579 void brw_store_register_mem64(struct brw_context *brw,
1580 drm_intel_bo *bo, uint32_t reg, int idx);
1581
1582 /** intel_batchbuffer.c */
1583 void brw_load_register_mem(struct brw_context *brw,
1584 uint32_t reg,
1585 drm_intel_bo *bo,
1586 uint32_t read_domains, uint32_t write_domain,
1587 uint32_t offset);
1588
1589 /*======================================================================
1590 * brw_state_dump.c
1591 */
1592 void brw_debug_batch(struct brw_context *brw);
1593 void brw_annotate_aub(struct brw_context *brw);
1594
1595 /*======================================================================
1596 * brw_tex.c
1597 */
1598 void brw_validate_textures( struct brw_context *brw );
1599
1600
1601 /*======================================================================
1602 * brw_program.c
1603 */
1604 void brwInitFragProgFuncs( struct dd_function_table *functions );
1605
1606 int brw_get_scratch_size(int size);
1607 void brw_get_scratch_bo(struct brw_context *brw,
1608 drm_intel_bo **scratch_bo, int size);
1609 void brw_init_shader_time(struct brw_context *brw);
1610 int brw_get_shader_time_index(struct brw_context *brw,
1611 struct gl_shader_program *shader_prog,
1612 struct gl_program *prog,
1613 enum shader_time_shader_type type);
1614 void brw_collect_and_report_shader_time(struct brw_context *brw);
1615 void brw_destroy_shader_time(struct brw_context *brw);
1616
1617 /* brw_urb.c
1618 */
1619 void brw_upload_urb_fence(struct brw_context *brw);
1620
1621 /* brw_curbe.c
1622 */
1623 void brw_upload_cs_urb_state(struct brw_context *brw);
1624
1625 /* brw_fs_reg_allocate.cpp
1626 */
1627 void brw_fs_alloc_reg_sets(struct brw_context *brw);
1628
1629 /* brw_vec4_reg_allocate.cpp */
1630 void brw_vec4_alloc_reg_set(struct brw_context *brw);
1631
1632 /* brw_disasm.c */
1633 int brw_disasm (FILE *file, struct brw_instruction *inst, int gen);
1634
1635 /* brw_vs.c */
1636 gl_clip_plane *brw_select_clip_planes(struct gl_context *ctx);
1637
1638 /* brw_draw_upload.c */
1639 unsigned brw_get_vertex_surface_type(struct brw_context *brw,
1640 const struct gl_client_array *glarray);
1641 unsigned brw_get_index_type(GLenum type);
1642 void brw_prepare_vertices(struct brw_context *brw);
1643
1644 /* brw_wm_surface_state.c */
1645 void brw_init_surface_formats(struct brw_context *brw);
1646 void brw_create_constant_surface(struct brw_context *brw,
1647 drm_intel_bo *bo,
1648 uint32_t offset,
1649 uint32_t size,
1650 uint32_t *out_offset,
1651 bool dword_pitch);
1652 void brw_update_buffer_texture_surface(struct gl_context *ctx,
1653 unsigned unit,
1654 uint32_t *surf_offset);
1655 void
1656 brw_update_sol_surface(struct brw_context *brw,
1657 struct gl_buffer_object *buffer_obj,
1658 uint32_t *out_offset, unsigned num_vector_components,
1659 unsigned stride_dwords, unsigned offset_dwords);
1660 void brw_upload_ubo_surfaces(struct brw_context *brw,
1661 struct gl_shader *shader,
1662 struct brw_stage_state *stage_state,
1663 struct brw_stage_prog_data *prog_data);
1664 void brw_upload_abo_surfaces(struct brw_context *brw,
1665 struct gl_shader_program *prog,
1666 struct brw_stage_state *stage_state,
1667 struct brw_stage_prog_data *prog_data);
1668
1669 /* brw_surface_formats.c */
1670 bool brw_is_hiz_depth_format(struct brw_context *ctx, mesa_format format);
1671 bool brw_render_target_supported(struct brw_context *brw,
1672 struct gl_renderbuffer *rb);
1673 uint32_t brw_depth_format(struct brw_context *brw, mesa_format format);
1674
1675 /* brw_performance_monitor.c */
1676 void brw_init_performance_monitors(struct brw_context *brw);
1677 void brw_dump_perf_monitors(struct brw_context *brw);
1678 void brw_perf_monitor_new_batch(struct brw_context *brw);
1679 void brw_perf_monitor_finish_batch(struct brw_context *brw);
1680
1681 /* intel_buffer_objects.c */
1682 int brw_bo_map(struct brw_context *brw, drm_intel_bo *bo, int write_enable,
1683 const char *bo_name);
1684 int brw_bo_map_gtt(struct brw_context *brw, drm_intel_bo *bo,
1685 const char *bo_name);
1686
1687 /* intel_extensions.c */
1688 extern void intelInitExtensions(struct gl_context *ctx);
1689
1690 /* intel_state.c */
1691 extern int intel_translate_shadow_compare_func(GLenum func);
1692 extern int intel_translate_compare_func(GLenum func);
1693 extern int intel_translate_stencil_op(GLenum op);
1694 extern int intel_translate_logic_op(GLenum opcode);
1695
1696 /* intel_syncobj.c */
1697 void intel_init_syncobj_functions(struct dd_function_table *functions);
1698
1699 /* gen6_sol.c */
1700 struct gl_transform_feedback_object *
1701 brw_new_transform_feedback(struct gl_context *ctx, GLuint name);
1702 void
1703 brw_delete_transform_feedback(struct gl_context *ctx,
1704 struct gl_transform_feedback_object *obj);
1705 void
1706 brw_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
1707 struct gl_transform_feedback_object *obj);
1708 void
1709 brw_end_transform_feedback(struct gl_context *ctx,
1710 struct gl_transform_feedback_object *obj);
1711 GLsizei
1712 brw_get_transform_feedback_vertex_count(struct gl_context *ctx,
1713 struct gl_transform_feedback_object *obj,
1714 GLuint stream);
1715
1716 /* gen7_sol_state.c */
1717 void
1718 gen7_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
1719 struct gl_transform_feedback_object *obj);
1720 void
1721 gen7_end_transform_feedback(struct gl_context *ctx,
1722 struct gl_transform_feedback_object *obj);
1723 void
1724 gen7_pause_transform_feedback(struct gl_context *ctx,
1725 struct gl_transform_feedback_object *obj);
1726 void
1727 gen7_resume_transform_feedback(struct gl_context *ctx,
1728 struct gl_transform_feedback_object *obj);
1729
1730 /* brw_blorp_blit.cpp */
1731 GLbitfield
1732 brw_blorp_framebuffer(struct brw_context *brw,
1733 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1734 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
1735 GLbitfield mask, GLenum filter);
1736
1737 bool
1738 brw_blorp_copytexsubimage(struct brw_context *brw,
1739 struct gl_renderbuffer *src_rb,
1740 struct gl_texture_image *dst_image,
1741 int slice,
1742 int srcX0, int srcY0,
1743 int dstX0, int dstY0,
1744 int width, int height);
1745
1746 /* gen6_multisample_state.c */
1747 unsigned
1748 gen6_determine_sample_mask(struct brw_context *brw);
1749
1750 void
1751 gen6_emit_3dstate_multisample(struct brw_context *brw,
1752 unsigned num_samples);
1753 void
1754 gen6_emit_3dstate_sample_mask(struct brw_context *brw, unsigned mask);
1755 void
1756 gen6_get_sample_position(struct gl_context *ctx,
1757 struct gl_framebuffer *fb,
1758 GLuint index,
1759 GLfloat *result);
1760
1761 /* gen8_multisample_state.c */
1762 void gen8_emit_3dstate_multisample(struct brw_context *brw, unsigned num_samp);
1763 void gen8_emit_3dstate_sample_pattern(struct brw_context *brw);
1764
1765 /* gen7_urb.c */
1766 void
1767 gen7_emit_push_constant_state(struct brw_context *brw, unsigned vs_size,
1768 unsigned gs_size, unsigned fs_size);
1769
1770 void
1771 gen7_emit_urb_state(struct brw_context *brw,
1772 unsigned nr_vs_entries, unsigned vs_size,
1773 unsigned vs_start, unsigned nr_gs_entries,
1774 unsigned gs_size, unsigned gs_start);
1775
1776
1777 /* brw_reset.c */
1778 extern GLenum
1779 brw_get_graphics_reset_status(struct gl_context *ctx);
1780
1781 /*======================================================================
1782 * Inline conversion functions. These are better-typed than the
1783 * macros used previously:
1784 */
1785 static inline struct brw_context *
1786 brw_context( struct gl_context *ctx )
1787 {
1788 return (struct brw_context *)ctx;
1789 }
1790
1791 static inline struct brw_vertex_program *
1792 brw_vertex_program(struct gl_vertex_program *p)
1793 {
1794 return (struct brw_vertex_program *) p;
1795 }
1796
1797 static inline const struct brw_vertex_program *
1798 brw_vertex_program_const(const struct gl_vertex_program *p)
1799 {
1800 return (const struct brw_vertex_program *) p;
1801 }
1802
1803 static inline struct brw_geometry_program *
1804 brw_geometry_program(struct gl_geometry_program *p)
1805 {
1806 return (struct brw_geometry_program *) p;
1807 }
1808
1809 static inline struct brw_fragment_program *
1810 brw_fragment_program(struct gl_fragment_program *p)
1811 {
1812 return (struct brw_fragment_program *) p;
1813 }
1814
1815 static inline const struct brw_fragment_program *
1816 brw_fragment_program_const(const struct gl_fragment_program *p)
1817 {
1818 return (const struct brw_fragment_program *) p;
1819 }
1820
1821 /**
1822 * Pre-gen6, the register file of the EUs was shared between threads,
1823 * and each thread used some subset allocated on a 16-register block
1824 * granularity. The unit states wanted these block counts.
1825 */
1826 static inline int
1827 brw_register_blocks(int reg_count)
1828 {
1829 return ALIGN(reg_count, 16) / 16 - 1;
1830 }
1831
1832 static inline uint32_t
1833 brw_program_reloc(struct brw_context *brw, uint32_t state_offset,
1834 uint32_t prog_offset)
1835 {
1836 if (brw->gen >= 5) {
1837 /* Using state base address. */
1838 return prog_offset;
1839 }
1840
1841 drm_intel_bo_emit_reloc(brw->batch.bo,
1842 state_offset,
1843 brw->cache.bo,
1844 prog_offset,
1845 I915_GEM_DOMAIN_INSTRUCTION, 0);
1846
1847 return brw->cache.bo->offset64 + prog_offset;
1848 }
1849
1850 bool brw_do_cubemap_normalize(struct exec_list *instructions);
1851 bool brw_lower_texture_gradients(struct brw_context *brw,
1852 struct exec_list *instructions);
1853 bool brw_do_lower_unnormalized_offset(struct exec_list *instructions);
1854
1855 struct opcode_desc {
1856 char *name;
1857 int nsrc;
1858 int ndst;
1859 };
1860
1861 extern const struct opcode_desc opcode_descs[128];
1862 extern const char * const conditional_modifier[16];
1863 extern const char * const reg_encoding[8];
1864
1865 void
1866 brw_emit_depthbuffer(struct brw_context *brw);
1867
1868 void
1869 brw_emit_depth_stencil_hiz(struct brw_context *brw,
1870 struct intel_mipmap_tree *depth_mt,
1871 uint32_t depth_offset, uint32_t depthbuffer_format,
1872 uint32_t depth_surface_type,
1873 struct intel_mipmap_tree *stencil_mt,
1874 bool hiz, bool separate_stencil,
1875 uint32_t width, uint32_t height,
1876 uint32_t tile_x, uint32_t tile_y);
1877
1878 void
1879 gen7_emit_depth_stencil_hiz(struct brw_context *brw,
1880 struct intel_mipmap_tree *depth_mt,
1881 uint32_t depth_offset, uint32_t depthbuffer_format,
1882 uint32_t depth_surface_type,
1883 struct intel_mipmap_tree *stencil_mt,
1884 bool hiz, bool separate_stencil,
1885 uint32_t width, uint32_t height,
1886 uint32_t tile_x, uint32_t tile_y);
1887 void
1888 gen8_emit_depth_stencil_hiz(struct brw_context *brw,
1889 struct intel_mipmap_tree *depth_mt,
1890 uint32_t depth_offset, uint32_t depthbuffer_format,
1891 uint32_t depth_surface_type,
1892 struct intel_mipmap_tree *stencil_mt,
1893 bool hiz, bool separate_stencil,
1894 uint32_t width, uint32_t height,
1895 uint32_t tile_x, uint32_t tile_y);
1896
1897 void gen8_hiz_exec(struct brw_context *brw, struct intel_mipmap_tree *mt,
1898 unsigned int level, unsigned int layer, enum gen6_hiz_op op);
1899
1900 extern const GLuint prim_to_hw_prim[GL_TRIANGLE_STRIP_ADJACENCY+1];
1901
1902 void
1903 brw_setup_vec4_key_clip_info(struct brw_context *brw,
1904 struct brw_vec4_prog_key *key,
1905 bool program_uses_clip_distance);
1906
1907 void
1908 gen6_upload_vec4_push_constants(struct brw_context *brw,
1909 const struct gl_program *prog,
1910 const struct brw_vec4_prog_data *prog_data,
1911 struct brw_stage_state *stage_state,
1912 enum state_struct_type type);
1913
1914 /* ================================================================
1915 * From linux kernel i386 header files, copes with odd sizes better
1916 * than COPY_DWORDS would:
1917 * XXX Put this in src/mesa/main/imports.h ???
1918 */
1919 #if defined(i386) || defined(__i386__)
1920 static inline void * __memcpy(void * to, const void * from, size_t n)
1921 {
1922 int d0, d1, d2;
1923 __asm__ __volatile__(
1924 "rep ; movsl\n\t"
1925 "testb $2,%b4\n\t"
1926 "je 1f\n\t"
1927 "movsw\n"
1928 "1:\ttestb $1,%b4\n\t"
1929 "je 2f\n\t"
1930 "movsb\n"
1931 "2:"
1932 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
1933 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
1934 : "memory");
1935 return (to);
1936 }
1937 #else
1938 #define __memcpy(a,b,c) memcpy(a,b,c)
1939 #endif
1940
1941 #ifdef __cplusplus
1942 }
1943 #endif
1944
1945 #endif