intel/tools: Fix build with glibc < 2.27.
[mesa.git] / src / intel / tools / i965_asm.h
1 /*
2 * Copyright © 2018 Intel Corporation
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 */
24
25 #ifndef __I965_ASM_H__
26 #define __I965_ASM_H__
27
28 #include <inttypes.h>
29 #include <stdbool.h>
30 #include <assert.h>
31
32 #include "compiler/brw_reg.h"
33 #include "compiler/brw_reg_type.h"
34 #include "compiler/brw_eu_defines.h"
35 #include "compiler/brw_inst.h"
36 #include "compiler/brw_eu.h"
37 #include "dev/gen_device_info.h"
38
39 /* glibc < 2.27 defines OVERFLOW in /usr/include/math.h. */
40 #undef OVERFLOW
41
42 void yyerror (char *);
43 int yyparse(void);
44 int yylex(void);
45 char *lex_text(void);
46
47 extern struct brw_codegen *p;
48 extern int errors;
49 extern char *input_filename;
50
51 struct condition {
52 unsigned cond_modifier:4;
53 unsigned flag_reg_nr:1;
54 unsigned flag_subreg_nr:1;
55 };
56
57 struct predicate {
58 unsigned pred_control:4;
59 unsigned pred_inv:1;
60 unsigned flag_reg_nr:1;
61 unsigned flag_subreg_nr:1;
62 };
63
64 struct options {
65 unsigned access_mode:1;
66 unsigned compression_control:2;
67 unsigned thread_control:2;
68 unsigned no_dd_check:1; // Dependency control
69 unsigned no_dd_clear:1; // Dependency control
70 unsigned mask_control:1;
71 unsigned debug_control:1;
72 unsigned acc_wr_control:1;
73 unsigned end_of_thread:1;
74 unsigned compaction:1;
75 unsigned qtr_ctrl:2;
76 unsigned nib_ctrl:1;
77 unsigned is_compr:1;
78 };
79
80 #endif /* __I965_ASM_H__ */