genxml: Add macros and #includes for gens 4-6
[mesa.git] / src / intel / genxml / gen_macros.h
1 /*
2 * Copyright © 2015 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
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #pragma once
25
26 /* Macros for handling per-gen compilation.
27 *
28 * The prefixing macros GENX() and genX() automatically prefix whatever you
29 * give them by GENX_ or genX_ where X is the gen number.
30 *
31 * You can do pseudo-runtime checks in your function such as
32 *
33 * if (GEN_GEN > 8 || GEN_IS_HASWELL) {
34 * // Do something
35 * }
36 *
37 * The contents of the if statement must be valid regardless of gen, but
38 * the if will get compiled away on everything except haswell.
39 *
40 * For places where you really do have a compile-time conflict, you can
41 * use preprocessor logic:
42 *
43 * #if (GEN_GEN > 8 || GEN_IS_HASWELL)
44 * // Do something
45 * #endif
46 *
47 * However, it is strongly recommended that the former be used whenever
48 * possible.
49 */
50
51 /* Base macro defined on the command line. If we don't have this, we can't
52 * do anything.
53 */
54 #ifndef GEN_VERSIONx10
55 # error "The GEN_VERSIONx10 macro must be defined"
56 #endif
57
58 #define GEN_GEN ((GEN_VERSIONx10) / 10)
59 #define GEN_IS_HASWELL ((GEN_VERSIONx10) == 75)
60 #define GEN_IS_G4X ((GEN_VERSIONx10) == 45)
61
62 /* Prefixing macros */
63 #if (GEN_VERSIONx10 == 40)
64 # define GENX(X) GEN4_##X
65 # define genX(x) gen4_##x
66 #elif (GEN_VERSIONx10 == 45)
67 # define GENX(X) GEN45_##X
68 # define genX(x) gen45_##x
69 #elif (GEN_VERSIONx10 == 50)
70 # define GENX(X) GEN5_##X
71 # define genX(x) gen5_##x
72 #elif (GEN_VERSIONx10 == 60)
73 # define GENX(X) GEN6_##X
74 # define genX(x) gen6_##x
75 #elif (GEN_VERSIONx10 == 70)
76 # define GENX(X) GEN7_##X
77 # define genX(x) gen7_##x
78 #elif (GEN_VERSIONx10 == 75)
79 # define GENX(X) GEN75_##X
80 # define genX(x) gen75_##x
81 #elif (GEN_VERSIONx10 == 80)
82 # define GENX(X) GEN8_##X
83 # define genX(x) gen8_##x
84 #elif (GEN_VERSIONx10 == 90)
85 # define GENX(X) GEN9_##X
86 # define genX(x) gen9_##x
87 #else
88 # error "Need to add prefixing macros for this gen"
89 #endif