1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
/*
* Copyright (C) 2019 Google.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "util/ralloc.h"
#include "ir3.h"
static bool
is_fp16_conv(struct ir3_instruction *instr)
{
if (instr->opc != OPC_MOV)
return false;
struct ir3_register *dst = instr->regs[0];
struct ir3_register *src = instr->regs[1];
/* disallow conversions that cannot be folded into
* alu instructions:
*/
if (dst->flags & (IR3_REG_EVEN | IR3_REG_POS_INF))
return false;
if (dst->flags & (IR3_REG_RELATIV | IR3_REG_ARRAY))
return false;
if (src->flags & (IR3_REG_RELATIV | IR3_REG_ARRAY))
return false;
if (instr->cat1.src_type == TYPE_F32 &&
instr->cat1.dst_type == TYPE_F16)
return true;
if (instr->cat1.src_type == TYPE_F16 &&
instr->cat1.dst_type == TYPE_F32)
return true;
return false;
}
static bool
all_uses_fp16_conv(struct ir3_instruction *conv_src)
{
foreach_ssa_use (use, conv_src)
if (!is_fp16_conv(use))
return false;
return true;
}
static void
rewrite_uses(struct ir3_instruction *conv, struct ir3_instruction *replace)
{
foreach_ssa_use (use, conv) {
struct ir3_instruction *src;
foreach_ssa_src_n (src, n, use) {
if (src == conv)
use->regs[n]->instr = replace;
}
}
}
static void
try_conversion_folding(struct ir3_instruction *conv)
{
struct ir3_instruction *src;
if (!is_fp16_conv(conv))
return;
src = ssa(conv->regs[1]);
if (!is_alu(src))
return;
/* avoid folding f2f32(f2f16) together, in cases where this is legal to
* do (glsl) nir should have handled that for us already:
*/
if (is_fp16_conv(src))
return;
switch (src->opc) {
case OPC_SEL_B32:
case OPC_SEL_B16:
case OPC_MAX_F:
case OPC_MIN_F:
case OPC_SIGN_F:
case OPC_ABSNEG_F:
return;
default:
break;
}
if (!all_uses_fp16_conv(src))
return;
if (src->opc == OPC_MOV) {
if (src->cat1.dst_type == src->cat1.src_type) {
/* If we're folding a conversion into a bitwise move, we need to
* change the dst type to F32 to get the right behavior, since we
* could be moving a float with a u32.u32 move.
*/
src->cat1.dst_type = conv->cat1.dst_type;
src->cat1.src_type = conv->cat1.src_type;
} else {
/* Otherwise, for typechanging movs, we can just change the dst
* type to F16 to collaps the two conversions. For example
* cov.s32f32 follwed by cov.f32f16 becomes cov.s32f16.
*/
src->cat1.dst_type = conv->cat1.dst_type;
}
}
if (conv->regs[0]->flags & IR3_REG_HALF) {
src->regs[0]->flags |= IR3_REG_HALF;
} else {
src->regs[0]->flags &= ~IR3_REG_HALF;
}
rewrite_uses(conv, src);
}
void
ir3_cf(struct ir3 *ir)
{
void *mem_ctx = ralloc_context(NULL);
ir3_find_ssa_uses(ir, mem_ctx, false);
foreach_block (block, &ir->block_list) {
foreach_instr_safe (instr, &block->instr_list) {
try_conversion_folding(instr);
}
}
ralloc_free(mem_ctx);
}
|