2024-01-19 11:32:57 -08:00
|
|
|
/* -*- c++ -*- */
|
|
|
|
|
/*
|
|
|
|
|
* Copyright © 2021 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2024-01-19 17:43:40 -08:00
|
|
|
#ifndef ELK_PRIVATE_H
|
|
|
|
|
#define ELK_PRIVATE_H
|
2024-01-19 11:32:57 -08:00
|
|
|
|
2024-01-19 15:24:34 -08:00
|
|
|
#include "elk_compiler.h"
|
2024-01-19 11:32:57 -08:00
|
|
|
|
|
|
|
|
#include <variant>
|
|
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
unsigned elk_required_dispatch_width(const struct shader_info *info);
|
2024-01-19 11:32:57 -08:00
|
|
|
|
|
|
|
|
static constexpr int SIMD_COUNT = 3;
|
|
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
struct elk_simd_selection_state {
|
2024-01-19 11:32:57 -08:00
|
|
|
const struct intel_device_info *devinfo;
|
|
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
std::variant<struct elk_cs_prog_data *,
|
|
|
|
|
struct elk_bs_prog_data *> prog_data;
|
2024-01-19 11:32:57 -08:00
|
|
|
|
|
|
|
|
unsigned required_width;
|
|
|
|
|
|
|
|
|
|
const char *error[SIMD_COUNT];
|
|
|
|
|
|
|
|
|
|
bool compiled[SIMD_COUNT];
|
|
|
|
|
bool spilled[SIMD_COUNT];
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
inline int elk_simd_first_compiled(const elk_simd_selection_state &state)
|
2024-01-19 11:32:57 -08:00
|
|
|
{
|
|
|
|
|
for (int i = 0; i < SIMD_COUNT; i++) {
|
|
|
|
|
if (state.compiled[i])
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
inline bool elk_simd_any_compiled(const elk_simd_selection_state &state)
|
2024-01-19 11:32:57 -08:00
|
|
|
{
|
2024-01-19 18:46:03 -08:00
|
|
|
return elk_simd_first_compiled(state) >= 0;
|
2024-01-19 11:32:57 -08:00
|
|
|
}
|
|
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
bool elk_simd_should_compile(elk_simd_selection_state &state, unsigned simd);
|
2024-01-19 11:32:57 -08:00
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
void elk_simd_mark_compiled(elk_simd_selection_state &state, unsigned simd, bool spilled);
|
2024-01-19 11:32:57 -08:00
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
int elk_simd_select(const elk_simd_selection_state &state);
|
2024-01-19 11:32:57 -08:00
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
int elk_simd_select_for_workgroup_size(const struct intel_device_info *devinfo,
|
|
|
|
|
const struct elk_cs_prog_data *prog_data,
|
2024-01-19 11:32:57 -08:00
|
|
|
const unsigned *sizes);
|
|
|
|
|
|
2024-01-19 18:46:03 -08:00
|
|
|
bool elk_should_print_shader(const nir_shader *shader, uint64_t debug_flag);
|
2024-01-19 11:32:57 -08:00
|
|
|
|
2024-01-19 17:43:40 -08:00
|
|
|
#endif // ELK_PRIVATE_H
|