std::string &r_log) {
const size_t length = source.size() / sizeof(uint32_t);
size_t i = SPIRV_HEADER_WORD_SIZE; // Skip header
+ const auto spirv_extensions = spirv::supported_extensions();
while (i < length) {
const auto desc_word = get<uint32_t>(source.data(), i);
if (opcode != SpvOpExtension)
break;
- const char *extension = source.data() + (i + 1u) * sizeof(uint32_t);
- const std::string device_extensions = dev.supported_extensions();
- const std::string platform_extensions =
- dev.platform.supported_extensions();
- if (device_extensions.find(extension) == std::string::npos &&
- platform_extensions.find(extension) == std::string::npos) {
- r_log += "Extension '" + std::string(extension) +
- "' is not supported.\n";
+ const std::string extension = source.data() + (i + 1u) * sizeof(uint32_t);
+ if (spirv_extensions.count(extension) == 0) {
+ r_log += "Extension '" + extension + "' is not supported.\n";
return false;
}
return disassemblyStr;
}
+std::unordered_set<std::string>
+clover::spirv::supported_extensions() {
+ return {
+ /* this is only a hint so all devices support that */
+ "SPV_KHR_no_integer_wrap_decoration"
+ };
+}
+
#else
bool
clover::spirv::is_valid_spirv(const std::vector<char> &/*binary*/,
const std::string &opencl_version) {
return std::string();
}
+
+std::unordered_set<std::string>
+clover::spirv::supported_extensions() {
+ return {};
+}
#endif
#ifndef CLOVER_SPIRV_INVOCATION_HPP
#define CLOVER_SPIRV_INVOCATION_HPP
+#include <unordered_set>
+
#include "core/context.hpp"
#include "core/module.hpp"
#include "core/program.hpp"
// Returns a textual representation of the given binary.
std::string print_module(const std::vector<char> &binary,
const std::string &opencl_version);
+
+ // Returns a set of supported SPIR-V extensions.
+ std::unordered_set<std::string> supported_extensions();
}
}