blob: e93d4713c9e206b4594874c3902b5acc7dfe29e6 [file] [log] [blame]
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -07001/*
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -05002 * Copyright (C) 2018-2019 Alyssa Rosenzweig <alyssa@rosenzweig.io>
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -07003 *
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
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -050024#ifndef __BIFROST_PUBLIC_H_
25#define __BIFROST_PUBLIC_H_
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -070026
27#include "compiler/nir/nir.h"
28#include "util/u_dynarray.h"
Alyssa Rosenzweige6f5ae82020-03-10 16:09:44 -040029#include "panfrost/util/pan_ir.h"
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -070030
Boris Brezillon0a74a042020-10-08 10:09:56 +020031void bifrost_compile_shader_nir(nir_shader *nir, panfrost_program *program,
32 const struct panfrost_compile_inputs *inputs);
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -070033
34static const nir_shader_compiler_options bifrost_nir_options = {
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -050035 .lower_scmp = true,
Alyssa Rosenzweig2044b1f2020-09-16 13:12:20 -040036 .lower_flrp16 = true,
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -070037 .lower_flrp32 = true,
38 .lower_flrp64 = true,
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -050039 .lower_ffract = true,
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -070040 .lower_fmod = true,
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -050041 .lower_fdiv = true,
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -070042 .lower_isign = true,
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -050043 .lower_fpow = true,
44 .lower_find_lsb = true,
Alyssa Rosenzweig85cc78a2019-08-26 07:46:43 -070045 .lower_fdph = true,
Alyssa Rosenzweig0e4432b2020-04-10 19:41:15 -040046 .lower_fsqrt = true,
Alyssa Rosenzweigc4673152020-04-30 17:06:37 -040047 .lower_sincos = true,
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -050048
49 .lower_wpos_pntc = true,
50 .lower_fsign = true,
51
52 .lower_extract_byte = true,
53 .lower_extract_word = true,
54 .lower_rotate = true,
55
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -070056 .lower_pack_half_2x16 = true,
57 .lower_pack_unorm_2x16 = true,
58 .lower_pack_snorm_2x16 = true,
59 .lower_pack_unorm_4x8 = true,
60 .lower_pack_snorm_4x8 = true,
61 .lower_unpack_half_2x16 = true,
62 .lower_unpack_unorm_2x16 = true,
63 .lower_unpack_snorm_2x16 = true,
64 .lower_unpack_unorm_4x8 = true,
65 .lower_unpack_snorm_4x8 = true,
Jonathan Marek42093bb2020-04-24 14:27:33 -040066 .lower_pack_split = true,
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -050067
68 .lower_doubles_options = nir_lower_dmod,
69
70 .lower_bitfield_extract_to_shifts = true,
71 .vectorize_io = true,
Kenneth Graunke140f53e2020-09-24 08:46:31 -070072 .fuse_ffma16 = true,
73 .fuse_ffma32 = true,
74 .fuse_ffma64 = true,
Alyssa Rosenzweig5d3a4e32020-03-02 19:30:11 -050075 .use_interpolated_input_intrinsics = true
Alyssa Rosenzweigd8d8b082019-08-14 12:28:01 -070076};
77
78#endif