// Copyright (c) 2015-2016 The Khronos Group Inc. // // 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. #ifndef SOURCE_DIAGNOSTIC_H_ #define SOURCE_DIAGNOSTIC_H_ #include <sstream> #include <string> #include "spirv-tools/libspirv.hpp" namespace spvtools { // A DiagnosticStream remembers the current position of the input and an error // code, and captures diagnostic messages via the left-shift operator. // If the error code is not SPV_FAILED_MATCH, then captured messages are // emitted during the destructor. class DiagnosticStream { … }; // Changes the MessageConsumer in |context| to one that updates |diagnostic| // with the last message received. // // This function expects that |diagnostic| is not nullptr and its content is a // nullptr. void UseDiagnosticAsMessageConsumer(spv_context context, spv_diagnostic* diagnostic); std::string spvResultToString(spv_result_t res); } // namespace spvtools #endif // SOURCE_DIAGNOSTIC_H_