2019-09-17 13:22:17 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2018 Google
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "aco_interface.h"
|
|
|
|
|
#include "aco_ir.h"
|
|
|
|
|
#include "vulkan/radv_shader.h"
|
2019-11-11 18:27:25 +01:00
|
|
|
#include "vulkan/radv_shader_args.h"
|
2019-09-17 13:22:17 +02:00
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
2019-12-04 15:19:56 +00:00
|
|
|
static radv_compiler_statistic_info statistic_infos[] = {
|
|
|
|
|
[aco::statistic_hash] = {"Hash", "CRC32 hash of code and constant data"},
|
|
|
|
|
[aco::statistic_instructions] = {"Instructions", "Instruction count"},
|
|
|
|
|
[aco::statistic_copies] = {"Copies", "Copy instructions created for pseudo-instructions"},
|
|
|
|
|
[aco::statistic_branches] = {"Branches", "Branch instructions"},
|
|
|
|
|
[aco::statistic_cycles] = {"Busy Cycles", "Estimate of busy cycles"},
|
|
|
|
|
[aco::statistic_vmem_clauses] = {"VMEM Clause", "Number of VMEM clauses (includes 1-sized clauses)"},
|
|
|
|
|
[aco::statistic_smem_clauses] = {"SMEM Clause", "Number of SMEM clauses (includes 1-sized clauses)"},
|
2019-12-04 14:41:18 +00:00
|
|
|
[aco::statistic_vmem_score] = {"VMEM Score", "Average VMEM def-use distances"},
|
|
|
|
|
[aco::statistic_smem_score] = {"SMEM Score", "Average SMEM def-use distances"},
|
2019-12-04 15:19:56 +00:00
|
|
|
[aco::statistic_sgpr_presched] = {"Pre-Sched SGPRs", "SGPR usage before scheduling"},
|
|
|
|
|
[aco::statistic_vgpr_presched] = {"Pre-Sched VGPRs", "VGPR usage before scheduling"},
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-30 11:49:20 +00:00
|
|
|
static void validate(aco::Program *program)
|
|
|
|
|
{
|
2020-08-18 08:14:06 +02:00
|
|
|
if (!(aco::debug_flags & aco::DEBUG_VALIDATE_IR))
|
2020-01-30 11:49:20 +00:00
|
|
|
return;
|
|
|
|
|
|
2020-08-14 10:42:27 +02:00
|
|
|
bool is_valid = aco::validate_ir(program);
|
2020-01-30 11:49:20 +00:00
|
|
|
assert(is_valid);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-17 13:22:17 +02:00
|
|
|
void aco_compile_shader(unsigned shader_count,
|
|
|
|
|
struct nir_shader *const *shaders,
|
|
|
|
|
struct radv_shader_binary **binary,
|
2019-11-11 18:27:25 +01:00
|
|
|
struct radv_shader_args *args)
|
2019-09-17 13:22:17 +02:00
|
|
|
{
|
2020-01-22 19:57:20 +00:00
|
|
|
aco::init();
|
2019-09-17 13:22:17 +02:00
|
|
|
|
|
|
|
|
ac_shader_config config = {0};
|
|
|
|
|
std::unique_ptr<aco::Program> program{new aco::Program};
|
|
|
|
|
|
2020-03-19 15:09:31 +00:00
|
|
|
program->collect_statistics = args->options->record_stats;
|
2019-12-04 15:19:56 +00:00
|
|
|
if (program->collect_statistics)
|
|
|
|
|
memset(program->statistics, 0, sizeof(program->statistics));
|
|
|
|
|
|
2020-08-14 13:59:16 +02:00
|
|
|
program->debug.func = args->options->debug.func;
|
|
|
|
|
program->debug.private_data = args->options->debug.private_data;
|
|
|
|
|
|
2019-09-17 13:22:17 +02:00
|
|
|
/* Instruction Selection */
|
2019-11-15 11:31:03 +00:00
|
|
|
if (args->is_gs_copy_shader)
|
|
|
|
|
aco::select_gs_copy_shader(program.get(), shaders[0], &config, args);
|
2020-08-18 18:44:07 +02:00
|
|
|
else if (args->is_trap_handler_shader)
|
|
|
|
|
aco::select_trap_handler_shader(program.get(), shaders[0], &config, args);
|
2019-11-15 11:31:03 +00:00
|
|
|
else
|
|
|
|
|
aco::select_program(program.get(), shader_count, shaders, &config, args);
|
2019-11-11 18:27:25 +01:00
|
|
|
if (args->options->dump_preoptir) {
|
2019-09-17 13:22:17 +02:00
|
|
|
std::cerr << "After Instruction Selection:\n";
|
|
|
|
|
aco_print_program(program.get(), stderr);
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-21 11:33:22 +02:00
|
|
|
aco::live live_vars;
|
|
|
|
|
if (!args->is_trap_handler_shader) {
|
|
|
|
|
/* Phi lowering */
|
|
|
|
|
aco::lower_phis(program.get());
|
|
|
|
|
aco::dominator_tree(program.get());
|
|
|
|
|
validate(program.get());
|
|
|
|
|
|
|
|
|
|
/* Optimization */
|
|
|
|
|
aco::value_numbering(program.get());
|
|
|
|
|
aco::optimize(program.get());
|
|
|
|
|
|
|
|
|
|
/* cleanup and exec mask handling */
|
|
|
|
|
aco::setup_reduce_temp(program.get());
|
|
|
|
|
aco::insert_exec_mask(program.get());
|
|
|
|
|
validate(program.get());
|
|
|
|
|
|
|
|
|
|
/* spilling and scheduling */
|
|
|
|
|
live_vars = aco::live_var_analysis(program.get(), args->options);
|
|
|
|
|
aco::spill(program.get(), live_vars, args->options);
|
|
|
|
|
}
|
2019-09-17 13:22:17 +02:00
|
|
|
|
2019-09-24 15:23:46 +01:00
|
|
|
std::string llvm_ir;
|
2019-11-11 18:27:25 +01:00
|
|
|
if (args->options->record_ir) {
|
2019-09-24 15:23:46 +01:00
|
|
|
char *data = NULL;
|
|
|
|
|
size_t size = 0;
|
|
|
|
|
FILE *f = open_memstream(&data, &size);
|
|
|
|
|
if (f) {
|
|
|
|
|
aco_print_program(program.get(), f);
|
|
|
|
|
fputc(0, f);
|
|
|
|
|
fclose(f);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
llvm_ir = std::string(data, data + size);
|
|
|
|
|
free(data);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-18 16:10:46 +00:00
|
|
|
if (program->collect_statistics)
|
|
|
|
|
aco::collect_presched_stats(program.get());
|
|
|
|
|
|
2020-08-21 11:33:22 +02:00
|
|
|
if (!args->is_trap_handler_shader) {
|
|
|
|
|
aco::schedule_program(program.get(), live_vars);
|
|
|
|
|
validate(program.get());
|
2019-09-17 13:22:17 +02:00
|
|
|
|
2020-08-21 11:33:22 +02:00
|
|
|
/* Register Allocation */
|
|
|
|
|
aco::register_allocation(program.get(), live_vars.live_out);
|
|
|
|
|
if (args->options->dump_shader) {
|
|
|
|
|
std::cerr << "After RA:\n";
|
|
|
|
|
aco_print_program(program.get(), stderr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (aco::validate_ra(program.get(), args->options)) {
|
|
|
|
|
std::cerr << "Program after RA validation failure:\n";
|
|
|
|
|
aco_print_program(program.get(), stderr);
|
|
|
|
|
abort();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
validate(program.get());
|
2019-09-17 13:22:17 +02:00
|
|
|
|
2020-08-21 11:33:22 +02:00
|
|
|
aco::ssa_elimination(program.get());
|
|
|
|
|
}
|
2020-06-16 10:03:00 +01:00
|
|
|
|
2019-09-17 13:22:17 +02:00
|
|
|
/* Lower to HW Instructions */
|
|
|
|
|
aco::lower_to_hw_instr(program.get());
|
|
|
|
|
|
|
|
|
|
/* Insert Waitcnt */
|
|
|
|
|
aco::insert_wait_states(program.get());
|
|
|
|
|
aco::insert_NOPs(program.get());
|
|
|
|
|
|
2019-12-04 15:19:56 +00:00
|
|
|
if (program->collect_statistics)
|
|
|
|
|
aco::collect_preasm_stats(program.get());
|
|
|
|
|
|
2019-09-17 13:22:17 +02:00
|
|
|
/* Assembly */
|
|
|
|
|
std::vector<uint32_t> code;
|
|
|
|
|
unsigned exec_size = aco::emit_program(program.get(), code);
|
|
|
|
|
|
2019-12-04 15:19:56 +00:00
|
|
|
if (program->collect_statistics)
|
|
|
|
|
aco::collect_postasm_stats(program.get(), code);
|
|
|
|
|
|
2019-11-11 18:27:25 +01:00
|
|
|
bool get_disasm = args->options->dump_shader || args->options->record_ir;
|
2019-09-17 13:22:17 +02:00
|
|
|
|
2019-09-24 15:23:46 +01:00
|
|
|
size_t size = llvm_ir.size();
|
2019-09-17 13:22:17 +02:00
|
|
|
|
|
|
|
|
std::string disasm;
|
|
|
|
|
if (get_disasm) {
|
|
|
|
|
std::ostringstream stream;
|
2019-09-21 17:58:08 +02:00
|
|
|
aco::print_asm(program.get(), code, exec_size / 4u, stream);
|
2019-09-17 13:22:17 +02:00
|
|
|
stream << '\0';
|
|
|
|
|
disasm = stream.str();
|
|
|
|
|
size += disasm.size();
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 15:19:56 +00:00
|
|
|
size_t stats_size = 0;
|
|
|
|
|
if (program->collect_statistics)
|
|
|
|
|
stats_size = sizeof(radv_compiler_statistics) + aco::num_statistics * sizeof(uint32_t);
|
|
|
|
|
size += stats_size;
|
|
|
|
|
|
2019-09-17 13:22:17 +02:00
|
|
|
size += code.size() * sizeof(uint32_t) + sizeof(radv_shader_binary_legacy);
|
2019-09-24 17:21:51 +01:00
|
|
|
/* We need to calloc to prevent unintialized data because this will be used
|
|
|
|
|
* directly for the disk cache. Uninitialized data can appear because of
|
|
|
|
|
* padding in the struct or because legacy_binary->data can be at an offset
|
|
|
|
|
* from the start less than sizeof(radv_shader_binary_legacy). */
|
|
|
|
|
radv_shader_binary_legacy* legacy_binary = (radv_shader_binary_legacy*) calloc(size, 1);
|
2019-09-17 13:22:17 +02:00
|
|
|
|
|
|
|
|
legacy_binary->base.type = RADV_BINARY_TYPE_LEGACY;
|
|
|
|
|
legacy_binary->base.stage = shaders[shader_count-1]->info.stage;
|
2019-11-15 11:31:03 +00:00
|
|
|
legacy_binary->base.is_gs_copy_shader = args->is_gs_copy_shader;
|
2019-09-17 13:22:17 +02:00
|
|
|
legacy_binary->base.total_size = size;
|
|
|
|
|
|
2019-12-04 15:19:56 +00:00
|
|
|
if (program->collect_statistics) {
|
|
|
|
|
radv_compiler_statistics *statistics = (radv_compiler_statistics *)legacy_binary->data;
|
|
|
|
|
statistics->count = aco::num_statistics;
|
|
|
|
|
statistics->infos = statistic_infos;
|
|
|
|
|
memcpy(statistics->values, program->statistics, aco::num_statistics * sizeof(uint32_t));
|
|
|
|
|
}
|
|
|
|
|
legacy_binary->stats_size = stats_size;
|
2019-12-04 14:46:31 +00:00
|
|
|
|
2019-12-04 15:19:56 +00:00
|
|
|
memcpy(legacy_binary->data + legacy_binary->stats_size, code.data(), code.size() * sizeof(uint32_t));
|
2019-09-17 13:22:17 +02:00
|
|
|
legacy_binary->exec_size = exec_size;
|
|
|
|
|
legacy_binary->code_size = code.size() * sizeof(uint32_t);
|
|
|
|
|
|
|
|
|
|
legacy_binary->config = config;
|
|
|
|
|
legacy_binary->disasm_size = 0;
|
2019-09-25 11:48:04 +01:00
|
|
|
legacy_binary->ir_size = llvm_ir.size();
|
2019-09-24 15:23:46 +01:00
|
|
|
|
2019-12-04 15:19:56 +00:00
|
|
|
llvm_ir.copy((char*) legacy_binary->data + legacy_binary->stats_size + legacy_binary->code_size, llvm_ir.size());
|
2019-09-17 13:22:17 +02:00
|
|
|
|
|
|
|
|
if (get_disasm) {
|
2019-12-04 15:19:56 +00:00
|
|
|
disasm.copy((char*) legacy_binary->data + legacy_binary->stats_size + legacy_binary->code_size + llvm_ir.size(), disasm.size());
|
2019-09-24 15:23:46 +01:00
|
|
|
legacy_binary->disasm_size = disasm.size();
|
2019-09-17 13:22:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*binary = (radv_shader_binary*) legacy_binary;
|
|
|
|
|
}
|