nir/scheduler: Move nir_scheduler to its own header

nir_schedule already has a struct for options which makes it more than
just a function declaration. Later patches intend to add more structs to
complement these options. In order to make the code easier to manage,
this moves the nir_scheduler-related parts out of nir.h to their own
header.

Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5953>
This commit is contained in:
Neil Roberts 2020-07-17 09:08:47 +02:00
parent 14a12b771d
commit 7665398e6c
6 changed files with 56 additions and 16 deletions

View file

@ -24,6 +24,7 @@
#include "broadcom/common/v3d_device_info.h"
#include "v3d_compiler.h"
#include "util/u_prim.h"
#include "compiler/nir/nir_schedule.h"
int
vir_get_nsrc(struct qinst *inst)

View file

@ -339,6 +339,7 @@ NIR_FILES = \
nir/nir_remove_dead_variables.c \
nir/nir_repair_ssa.c \
nir/nir_schedule.c \
nir/nir_schedule.h \
nir/nir_search.c \
nir/nir_search.h \
nir/nir_search_helpers.h \

View file

@ -220,6 +220,7 @@ files_libnir = files(
'nir_remove_dead_variables.c',
'nir_repair_ssa.c',
'nir_schedule.c',
'nir_schedule.h',
'nir_search.c',
'nir_search.h',
'nir_search_helpers.h',

View file

@ -4590,21 +4590,6 @@ bool nir_opt_load_store_vectorize(nir_shader *shader, nir_variable_mode modes,
nir_should_vectorize_mem_func callback,
nir_variable_mode robust_modes);
typedef struct nir_schedule_options {
/* On some hardware with some stages the inputs and outputs to the shader
* share the same memory. In that case scheduler needs to ensure that all
* output writes are scheduled after all of the input writes to avoid
* overwriting them. This is a bitmask of stages that need that.
*/
unsigned stages_with_shared_io_memory;
/* The approximate amount of register pressure at which point the scheduler
* will try to reduce register usage.
*/
int threshold;
} nir_schedule_options;
void nir_schedule(nir_shader *shader, const nir_schedule_options *options);
void nir_strip(nir_shader *shader);
void nir_sweep(nir_shader *shader);

View file

@ -21,7 +21,7 @@
* IN THE SOFTWARE.
*/
#include "nir.h"
#include "nir_schedule.h"
#include "util/dag.h"
#include "util/u_dynarray.h"

View file

@ -0,0 +1,52 @@
/*
* Copyright © 2014 Connor Abbott
*
* 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.
*/
#ifndef NIR_SCHEDULE_H
#define NIR_SCHEDULE_H
#include "nir.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct nir_schedule_options {
/* On some hardware with some stages the inputs and outputs to the shader
* share the same memory. In that case the scheduler needs to ensure that
* all output writes are scheduled after all of the input writes to avoid
* overwriting them. This is a bitmask of stages that need that.
*/
unsigned stages_with_shared_io_memory;
/* The approximate amount of register pressure at which point the scheduler
* will try to reduce register usage.
*/
int threshold;
} nir_schedule_options;
void nir_schedule(nir_shader *shader, const nir_schedule_options *options);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* NIR_SCHEDULE_H */