-
Notifications
You must be signed in to change notification settings - Fork 33
/
spirv_module.hpp
136 lines (116 loc) · 4.54 KB
/
spirv_module.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/* Copyright (c) 2019-2022 Hans-Kristian Arntzen for Valve Corporation
*
* SPDX-License-Identifier: MIT
*
* 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 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.
*/
#pragma once
#include "thread_local_allocator.hpp"
#include "cfg_structurizer.hpp"
#include "ir.hpp"
#include "descriptor_qa.hpp"
#include <memory>
namespace spv
{
class Function;
class Builder;
class Instruction;
static constexpr spv::Op PseudoOpReturnCond = spv::Op(0x100000);
static constexpr spv::Op PseudoOpInstrumentExternallyVisibleStore = spv::Op(0x100001);
} // namespace spv
namespace dxil_spv
{
struct CFGNode;
class CFGNodePool;
enum class HelperCall
{
DescriptorQACheck,
WaveMatch,
WaveMultiPrefixFAdd,
WaveMultiPrefixIAdd,
WaveMultiPrefixFMul,
WaveMultiPrefixIMul,
WaveMultiPrefixBitAnd,
WaveMultiPrefixBitOr,
WaveMultiPrefixBitXor,
WaveMultiPrefixCountBits,
RobustAtomicCounter,
QuadAll,
QuadAny,
WaveIsFirstLaneMasked,
WaveActiveAllEqualMasked,
WaveReadFirstLaneMasked,
AtomicImageR64Compact,
AtomicImageArrayR64Compact,
AtomicImageR64CompactNonUniform,
AtomicImageArrayR64CompactNonUniform,
FinishCrossGroupSharing,
AllocateThreadNodeRecords,
AllocateGroupNodeRecords,
AllocateThreadNodeRecordsWaterfall,
ThreadIncrementOutputCount,
GroupIncrementOutputCount,
NodeCoalescePayloadOffset
};
class SPIRVModule
{
public:
SPIRVModule();
~SPIRVModule();
bool finalize_spirv(Vector<uint32_t> &spirv) const;
uint32_t allocate_id();
uint32_t allocate_ids(uint32_t count);
void emit_entry_point(spv::ExecutionModel model, const char *name, bool physical_storage);
void emit_entry_point_function_body(CFGStructurizer &structurizer);
void emit_leaf_function_body(spv::Function *func, CFGStructurizer &structurizer);
spv::Builder &get_builder();
spv::Instruction *get_entry_point();
spv::Function *get_entry_function();
void enable_shader_discard(bool support_demote);
spv::Id get_builtin_shader_input(spv::BuiltIn builtin);
spv::Id get_builtin_shader_output(spv::BuiltIn builtin);
bool has_builtin_shader_input(spv::BuiltIn builtin) const;
bool has_builtin_shader_output(spv::BuiltIn builtin) const;
void register_builtin_shader_input(spv::Id id, spv::BuiltIn builtin);
bool query_builtin_shader_input(spv::Id id, spv::BuiltIn *builtin) const;
void register_builtin_shader_output(spv::Id id, spv::BuiltIn builtin);
bool query_builtin_shader_output(spv::Id id, spv::BuiltIn *builtin) const;
Operation *allocate_op();
Operation *allocate_op(spv::Op op);
Operation *allocate_op(spv::Op op, spv::Id id, spv::Id type_id);
spv::Id create_variable(spv::StorageClass storage, spv::Id type, const char *name = nullptr);
spv::Id create_variable_with_initializer(spv::StorageClass storage, spv::Id type, spv::Id initializer,
const char *name = nullptr);
spv::Id get_helper_call_id(HelperCall call, spv::Id type_id = 0);
spv::Id get_helper_call_id(HelperCall call, const spv::Id *aux_ids, uint32_t aux_id_count);
spv::Id get_robust_physical_cbv_load_call_id(spv::Id type_id, spv::Id ptr_type_id, unsigned alignment);
void set_descriptor_qa_info(const DescriptorQAInfo &info);
void set_instruction_instrumentation_info(const InstructionInstrumentationInfo &info);
const DescriptorQAInfo &get_descriptor_qa_info() const;
static bool opcode_is_control_dependent(spv::Op opcode);
void set_override_spirv_version(uint32_t version);
void set_helper_lanes_participate_in_wave_ops(bool enable);
void set_entry_build_point(spv::Function *func);
DXIL_SPV_OVERRIDE_NEW_DELETE
private:
struct Impl;
std::unique_ptr<Impl> impl;
};
} // namespace dxil_spv