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
use crate::dr;
use crate::grammar;
use crate::spirv;
use std::collections;
use crate::grammar::GlslStd450InstructionTable as GGlInstTable;
use crate::grammar::OpenCLStd100InstructionTable as GClInstTable;
type GExtInstRef = &'static grammar::ExtendedInstruction<'static>;
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Type {
Integer(u32, bool),
Float(u32),
}
#[derive(Debug)]
pub struct TypeTracker {
types: collections::HashMap<spirv::Word, Type>,
}
impl TypeTracker {
pub fn new() -> TypeTracker {
TypeTracker {
types: collections::HashMap::new(),
}
}
pub fn track(&mut self, inst: &dr::Instruction) {
if let Some(rid) = inst.result_id {
if grammar::reflect::is_type(inst.class.opcode) {
match inst.class.opcode {
spirv::Op::TypeInt => {
if let (
&dr::Operand::LiteralInt32(bits),
&dr::Operand::LiteralInt32(sign),
) = (&inst.operands[0], &inst.operands[1])
{
self.types.insert(rid, Type::Integer(bits, sign == 1));
}
}
spirv::Op::TypeFloat => {
if let dr::Operand::LiteralInt32(bits) = inst.operands[0] {
self.types.insert(rid, Type::Float(bits));
}
}
_ => (),
}
} else {
inst.result_type
.and_then(|t| self.resolve(t))
.map(|t| self.types.insert(rid, t));
}
}
}
pub fn resolve(&self, id: spirv::Word) -> Option<Type> {
self.types.get(&id).cloned()
}
}
enum ExtInstSet {
GlslStd450,
OpenCLStd100,
}
pub struct ExtInstSetTracker {
sets: collections::HashMap<spirv::Word, ExtInstSet>,
}
impl ExtInstSetTracker {
pub fn new() -> ExtInstSetTracker {
ExtInstSetTracker {
sets: collections::HashMap::new(),
}
}
pub fn track(&mut self, inst: &dr::Instruction) {
if inst.class.opcode != spirv::Op::ExtInstImport
|| inst.result_id.is_none()
|| inst.operands.is_empty()
{
return;
}
if let dr::Operand::LiteralString(ref s) = inst.operands[0] {
if s == "GLSL.std.450" {
self.sets
.insert(inst.result_id.unwrap(), ExtInstSet::GlslStd450);
} else if s == "OpenCL.std" {
self.sets
.insert(inst.result_id.unwrap(), ExtInstSet::OpenCLStd100);
}
}
}
pub fn have(&self, set: spirv::Word) -> bool {
self.sets.get(&set).is_some()
}
pub fn resolve(&self, set: spirv::Word, opcode: spirv::Word) -> Option<GExtInstRef> {
if let Some(ext_inst_set) = self.sets.get(&set) {
match *ext_inst_set {
ExtInstSet::GlslStd450 => GGlInstTable::lookup_opcode(opcode),
ExtInstSet::OpenCLStd100 => GClInstTable::lookup_opcode(opcode),
}
} else {
None
}
}
}