~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/drivers/nv50/codegen/nv50_ir_driver.h

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2011 Christoph Bumiller
 
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
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
8
 * and/or sell copies of the Software, and to permit persons to whom the
 
9
 * Software is furnished to do so, subject to the following conditions:
 
10
 *
 
11
 * The above copyright notice and this permission notice shall be included in
 
12
 * all copies or substantial portions of the Software.
 
13
 *
 
14
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
15
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
16
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 
17
 * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 
18
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
 
19
 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
20
 * SOFTWARE.
 
21
 */
 
22
 
 
23
#ifndef __NV50_IR_DRIVER_H__
 
24
#define __NV50_IR_DRIVER_H__
 
25
 
 
26
#include "pipe/p_shader_tokens.h"
 
27
 
 
28
#include "tgsi/tgsi_util.h"
 
29
#include "tgsi/tgsi_parse.h"
 
30
#include "tgsi/tgsi_scan.h"
 
31
 
 
32
/*
 
33
 * This struct constitutes linkage information in TGSI terminology.
 
34
 *
 
35
 * It is created by the code generator and handed to the pipe driver
 
36
 * for input/output slot assignment.
 
37
 */
 
38
struct nv50_ir_varying
 
39
{
 
40
   uint8_t slot[4]; /* native slots for xyzw (addresses in 32-bit words) */
 
41
 
 
42
   unsigned mask     : 4; /* vec4 mask */
 
43
   unsigned linear   : 1; /* linearly interpolated if true (and not flat) */
 
44
   unsigned flat     : 1;
 
45
   unsigned sc       : 1; /* special colour interpolation mode (SHADE_MODEL) */
 
46
   unsigned centroid : 1;
 
47
   unsigned patch    : 1; /* patch constant value */
 
48
   unsigned regular  : 1; /* driver-specific meaning (e.g. input in sreg) */
 
49
   unsigned input    : 1; /* indicates direction of system values */
 
50
   unsigned oread    : 1; /* true if output is read from parallel TCP */
 
51
 
 
52
   ubyte id; /* TGSI register index */
 
53
   ubyte sn; /* TGSI semantic name */
 
54
   ubyte si; /* TGSI semantic index */
 
55
};
 
56
 
 
57
#define NV50_PROGRAM_IR_TGSI 0
 
58
#define NV50_PROGRAM_IR_SM4  1
 
59
#define NV50_PROGRAM_IR_GLSL 2
 
60
#define NV50_PROGRAM_IR_LLVM 3
 
61
 
 
62
#ifdef DEBUG
 
63
# define NV50_IR_DEBUG_BASIC     (1 << 0)
 
64
# define NV50_IR_DEBUG_VERBOSE   (2 << 0)
 
65
# define NV50_IR_DEBUG_REG_ALLOC (1 << 2)
 
66
#else
 
67
# define NV50_IR_DEBUG_BASIC     0
 
68
# define NV50_IR_DEBUG_VERBOSE   0
 
69
# define NV50_IR_DEBUG_REG_ALLOC 0
 
70
#endif
 
71
 
 
72
#define NV50_SEMANTIC_CLIPDISTANCE  (TGSI_SEMANTIC_COUNT + 0)
 
73
#define NV50_SEMANTIC_TEXCOORD      (TGSI_SEMANTIC_COUNT + 1)
 
74
#define NV50_SEMANTIC_POINTCOORD    (TGSI_SEMANTIC_COUNT + 2)
 
75
#define NV50_SEMANTIC_VIEWPORTINDEX (TGSI_SEMANTIC_COUNT + 4)
 
76
#define NV50_SEMANTIC_LAYER         (TGSI_SEMANTIC_COUNT + 5)
 
77
#define NV50_SEMANTIC_INVOCATIONID  (TGSI_SEMANTIC_COUNT + 6)
 
78
#define NV50_SEMANTIC_TESSFACTOR    (TGSI_SEMANTIC_COUNT + 7)
 
79
#define NV50_SEMANTIC_TESSCOORD     (TGSI_SEMANTIC_COUNT + 8)
 
80
#define NV50_SEMANTIC_SAMPLEMASK    (TGSI_SEMANTIC_COUNT + 9)
 
81
#define NV50_SEMANTIC_COUNT         (TGSI_SEMANTIC_COUNT + 10)
 
82
 
 
83
#define NV50_TESS_PART_FRACT_ODD  0
 
84
#define NV50_TESS_PART_FRACT_EVEN 1
 
85
#define NV50_TESS_PART_POW2       2
 
86
#define NV50_TESS_PART_INTEGER    3
 
87
 
 
88
#define NV50_PRIM_PATCHES PIPE_PRIM_MAX
 
89
 
 
90
struct nv50_ir_prog_info
 
91
{
 
92
   uint16_t target; /* chipset (0x50, 0x84, 0xc0, ...) */
 
93
 
 
94
   uint8_t type; /* PIPE_SHADER */
 
95
 
 
96
   uint8_t optLevel; /* optimization level (0 to 3) */
 
97
   uint8_t dbgFlags;
 
98
 
 
99
   struct {
 
100
      int16_t maxGPR;     /* may be -1 if none used */
 
101
      int16_t maxOutput;
 
102
      uint32_t tlsSpace;  /* required local memory per thread */
 
103
      uint32_t *code;
 
104
      uint32_t codeSize;
 
105
      uint8_t sourceRep;  /* NV50_PROGRAM_IR */
 
106
      const void *source;
 
107
      void *relocData;
 
108
   } bin;
 
109
 
 
110
   struct nv50_ir_varying sv[PIPE_MAX_SHADER_INPUTS];
 
111
   struct nv50_ir_varying in[PIPE_MAX_SHADER_INPUTS];
 
112
   struct nv50_ir_varying out[PIPE_MAX_SHADER_OUTPUTS];
 
113
   uint8_t numInputs;
 
114
   uint8_t numOutputs;
 
115
   uint8_t numPatchConstants; /* also included in numInputs/numOutputs */
 
116
   uint8_t numSysVals;
 
117
 
 
118
   struct {
 
119
      uint32_t *buf;    /* for IMMEDIATE_ARRAY */
 
120
      uint16_t bufSize; /* size of immediate array */
 
121
      uint16_t count;   /* count of inline immediates */
 
122
      uint32_t *data;   /* inline immediate data */
 
123
      uint8_t *type;    /* for each vec4 (128 bit) */
 
124
   } immd;
 
125
 
 
126
   union {
 
127
      struct {
 
128
         uint32_t inputMask[4]; /* mask of attributes read (1 bit per scalar) */
 
129
      } vp;
 
130
      struct {
 
131
         uint8_t inputPatchSize;
 
132
         uint8_t outputPatchSize;
 
133
         uint8_t partitioning;    /* PIPE_TESS_PART */
 
134
         int8_t winding;          /* +1 (clockwise) / -1 (counter-clockwise) */
 
135
         uint8_t domain;          /* PIPE_PRIM_{QUADS,TRIANGLES,LINES} */
 
136
         uint8_t outputPrim;      /* PIPE_PRIM_{TRIANGLES,LINES,POINTS} */
 
137
      } tp;
 
138
      struct {
 
139
         uint8_t inputPrim;
 
140
         uint8_t outputPrim;
 
141
         unsigned instanceCount;
 
142
         unsigned maxVertices;
 
143
      } gp;
 
144
      struct {
 
145
         unsigned numColourResults;
 
146
         boolean writesDepth;
 
147
         boolean earlyFragTests;
 
148
         boolean separateFragData;
 
149
         boolean usesDiscard;
 
150
      } fp;
 
151
   } prop;
 
152
 
 
153
   struct {
 
154
      uint8_t clipDistance;      /* index of first clip distance output */
 
155
      uint8_t clipDistanceMask;  /* mask of clip distances defined */
 
156
      uint8_t cullDistanceMask;  /* clip distance mode (1 bit per output) */
 
157
      int8_t genUserClip;        /* request user clip planes for ClipVertex */
 
158
      uint8_t pointSize;         /* output index for PointSize */
 
159
      uint8_t vertexId;          /* system value index of VertexID */
 
160
      uint8_t edgeFlagIn;
 
161
      uint8_t edgeFlagOut;
 
162
      uint8_t fragDepth;         /* output index of FragDepth */
 
163
      uint8_t sampleMask;        /* output index of SampleMask */
 
164
      uint8_t backFaceColor[2];  /* input/output indices of back face colour */
 
165
      uint8_t globalAccess;      /* 1 for read, 2 for wr, 3 for rw */
 
166
   } io;
 
167
 
 
168
   /* driver callback to assign input/output locations */
 
169
   int (*assignSlots)(struct nv50_ir_prog_info *);
 
170
};
 
171
 
 
172
#ifdef __cplusplus
 
173
extern "C" {
 
174
#endif
 
175
 
 
176
extern int nv50_ir_generate_code(struct nv50_ir_prog_info *);
 
177
 
 
178
extern void nv50_ir_relocate_code(void *relocData, uint32_t *code,
 
179
                                  uint32_t codePos,
 
180
                                  uint32_t libPos,
 
181
                                  uint32_t dataPos);
 
182
 
 
183
/* obtain code that will be shared among programs */
 
184
extern void nv50_ir_get_target_library(uint32_t chipset,
 
185
                                       const uint32_t **code, uint32_t *size);
 
186
 
 
187
#ifdef __cplusplus
 
188
}
 
189
#endif
 
190
 
 
191
#endif // __NV50_IR_DRIVER_H__