panfrost: Pre-allocate memory for pool
[mesa.git] / src / panfrost / midgard / midgard_ops.h
1 /* Copyright (c) 2018-2019 Alyssa Rosenzweig (alyssa@rosenzweig.io)
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 * copies of the Software, and to permit persons to whom the Software is
8 * furnished to do so, subject to the following conditions:
9 *
10 * The above copyright notice and this permission notice shall be included in
11 * all copies or substantial portions of the Software.
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 * THE SOFTWARE.
20 */
21
22 #ifndef __MIDGARD_OPS
23 #define __MIDGARD_OPS
24
25 #include "helpers.h"
26
27 /* Forward declare */
28
29 extern struct mir_op_props alu_opcode_props[256];
30 extern struct mir_ldst_op_props load_store_opcode_props[256];
31 extern struct mir_tag_props midgard_tag_props[16];
32
33 #define OP_IS_STORE(op) (load_store_opcode_props[op].props & LDST_STORE)
34 #define OP_HAS_ADDRESS(op) (load_store_opcode_props[op].props & LDST_ADDRESS)
35
36 /* Is this opcode that of an integer (regardless of signedness)? Instruction
37 * names authoritatively determine types */
38
39 static inline bool
40 midgard_is_integer_op(int op)
41 {
42 const char *name = alu_opcode_props[op].name;
43
44 if (!name)
45 return false;
46
47 return (name[0] == 'i') || (name[0] == 'u');
48 }
49
50 /* Does this opcode *write* an integer? Same as is_integer_op, unless it's a
51 * conversion between int<->float in which case we do the opposite */
52
53 static inline bool
54 midgard_is_integer_out_op(int op)
55 {
56 bool is_int = midgard_is_integer_op(op);
57 bool is_conversion = alu_opcode_props[op].props & OP_TYPE_CONVERT;
58
59 return is_int ^ is_conversion;
60 }
61
62 /* Determines effective writemask, taking quirks and expansion into account */
63
64 static inline unsigned
65 effective_writemask(midgard_alu_op op, unsigned existing_mask)
66 {
67 /* Channel count is off-by-one to fit in two-bits (0 channel makes no
68 * sense) */
69
70 unsigned channel_count = GET_CHANNEL_COUNT(alu_opcode_props[op].props);
71
72 /* If there is a fixed channel count, construct the appropriate mask */
73
74 if (channel_count)
75 return (1 << channel_count) - 1;
76
77 return existing_mask;
78 };
79
80 #endif