2021-02-17 20:13:34 +00:00
|
|
|
// Copyright 2021 The Tint Authors.
|
|
|
|
//
|
|
|
|
// 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 "src/debug.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "src/diagnostic/diagnostic.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
InternalCompilerErrorReporter* ice_reporter = nullptr;
|
|
|
|
|
2021-02-18 20:23:09 +00:00
|
|
|
/// Note - this class is _not_ thread safe. If we have multiple internal
|
|
|
|
/// compiler errors occurring at the same time on different threads, then
|
|
|
|
/// we're in serious trouble.
|
2021-02-17 20:13:34 +00:00
|
|
|
class SourceFileToDelete {
|
2021-02-18 20:23:09 +00:00
|
|
|
static SourceFileToDelete* instance;
|
2021-02-17 20:13:34 +00:00
|
|
|
|
2021-02-18 20:23:09 +00:00
|
|
|
public:
|
2021-02-17 20:13:34 +00:00
|
|
|
/// Adds file to the list that will be deleted on call to Free()
|
2021-02-18 20:23:09 +00:00
|
|
|
static void Add(Source::File* file) {
|
|
|
|
if (!instance) {
|
|
|
|
instance = new SourceFileToDelete();
|
|
|
|
}
|
|
|
|
instance->files.emplace_back(file);
|
|
|
|
}
|
2021-02-17 20:13:34 +00:00
|
|
|
|
|
|
|
/// Free deletes all the source files added by calls to Add() and then this
|
2021-02-18 20:23:09 +00:00
|
|
|
/// SourceFileToDelete object.
|
|
|
|
static void Free() {
|
|
|
|
if (instance) {
|
|
|
|
for (auto* file : instance->files) {
|
|
|
|
delete file;
|
|
|
|
}
|
|
|
|
delete instance;
|
|
|
|
instance = nullptr;
|
2021-02-17 20:13:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<Source::File*> files;
|
|
|
|
};
|
|
|
|
|
2021-02-18 20:23:09 +00:00
|
|
|
SourceFileToDelete* SourceFileToDelete::instance = nullptr;
|
|
|
|
|
2021-02-17 20:13:34 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
void FreeInternalCompilerErrors() {
|
2021-02-18 20:23:09 +00:00
|
|
|
SourceFileToDelete::Free();
|
2021-02-17 20:13:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetInternalCompilerErrorReporter(InternalCompilerErrorReporter* reporter) {
|
|
|
|
ice_reporter = reporter;
|
|
|
|
}
|
|
|
|
|
2021-02-18 16:33:38 +00:00
|
|
|
InternalCompilerError::InternalCompilerError(const char* file,
|
|
|
|
size_t line,
|
|
|
|
diag::List& diagnostics)
|
|
|
|
: file_(file), line_(line), diagnostics_(diagnostics) {}
|
|
|
|
|
|
|
|
InternalCompilerError::~InternalCompilerError() {
|
|
|
|
auto* file = new Source::File(file_, "");
|
2021-02-17 20:13:34 +00:00
|
|
|
|
2021-02-18 20:23:09 +00:00
|
|
|
SourceFileToDelete::Add(file);
|
2021-02-17 20:13:34 +00:00
|
|
|
|
2021-02-18 16:33:38 +00:00
|
|
|
Source source{Source::Range{Source::Location{line_}}, file};
|
|
|
|
diagnostics_.add_ice(msg_.str(), source);
|
2021-02-17 20:13:34 +00:00
|
|
|
|
|
|
|
if (ice_reporter) {
|
2021-02-18 16:33:38 +00:00
|
|
|
ice_reporter(diagnostics_);
|
2021-02-17 20:13:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace tint
|