nvc0: generate shader header for geometry programs
[mesa.git] / src / gallium / drivers / nvc0 / nvc0_program.h
1
2 #ifndef __NVC0_PROGRAM_H__
3 #define __NVC0_PROGRAM_H__
4
5 #include "pipe/p_state.h"
6 #include "tgsi/tgsi_scan.h"
7
8 #define NVC0_CAP_MAX_PROGRAM_TEMPS 64
9
10 #define NVC0_SHADER_HEADER_SIZE (20 * 4)
11
12 struct nvc0_program {
13 struct pipe_shader_state pipe;
14
15 ubyte type;
16 boolean translated;
17 ubyte max_gpr;
18
19 uint32_t *code;
20 unsigned code_base;
21 unsigned code_size;
22 unsigned parm_size;
23
24 uint32_t hdr[20];
25
26 uint32_t flags[2]; /* FP_ZORDER */
27
28 struct {
29 uint8_t edgeflag;
30 } vp;
31
32 void *relocs;
33 unsigned num_relocs;
34
35 struct nouveau_resource *res;
36 };
37
38 /* first 2 bits are written into the program header, for each input */
39 #define NVC0_INTERP_FLAT (1 << 0)
40 #define NVC0_INTERP_PERSPECTIVE (2 << 0)
41 #define NVC0_INTERP_LINEAR (3 << 0)
42 #define NVC0_INTERP_CENTROID (1 << 2)
43
44 /* analyze TGSI and see which TEMP[] are used as subroutine inputs/outputs */
45 struct nvc0_subroutine {
46 unsigned id;
47 unsigned first_insn;
48 uint32_t argv[NVC0_CAP_MAX_PROGRAM_TEMPS][4];
49 uint32_t retv[NVC0_CAP_MAX_PROGRAM_TEMPS][4];
50 };
51
52 struct nvc0_translation_info {
53 struct nvc0_program *prog;
54 struct tgsi_full_instruction *insns;
55 unsigned num_insns;
56 ubyte input_file;
57 ubyte output_file;
58 ubyte fp_depth_output;
59 uint16_t input_loc[PIPE_MAX_SHADER_INPUTS][4];
60 uint16_t output_loc[PIPE_MAX_SHADER_OUTPUTS][4];
61 uint16_t sysval_loc[TGSI_SEMANTIC_COUNT];
62 int input_access[PIPE_MAX_SHADER_INPUTS][4];
63 int output_access[PIPE_MAX_SHADER_OUTPUTS][4];
64 ubyte interp_mode[PIPE_MAX_SHADER_INPUTS];
65 boolean indirect_inputs;
66 boolean indirect_outputs;
67 boolean require_stores;
68 uint32_t *immd32;
69 ubyte *immd32_ty;
70 unsigned immd32_nr;
71 ubyte edgeflag_out;
72 struct nvc0_subroutine *subr;
73 unsigned num_subrs;
74 struct tgsi_shader_info scan;
75 };
76
77 int nvc0_generate_code(struct nvc0_translation_info *);
78
79 void nvc0_relocate_program(struct nvc0_program *,
80 uint32_t code_base, uint32_t data_base);
81
82 #endif