-
Notifications
You must be signed in to change notification settings - Fork 578
/
Copy pathextract_source.cpp
169 lines (144 loc) · 5.63 KB
/
extract_source.cpp
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// Copyright (c) 2023 Google LLC.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "extract_source.h"
#include <cassert>
#include <string>
#include <unordered_map>
#include <vector>
#include "source/opt/log.h"
#include "spirv-tools/libspirv.hpp"
#include "spirv/unified1/spirv.hpp"
#include "tools/util/cli_consumer.h"
#include "source/binary.h"
namespace {
constexpr auto kDefaultEnvironment = SPV_ENV_UNIVERSAL_1_6;
spv_result_t extractOpString(const spv_position_t& loc,
const spv_parsed_instruction_t& instruction,
std::string* output) {
assert(output != nullptr);
assert(instruction.opcode == spv::Op::OpString);
if (instruction.num_operands != 2) {
spvtools::Error(spvtools::utils::CLIMessageConsumer, "", loc,
"Missing operands for OpString.");
return SPV_ERROR_INVALID_BINARY;
}
*output = spvDecodeLiteralStringOperand(instruction, 1);
return SPV_SUCCESS;
}
spv_result_t extractOpSourceContinued(
const spv_position_t& loc, const spv_parsed_instruction_t& instruction,
std::string* output) {
assert(output != nullptr);
assert(instruction.opcode == spv::Op::OpSourceContinued);
if (instruction.num_operands != 1) {
spvtools::Error(spvtools::utils::CLIMessageConsumer, "", loc,
"Missing operands for OpSourceContinued.");
return SPV_ERROR_INVALID_BINARY;
}
*output = *output + spvDecodeLiteralStringOperand(instruction, 0);
return SPV_SUCCESS;
}
spv_result_t extractOpSource(const spv_position_t& loc,
const spv_parsed_instruction_t& instruction,
spv::Id* filename, std::string* code) {
assert(filename != nullptr && code != nullptr);
assert(instruction.opcode == spv::Op::OpSource);
// OpCode [ Source Language | Version | File (optional) | Source (optional) ]
if (instruction.num_words < 3) {
spvtools::Error(spvtools::utils::CLIMessageConsumer, "", loc,
"Missing operands for OpSource.");
return SPV_ERROR_INVALID_BINARY;
}
*filename = 0;
*code = "";
if (instruction.num_words < 4) {
return SPV_SUCCESS;
}
*filename = instruction.words[3];
if (instruction.num_words < 5) {
return SPV_SUCCESS;
}
*code = spvDecodeLiteralStringOperand(instruction, 3);
return SPV_SUCCESS;
}
} // namespace
bool ExtractSourceFromModule(
const std::vector<uint32_t>& binary,
std::unordered_map<std::string, std::string>* output) {
auto context = spvtools::SpirvTools(kDefaultEnvironment);
context.SetMessageConsumer(spvtools::utils::CLIMessageConsumer);
// There is nothing valuable in the header.
spvtools::HeaderParser headerParser = [](const spv_endianness_t,
const spv_parsed_header_t&) {
return SPV_SUCCESS;
};
std::unordered_map<uint32_t, std::string> stringMap;
std::vector<std::pair<spv::Id, std::string>> sources;
spv::Op lastOpcode = spv::Op::OpMax;
size_t instructionIndex = 0;
spvtools::InstructionParser instructionParser =
[&stringMap, &sources, &lastOpcode,
&instructionIndex](const spv_parsed_instruction_t& instruction) {
const spv_position_t loc = {0, 0, instructionIndex + 1};
spv_result_t result = SPV_SUCCESS;
if (instruction.opcode == spv::Op::OpString) {
std::string content;
result = extractOpString(loc, instruction, &content);
if (result == SPV_SUCCESS) {
stringMap.emplace(instruction.result_id, std::move(content));
}
} else if (instruction.opcode == spv::Op::OpSource) {
spv::Id filenameId;
std::string code;
result = extractOpSource(loc, instruction, &filenameId, &code);
if (result == SPV_SUCCESS) {
sources.emplace_back(std::make_pair(filenameId, std::move(code)));
}
} else if (instruction.opcode == spv::Op::OpSourceContinued) {
if (lastOpcode != spv::Op::OpSource) {
spvtools::Error(spvtools::utils::CLIMessageConsumer, "", loc,
"OpSourceContinued MUST follow an OpSource.");
return SPV_ERROR_INVALID_BINARY;
}
assert(sources.size() > 0);
result = extractOpSourceContinued(loc, instruction,
&sources.back().second);
}
++instructionIndex;
lastOpcode = static_cast<spv::Op>(instruction.opcode);
return result;
};
if (!context.Parse(binary, headerParser, instructionParser)) {
return false;
}
std::string defaultName = "unnamed-";
size_t unnamedCount = 0;
for (auto & [ id, code ] : sources) {
std::string filename;
const auto it = stringMap.find(id);
if (it == stringMap.cend() || it->second.empty()) {
filename = "unnamed-" + std::to_string(unnamedCount) + ".hlsl";
++unnamedCount;
} else {
filename = it->second;
}
if (output->count(filename) != 0) {
spvtools::Error(spvtools::utils::CLIMessageConsumer, "", {},
"Source file name conflict.");
return false;
}
output->insert({filename, code});
}
return true;
}