1bf215546Sopenharmony_ci/* 2bf215546Sopenharmony_ci * Copyright © Microsoft Corporation 3bf215546Sopenharmony_ci * 4bf215546Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining a 5bf215546Sopenharmony_ci * copy of this software and associated documentation files (the "Software"), 6bf215546Sopenharmony_ci * to deal in the Software without restriction, including without limitation 7bf215546Sopenharmony_ci * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8bf215546Sopenharmony_ci * and/or sell copies of the Software, and to permit persons to whom the 9bf215546Sopenharmony_ci * Software is furnished to do so, subject to the following conditions: 10bf215546Sopenharmony_ci * 11bf215546Sopenharmony_ci * The above copyright notice and this permission notice (including the next 12bf215546Sopenharmony_ci * paragraph) shall be included in all copies or substantial portions of the 13bf215546Sopenharmony_ci * Software. 14bf215546Sopenharmony_ci * 15bf215546Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16bf215546Sopenharmony_ci * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17bf215546Sopenharmony_ci * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18bf215546Sopenharmony_ci * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19bf215546Sopenharmony_ci * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20bf215546Sopenharmony_ci * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21bf215546Sopenharmony_ci * IN THE SOFTWARE. 22bf215546Sopenharmony_ci */ 23bf215546Sopenharmony_ci 24bf215546Sopenharmony_ci#ifndef DXIL_NIR_H 25bf215546Sopenharmony_ci#define DXIL_NIR_H 26bf215546Sopenharmony_ci 27bf215546Sopenharmony_ci#include <stdbool.h> 28bf215546Sopenharmony_ci#include "nir.h" 29bf215546Sopenharmony_ci#include "nir_builder.h" 30bf215546Sopenharmony_ci 31bf215546Sopenharmony_ci#ifdef __cplusplus 32bf215546Sopenharmony_ciextern "C" { 33bf215546Sopenharmony_ci#endif 34bf215546Sopenharmony_ci 35bf215546Sopenharmony_cibool dxil_nir_lower_8bit_conv(nir_shader *shader); 36bf215546Sopenharmony_cibool dxil_nir_lower_16bit_conv(nir_shader *shader); 37bf215546Sopenharmony_cibool dxil_nir_lower_x2b(nir_shader *shader); 38bf215546Sopenharmony_cibool dxil_nir_lower_fquantize2f16(nir_shader *shader); 39bf215546Sopenharmony_cibool dxil_nir_lower_ubo_to_temp(nir_shader *shader); 40bf215546Sopenharmony_cibool dxil_nir_lower_loads_stores_to_dxil(nir_shader *shader); 41bf215546Sopenharmony_cibool dxil_nir_lower_atomics_to_dxil(nir_shader *shader); 42bf215546Sopenharmony_cibool dxil_nir_lower_deref_ssbo(nir_shader *shader); 43bf215546Sopenharmony_cibool dxil_nir_opt_alu_deref_srcs(nir_shader *shader); 44bf215546Sopenharmony_cibool dxil_nir_lower_memcpy_deref(nir_shader *shader); 45bf215546Sopenharmony_cibool dxil_nir_lower_upcast_phis(nir_shader *shader, unsigned min_bit_size); 46bf215546Sopenharmony_cibool dxil_nir_lower_fp16_casts(nir_shader *shader); 47bf215546Sopenharmony_cibool dxil_nir_split_clip_cull_distance(nir_shader *shader); 48bf215546Sopenharmony_cibool dxil_nir_lower_double_math(nir_shader *shader); 49bf215546Sopenharmony_cibool dxil_nir_lower_system_values_to_zero(nir_shader *shader, 50bf215546Sopenharmony_ci gl_system_value* system_value, 51bf215546Sopenharmony_ci uint32_t count); 52bf215546Sopenharmony_cibool dxil_nir_lower_system_values(nir_shader *shader); 53bf215546Sopenharmony_cibool dxil_nir_split_typed_samplers(nir_shader *shader); 54bf215546Sopenharmony_cibool dxil_nir_lower_bool_input(struct nir_shader *s); 55bf215546Sopenharmony_cibool dxil_nir_lower_sysval_to_load_input(nir_shader *s, nir_variable **sysval_vars); 56bf215546Sopenharmony_cibool dxil_nir_lower_vs_vertex_conversion(nir_shader *s, enum pipe_format target_formats[]); 57bf215546Sopenharmony_ci 58bf215546Sopenharmony_cinir_ssa_def * 59bf215546Sopenharmony_cibuild_load_ubo_dxil(nir_builder *b, nir_ssa_def *buffer, 60bf215546Sopenharmony_ci nir_ssa_def *offset, unsigned num_components, 61bf215546Sopenharmony_ci unsigned bit_size); 62bf215546Sopenharmony_ci 63bf215546Sopenharmony_ciuint64_t 64bf215546Sopenharmony_cidxil_sort_by_driver_location(nir_shader* s, nir_variable_mode modes); 65bf215546Sopenharmony_ci 66bf215546Sopenharmony_civoid 67bf215546Sopenharmony_cidxil_sort_ps_outputs(nir_shader* s); 68bf215546Sopenharmony_ci 69bf215546Sopenharmony_ciuint64_t 70bf215546Sopenharmony_cidxil_reassign_driver_locations(nir_shader* s, nir_variable_mode modes, 71bf215546Sopenharmony_ci uint64_t other_stage_mask); 72bf215546Sopenharmony_ci 73bf215546Sopenharmony_civoid dxil_nir_split_tess_ctrl(nir_shader *nir, nir_function **patch_const_func); 74bf215546Sopenharmony_cibool dxil_nir_fixup_tess_level_for_domain(nir_shader *nir); 75bf215546Sopenharmony_cibool dxil_nir_set_tcs_patches_in(nir_shader *nir, unsigned num_control_points); 76bf215546Sopenharmony_cibool dxil_nir_lower_ubo_array_one_to_static(nir_shader *s); 77bf215546Sopenharmony_cibool dxil_nir_fix_io_uint_type(nir_shader *s, uint64_t in_mask, uint64_t out_mask); 78bf215546Sopenharmony_cibool dxil_nir_lower_discard_and_terminate(nir_shader* s); 79bf215546Sopenharmony_cibool dxil_nir_ensure_position_writes(nir_shader *s); 80bf215546Sopenharmony_ci 81bf215546Sopenharmony_ci#ifdef __cplusplus 82bf215546Sopenharmony_ci} 83bf215546Sopenharmony_ci#endif 84bf215546Sopenharmony_ci 85bf215546Sopenharmony_ci#endif /* DXIL_NIR_H */ 86