blob: c1c8d695be37ddcfc43571d556aa38fbd42be626 [file] [log] [blame]
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001/*
2 * Copyright (C) 2020 Collabora Ltd.
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 * Authors (Collabora):
24 * Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
25 */
26
27#ifndef __BIFROST_COMPILER_H
28#define __BIFROST_COMPILER_H
29
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -050030#include "bifrost.h"
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050031#include "compiler/nir/nir.h"
Alyssa Rosenzweig9b8cb9f2020-03-09 20:19:29 -040032#include "panfrost/util/pan_ir.h"
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050033
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050034/* Bifrost opcodes are tricky -- the same op may exist on both FMA and
35 * ADD with two completely different opcodes, and opcodes can be varying
36 * length in some cases. Then we have different opcodes for int vs float
37 * and then sometimes even for different typesizes. Further, virtually
38 * every op has a number of flags which depend on the op. In constrast
39 * to Midgard where you have a strict ALU/LDST/TEX division and within
40 * ALU you have strict int/float and that's it... here it's a *lot* more
41 * involved. As such, we use something much higher level for our IR,
42 * encoding "classes" of operations, letting the opcode details get
43 * sorted out at emit time.
44 *
45 * Please keep this list alphabetized. Please use a dictionary if you
46 * don't know how to do that.
47 */
48
49enum bi_class {
50 BI_ADD,
51 BI_ATEST,
52 BI_BRANCH,
53 BI_CMP,
54 BI_BLEND,
55 BI_BITWISE,
56 BI_CONVERT,
57 BI_CSEL,
58 BI_DISCARD,
59 BI_FMA,
60 BI_FREXP,
61 BI_LOAD,
Alyssa Rosenzweig1ead0d32020-03-06 09:52:09 -050062 BI_LOAD_UNIFORM,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050063 BI_LOAD_ATTR,
64 BI_LOAD_VAR,
65 BI_LOAD_VAR_ADDRESS,
66 BI_MINMAX,
67 BI_MOV,
68 BI_SHIFT,
69 BI_STORE,
70 BI_STORE_VAR,
71 BI_SPECIAL, /* _FAST, _TABLE on supported GPUs */
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -050072 BI_SWIZZLE,
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050073 BI_TEX,
74 BI_ROUND,
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050075 BI_NUM_CLASSES
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -050076};
77
Alyssa Rosenzweig7ac62122020-03-02 20:38:26 -050078/* Properties of a class... */
79extern unsigned bi_class_props[BI_NUM_CLASSES];
80
81/* abs/neg/outmod valid for a float op */
82#define BI_MODS (1 << 0)
83
Alyssa Rosenzweig34165c72020-03-02 20:46:37 -050084/* Generic enough that little class-specific information is required. In other
85 * words, it acts as a "normal" ALU op, even if the encoding ends up being
86 * irregular enough to warrant a separate class */
87#define BI_GENERIC (1 << 1)
88
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -050089/* Accepts a bifrost_roundmode */
90#define BI_ROUNDMODE (1 << 2)
91
Alyssa Rosenzweig99f3c1f2020-03-02 21:53:13 -050092/* Can be scheduled to FMA */
93#define BI_SCHED_FMA (1 << 3)
94
95/* Can be scheduled to ADD */
96#define BI_SCHED_ADD (1 << 4)
97
98/* Most ALU ops can do either, actually */
99#define BI_SCHED_ALL (BI_SCHED_FMA | BI_SCHED_ADD)
100
Alyssa Rosenzweigc70a1982020-03-03 08:16:50 -0500101/* Along with setting BI_SCHED_ADD, eats up the entire cycle, so FMA must be
102 * nopped out. Used for _FAST operations. */
103#define BI_SCHED_SLOW (1 << 5)
104
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500105/* Swizzling allowed for the 8/16-bit source */
106#define BI_SWIZZLABLE (1 << 6)
107
Alyssa Rosenzweig07228a62020-03-03 13:55:33 -0500108/* For scheduling purposes this is a high latency instruction and must be at
109 * the end of a clause. Implies ADD */
110#define BI_SCHED_HI_LATENCY ((1 << 7) | BI_SCHED_ADD)
111
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500112/* It can't get any worse than csel4... can it? */
113#define BIR_SRC_COUNT 4
114
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500115/* BI_LD_VARY */
116struct bi_load_vary {
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500117 enum bifrost_interp_mode interp_mode;
118 bool reuse;
119 bool flat;
120};
121
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500122/* BI_BRANCH encoding the details of the branch itself as well as a pointer to
123 * the target. We forward declare bi_block since this is mildly circular (not
124 * strictly, but this order of the file makes more sense I think)
125 *
126 * We define our own enum of conditions since the conditions in the hardware
127 * packed in crazy ways that would make manipulation unweildly (meaning changes
128 * based on port swapping, etc), so we defer dealing with that until emit time.
129 * Likewise, we expose NIR types instead of the crazy branch types, although
130 * the restrictions do eventually apply of course. */
131
132struct bi_block;
133
134enum bi_cond {
135 BI_COND_ALWAYS,
136 BI_COND_LT,
137 BI_COND_LE,
138 BI_COND_GE,
139 BI_COND_GT,
140 BI_COND_EQ,
141 BI_COND_NE,
142};
143
144struct bi_branch {
145 /* Types are specified in src_types and must be compatible (either both
146 * int, or both float, 16/32, and same size or 32/16 if float. Types
147 * ignored if BI_COND_ALWAYS is set for an unconditional branch. */
148
149 enum bi_cond cond;
150 struct bi_block *target;
151};
152
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500153/* Opcodes within a class */
154enum bi_minmax_op {
155 BI_MINMAX_MIN,
156 BI_MINMAX_MAX
157};
158
159enum bi_bitwise_op {
160 BI_BITWISE_AND,
161 BI_BITWISE_OR,
162 BI_BITWISE_XOR
163};
164
165enum bi_round_op {
166 BI_ROUND_MODE, /* use round mode */
167 BI_ROUND_ROUND /* i.e.: fround() */
168};
169
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400170enum bi_special_op {
171 BI_SPECIAL_FRCP,
172 BI_SPECIAL_FRSQ,
173 BI_SPECIAL_FATAN,
174 BI_SPECIAL_FSIN,
175 BI_SPECIAL_FCOS,
176 BI_SPECIAL_FEXP,
177 BI_SPECIAL_FLOG2,
178 BI_SPECIAL_FLOGE
179};
180
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500181typedef struct {
182 struct list_head link; /* Must be first */
183 enum bi_class type;
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500184
185 /* Indices, see bir_ssa_index etc. Note zero is special cased
186 * to "no argument" */
187 unsigned dest;
188 unsigned src[BIR_SRC_COUNT];
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500189
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400190 /* If one of the sources has BIR_INDEX_CONSTANT */
Alyssa Rosenzweigb5bdd892020-03-03 07:47:29 -0500191 union {
192 uint64_t u64;
193 uint32_t u32;
194 uint16_t u16[2];
195 uint8_t u8[4];
196 } constant;
197
Alyssa Rosenzweig29acd7b2020-03-02 20:40:52 -0500198 /* Floating-point modifiers, type/class permitting. If not
199 * allowed for the type/class, these are ignored. */
200 enum bifrost_outmod outmod;
201 bool src_abs[BIR_SRC_COUNT];
202 bool src_neg[BIR_SRC_COUNT];
Alyssa Rosenzweigd69bf8d2020-03-02 20:52:36 -0500203
204 /* Round mode (requires BI_ROUNDMODE) */
205 enum bifrost_roundmode roundmode;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500206
Alyssa Rosenzweige9d480c2020-03-09 14:25:00 -0400207 /* Writemask (bit for each affected byte). This is quite restricted --
208 * ALU ops can only write to a single channel (exception: <32 in which
209 * you can write to 32/N contiguous aligned channels). Load/store can
210 * only write to all channels at once, in a sense. But it's still
211 * better to use this generic form than have synthetic ops flying
212 * about, since we're not essentially vector for RA purposes. */
213 uint16_t writemask;
214
Alyssa Rosenzweigc42002d2020-03-02 22:03:05 -0500215 /* Destination type. Usually the type of the instruction
216 * itself, but if sources and destination have different
217 * types, the type of the destination wins (so f2i would be
218 * int). Zero if there is no destination. Bitsize included */
219 nir_alu_type dest_type;
220
Alyssa Rosenzweig8929fe02020-03-03 08:37:15 -0500221 /* Source types if required by the class */
222 nir_alu_type src_types[BIR_SRC_COUNT];
223
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400224 /* If the source type is 8-bit or 16-bit such that SIMD is possible,
225 * and the class has BI_SWIZZLABLE, this is a swizzle in the usual
226 * sense. On non-SIMD instructions, it can be used for component
227 * selection, so we don't have to special case extraction. */
228 uint8_t swizzle[BIR_SRC_COUNT][NIR_MAX_VEC_COMPONENTS];
Alyssa Rosenzweig5896db92020-03-03 08:35:51 -0500229
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500230 /* A class-specific op from which the actual opcode can be derived
231 * (along with the above information) */
232
233 union {
234 enum bi_minmax_op minmax;
235 enum bi_bitwise_op bitwise;
236 enum bi_round_op round;
Alyssa Rosenzweigb674e392020-03-09 21:20:03 -0400237 enum bi_special_op special;
Alyssa Rosenzweig44ebc272020-03-03 07:58:05 -0500238 } op;
239
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500240 /* Union for class-specific information */
241 union {
242 enum bifrost_minmax_mode minmax;
Alyssa Rosenzweig9643b9d2020-03-02 21:48:51 -0500243 struct bi_load_vary load_vary;
Alyssa Rosenzweig47451bb2020-03-03 13:48:13 -0500244 struct bi_branch branch;
Alyssa Rosenzweig546c3012020-03-05 07:46:00 -0500245
246 /* For CSEL, the comparison op. BI_COND_ALWAYS doesn't make
247 * sense here but you can always just use a move for that */
248 enum bi_cond csel_cond;
Alyssa Rosenzweig92a4f262020-03-06 09:25:58 -0500249
250 /* For BLEND -- the location 0-7 */
251 unsigned blend_location;
Alyssa Rosenzweigb93aec62020-03-02 20:53:47 -0500252 };
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500253} bi_instruction;
254
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500255/* Scheduling takes place in two steps. Step 1 groups instructions within a
256 * block into distinct clauses (bi_clause). Step 2 schedules instructions
257 * within a clause into FMA/ADD pairs (bi_bundle).
258 *
259 * A bi_bundle contains two paired instruction pointers. If a slot is unfilled,
260 * leave it NULL; the emitter will fill in a nop.
261 */
262
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500263typedef struct {
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500264 bi_instruction *fma;
265 bi_instruction *add;
266} bi_bundle;
267
268typedef struct {
269 struct list_head link;
270
271 /* A clause can have 8 instructions in bundled FMA/ADD sense, so there
272 * can be 8 bundles. But each bundle can have both an FMA and an ADD,
273 * so a clause can have up to 16 bi_instructions. Whether bundles or
274 * instructions are used depends on where in scheduling we are. */
275
276 unsigned instruction_count;
277 unsigned bundle_count;
278
279 union {
280 bi_instruction *instructions[16];
281 bi_bundle bundles[8];
282 };
Alyssa Rosenzweigfba1d122020-03-03 08:09:18 -0500283
284 /* For scoreboarding -- the clause ID (this is not globally unique!)
285 * and its dependencies in terms of other clauses, computed during
286 * scheduling and used when emitting code. Dependencies expressed as a
287 * bitfield matching the hardware, except shifted by a clause (the
288 * shift back to the ISA's off-by-one encoding is worked out when
289 * emitting clauses) */
290 unsigned scoreboard_id;
291 uint8_t dependencies;
292
293 /* Back-to-back corresponds directly to the back-to-back bit. Branch
294 * conditional corresponds to the branch conditional bit except that in
295 * the emitted code it's always set if back-to-bit is, whereas we use
296 * the actual value (without back-to-back so to speak) internally */
297 bool back_to_back;
298 bool branch_conditional;
299
300 /* Corresponds to the usual bit but shifted by a clause */
301 bool data_register_write_barrier;
Alyssa Rosenzweigd3370bd2020-03-03 13:01:41 -0500302
303 /* Constants read by this clause. ISA limit. */
304 uint64_t constants[8];
305 unsigned constant_count;
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500306} bi_clause;
307
308typedef struct bi_block {
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500309 struct list_head link; /* must be first */
Alyssa Rosenzweiga35854c2020-03-02 22:00:07 -0500310 unsigned name; /* Just for pretty-printing */
311
312 /* If true, uses clauses; if false, uses instructions */
313 bool scheduled;
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500314 struct list_head instructions; /* pre-schedule, list of bi_instructions */
315 struct list_head clauses; /* list of bi_clause */
Alyssa Rosenzweig2afddc42020-03-03 13:47:13 -0500316
317 /* Control flow graph */
318 struct set *predecessors;
319 struct bi_block *successors[2];
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500320} bi_block;
321
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500322typedef struct {
323 nir_shader *nir;
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -0500324 gl_shader_stage stage;
Alyssa Rosenzweige7dc2a72020-03-02 20:06:34 -0500325 struct list_head blocks; /* list of bi_block */
Alyssa Rosenzweig0b26cb12020-03-03 14:27:05 -0500326 uint32_t quirks;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500327
328 /* During NIR->BIR */
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500329 nir_function_impl *impl;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500330 bi_block *current_block;
331 unsigned block_name_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500332 bi_block *after_block;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500333 bi_block *break_block;
334 bi_block *continue_block;
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500335 bool emitted_atest;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500336
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500337 /* For creating temporaries */
338 unsigned temp_alloc;
339
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -0500340 /* Stats for shader-db */
341 unsigned instruction_count;
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -0500342 unsigned loop_count;
Alyssa Rosenzweig55dab922020-03-05 16:44:49 -0500343} bi_context;
344
345static inline bi_instruction *
346bi_emit(bi_context *ctx, bi_instruction ins)
347{
348 bi_instruction *u = rzalloc(ctx, bi_instruction);
349 memcpy(u, &ins, sizeof(ins));
350 list_addtail(&u->link, &ctx->current_block->instructions);
351 return u;
352}
353
354static inline void
355bi_remove_instruction(bi_instruction *ins)
356{
357 list_del(&ins->link);
358}
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500359
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500360/* So we can distinguish between SSA/reg/sentinel quickly */
361#define BIR_NO_ARG (0)
362#define BIR_IS_REG (1)
363
Alyssa Rosenzweiga2c12652020-03-03 07:45:33 -0500364/* If high bits are set, instead of SSA/registers, we have specials indexed by
365 * the low bits if necessary.
366 *
367 * Fixed register: do not allocate register, do not collect $200.
368 * Uniform: access a uniform register given by low bits.
369 * Constant: access the specified constant
370 * Zero: special cased to avoid wasting a constant
371 */
372
373#define BIR_INDEX_REGISTER (1 << 31)
374#define BIR_INDEX_UNIFORM (1 << 30)
375#define BIR_INDEX_CONSTANT (1 << 29)
376#define BIR_INDEX_ZERO (1 << 28)
377
378/* Keep me synced please so we can check src & BIR_SPECIAL */
379
380#define BIR_SPECIAL ((BIR_INDEX_REGISTER | BIR_INDEX_UNIFORM) | \
381 (BIR_INDEX_CONSTANT | BIR_INDEX_ZERO)
382
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500383static inline unsigned
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -0500384bi_make_temp(bi_context *ctx)
385{
386 return (ctx->impl->ssa_alloc + 1 + ctx->temp_alloc++) << 1;
387}
388
389static inline unsigned
390bi_make_temp_reg(bi_context *ctx)
391{
392 return ((ctx->impl->reg_alloc + ctx->temp_alloc++) << 1) | BIR_IS_REG;
393}
394
395static inline unsigned
Alyssa Rosenzweig230be612020-03-02 20:24:03 -0500396bir_ssa_index(nir_ssa_def *ssa)
397{
398 /* Off-by-one ensures BIR_NO_ARG is skipped */
399 return ((ssa->index + 1) << 1) | 0;
400}
401
402static inline unsigned
403bir_src_index(nir_src *src)
404{
405 if (src->is_ssa)
406 return bir_ssa_index(src->ssa);
407 else {
408 assert(!src->reg.indirect);
409 return (src->reg.reg->index << 1) | BIR_IS_REG;
410 }
411}
412
413static inline unsigned
414bir_dest_index(nir_dest *dst)
415{
416 if (dst->is_ssa)
417 return bir_ssa_index(&dst->ssa);
418 else {
419 assert(!dst->reg.indirect);
420 return (dst->reg.reg->index << 1) | BIR_IS_REG;
421 }
422}
423
Alyssa Rosenzweig8ec67182020-03-03 14:32:28 -0500424/* Iterators for Bifrost IR */
425
426#define bi_foreach_block(ctx, v) \
427 list_for_each_entry(bi_block, v, &ctx->blocks, link)
428
429#define bi_foreach_block_from(ctx, from, v) \
430 list_for_each_entry_from(bi_block, v, from, &ctx->blocks, link)
431
432#define bi_foreach_instr_in_block(block, v) \
433 list_for_each_entry(bi_instruction, v, &block->instructions, link)
434
435#define bi_foreach_instr_in_block_rev(block, v) \
436 list_for_each_entry_rev(bi_instruction, v, &block->instructions, link)
437
438#define bi_foreach_instr_in_block_safe(block, v) \
439 list_for_each_entry_safe(bi_instruction, v, &block->instructions, link)
440
441#define bi_foreach_instr_in_block_safe_rev(block, v) \
442 list_for_each_entry_safe_rev(bi_instruction, v, &block->instructions, link)
443
444#define bi_foreach_instr_in_block_from(block, v, from) \
445 list_for_each_entry_from(bi_instruction, v, from, &block->instructions, link)
446
447#define bi_foreach_instr_in_block_from_rev(block, v, from) \
448 list_for_each_entry_from_rev(bi_instruction, v, from, &block->instructions, link)
449
450#define bi_foreach_clause_in_block(block, v) \
451 list_for_each_entry(bi_clause, v, &block->clauses, link)
452
453#define bi_foreach_instr_global(ctx, v) \
454 bi_foreach_block(ctx, v_block) \
455 bi_foreach_instr_in_block(v_block, v)
456
457#define bi_foreach_instr_global_safe(ctx, v) \
458 bi_foreach_block(ctx, v_block) \
459 bi_foreach_instr_in_block_safe(v_block, v)
460
461#define bi_foreach_successor(blk, v) \
462 bi_block *v; \
463 bi_block **_v; \
464 for (_v = &blk->successors[0], \
465 v = *_v; \
466 v != NULL && _v < &blk->successors[2]; \
467 _v++, v = *_v) \
468
469/* Based on set_foreach, expanded with automatic type casts */
470
471#define bi_foreach_predecessor(blk, v) \
472 struct set_entry *_entry_##v; \
473 bi_block *v; \
474 for (_entry_##v = _mesa_set_next_entry(blk->predecessors, NULL), \
475 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL); \
476 _entry_##v != NULL; \
477 _entry_##v = _mesa_set_next_entry(blk->predecessors, _entry_##v), \
478 v = (bi_block *) (_entry_##v ? _entry_##v->key : NULL))
479
480#define bi_foreach_src(ins, v) \
481 for (unsigned v = 0; v < ARRAY_SIZE(ins->src); ++v)
482
Alyssa Rosenzweig5d16a812020-03-04 09:19:06 -0500483/* BIR manipulation */
484
485bool bi_has_outmod(bi_instruction *ins);
486bool bi_has_source_mods(bi_instruction *ins);
487bool bi_is_src_swizzled(bi_instruction *ins, unsigned s);
488
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -0500489/* BIR passes */
490
491void bi_schedule(bi_context *ctx);
492
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -0500493#endif