1b8e80941Smrg/*
2b8e80941Smrg * Copyright © 2006 - 2017 Intel Corporation
3b8e80941Smrg *
4b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a
5b8e80941Smrg * copy of this software and associated documentation files (the "Software"),
6b8e80941Smrg * to deal in the Software without restriction, including without limitation
7b8e80941Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8b8e80941Smrg * and/or sell copies of the Software, and to permit persons to whom the
9b8e80941Smrg * Software is furnished to do so, subject to the following conditions:
10b8e80941Smrg *
11b8e80941Smrg * The above copyright notice and this permission notice (including the next
12b8e80941Smrg * paragraph) shall be included in all copies or substantial portions of the
13b8e80941Smrg * Software.
14b8e80941Smrg *
15b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18b8e80941Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19b8e80941Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20b8e80941Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21b8e80941Smrg * IN THE SOFTWARE.
22b8e80941Smrg */
23b8e80941Smrg
24b8e80941Smrg#include "brw_clip.h"
25b8e80941Smrg
26b8e80941Smrg#include "dev/gen_debug.h"
27b8e80941Smrg
28b8e80941Smrgconst unsigned *
29b8e80941Smrgbrw_compile_clip(const struct brw_compiler *compiler,
30b8e80941Smrg                 void *mem_ctx,
31b8e80941Smrg                 const struct brw_clip_prog_key *key,
32b8e80941Smrg                 struct brw_clip_prog_data *prog_data,
33b8e80941Smrg                 struct brw_vue_map *vue_map,
34b8e80941Smrg                 unsigned *final_assembly_size)
35b8e80941Smrg{
36b8e80941Smrg   struct brw_clip_compile c;
37b8e80941Smrg   memset(&c, 0, sizeof(c));
38b8e80941Smrg
39b8e80941Smrg   /* Begin the compilation:
40b8e80941Smrg    */
41b8e80941Smrg   brw_init_codegen(compiler->devinfo, &c.func, mem_ctx);
42b8e80941Smrg
43b8e80941Smrg   c.func.single_program_flow = 1;
44b8e80941Smrg
45b8e80941Smrg   c.key = *key;
46b8e80941Smrg   c.vue_map = *vue_map;
47b8e80941Smrg
48b8e80941Smrg   /* nr_regs is the number of registers filled by reading data from the VUE.
49b8e80941Smrg    * This program accesses the entire VUE, so nr_regs needs to be the size of
50b8e80941Smrg    * the VUE (measured in pairs, since two slots are stored in each
51b8e80941Smrg    * register).
52b8e80941Smrg    */
53b8e80941Smrg   c.nr_regs = (c.vue_map.num_slots + 1)/2;
54b8e80941Smrg
55b8e80941Smrg   c.prog_data.clip_mode = c.key.clip_mode; /* XXX */
56b8e80941Smrg
57b8e80941Smrg   /* For some reason the thread is spawned with only 4 channels
58b8e80941Smrg    * unmasked.
59b8e80941Smrg    */
60b8e80941Smrg   brw_set_default_mask_control(&c.func, BRW_MASK_DISABLE);
61b8e80941Smrg
62b8e80941Smrg   /* Would ideally have the option of producing a program which could
63b8e80941Smrg    * do all three:
64b8e80941Smrg    */
65b8e80941Smrg   switch (key->primitive) {
66b8e80941Smrg   case GL_TRIANGLES:
67b8e80941Smrg      if (key->do_unfilled)
68b8e80941Smrg	 brw_emit_unfilled_clip( &c );
69b8e80941Smrg      else
70b8e80941Smrg	 brw_emit_tri_clip( &c );
71b8e80941Smrg      break;
72b8e80941Smrg   case GL_LINES:
73b8e80941Smrg      brw_emit_line_clip( &c );
74b8e80941Smrg      break;
75b8e80941Smrg   case GL_POINTS:
76b8e80941Smrg      brw_emit_point_clip( &c );
77b8e80941Smrg      break;
78b8e80941Smrg   default:
79b8e80941Smrg      unreachable("not reached");
80b8e80941Smrg   }
81b8e80941Smrg
82b8e80941Smrg   brw_compact_instructions(&c.func, 0, NULL);
83b8e80941Smrg
84b8e80941Smrg   *prog_data = c.prog_data;
85b8e80941Smrg
86b8e80941Smrg   const unsigned *program = brw_get_program(&c.func, final_assembly_size);
87b8e80941Smrg
88b8e80941Smrg   if (unlikely(INTEL_DEBUG & DEBUG_CLIP)) {
89b8e80941Smrg      fprintf(stderr, "clip:\n");
90b8e80941Smrg      brw_disassemble(compiler->devinfo,
91b8e80941Smrg                      program, 0, *final_assembly_size, stderr);
92b8e80941Smrg      fprintf(stderr, "\n");
93b8e80941Smrg   }
94b8e80941Smrg
95b8e80941Smrg   return program;
96b8e80941Smrg}
97