mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
14e47fc8be
Currently we have -Rpass for filtering the remarks that are displayed as diagnostics, but when using -fsave-optimization-record, there is no way to filter the remarks while generating them. This adds support for filtering remarks by passes using a regex. Ex: `clang -fsave-optimization-record -foptimization-record-passes=inline` will only emit the remarks coming from the pass `inline`. This adds: * `-fsave-optimization-record` to the driver * `-opt-record-passes` to cc1 * `-lto-pass-remarks-filter` to the LTOCodeGenerator * `--opt-remarks-passes` to lld * `-pass-remarks-filter` to llc, opt, llvm-lto, llvm-lto2 * `-opt-remarks-passes` to gold-plugin Differential Revision: https://reviews.llvm.org/D59268 Original llvm-svn: 355964 llvm-svn: 355984
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
//===- llvm/IR/RemarkStreamer.cpp - Remark Streamer -*- C++ -------------*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains the implementation of the remark outputting as part of
|
|
// LLVMContext.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/IR/RemarkStreamer.h"
|
|
|
|
using namespace llvm;
|
|
|
|
RemarkStreamer::RemarkStreamer(StringRef Filename, raw_ostream &OS)
|
|
: Filename(Filename), OS(OS),
|
|
YAMLOutput(OS, reinterpret_cast<void *>(this)) {
|
|
assert(!Filename.empty() && "This needs to be a real filename.");
|
|
}
|
|
|
|
Error RemarkStreamer::setFilter(StringRef Filter) {
|
|
Regex R = Regex(Filter);
|
|
std::string RegexError;
|
|
if (!R.isValid(RegexError))
|
|
return createStringError(std::make_error_code(std::errc::invalid_argument),
|
|
RegexError.data());
|
|
PassFilter = std::move(R);
|
|
return Error::success();
|
|
}
|
|
|
|
void RemarkStreamer::emit(const DiagnosticInfoOptimizationBase &Diag) {
|
|
if (Optional<Regex> &Filter = PassFilter)
|
|
if (!Filter->match(Diag.getPassName()))
|
|
return;
|
|
|
|
DiagnosticInfoOptimizationBase *DiagPtr =
|
|
const_cast<DiagnosticInfoOptimizationBase *>(&Diag);
|
|
YAMLOutput << DiagPtr;
|
|
}
|