ce1d8e20a7
...<https://github.com/llvm/llvm-project/commit/ 777180a32b61070a10dd330b4f038bf24e916af1>. This is just a quick fix to get copmilerplugins buiding again with latest LLVM/Clang trunk. Ideally, we should get rid of as many of those (potentially expensive) conversions from llvm::StringRef to std::string as possible. Change-Id: I18e185e0022a06fd8e3b983a3c4f80e1f3b96746 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87682 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
114 lines
4.1 KiB
C++
114 lines
4.1 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* Based on LLVM/Clang.
|
|
*
|
|
* This file is distributed under the University of Illinois Open Source
|
|
* License. See LICENSE.TXT for details.
|
|
*
|
|
*/
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
|
|
#include "plugin.hxx"
|
|
|
|
#include <clang/Lex/Preprocessor.h>
|
|
|
|
namespace loplugin
|
|
{
|
|
|
|
/*
|
|
This is a compile check.
|
|
|
|
Feature macros from config_XXX.h headers are always #defined (to 1 or 0 in case of yes/no
|
|
settings). It is a mistake to use #ifdef/#ifndef/defined to check them.
|
|
|
|
Using 1/0 instead of defined/undefined avoids undetected problems when e.g. the necessary
|
|
#include of the config_XXX.h file is missing.
|
|
*/
|
|
|
|
class CheckConfigMacros
|
|
: public PPCallbacks
|
|
, public Plugin
|
|
{
|
|
public:
|
|
explicit CheckConfigMacros( const InstantiationData& data );
|
|
virtual void run() override;
|
|
virtual void MacroDefined( const Token& macroToken, const MacroDirective* info ) override;
|
|
virtual void MacroUndefined( const Token& macroToken, MacroDefinition const &, MacroDirective const * ) override;
|
|
virtual void Ifdef( SourceLocation location, const Token& macroToken, MacroDefinition const & ) override;
|
|
virtual void Ifndef( SourceLocation location, const Token& macroToken, MacroDefinition const & ) override;
|
|
virtual void Defined( const Token& macroToken, MacroDefinition const &, SourceRange Range ) override;
|
|
enum { isPPCallback = true };
|
|
private:
|
|
void checkMacro( const Token& macroToken, SourceLocation location );
|
|
std::set< std::string > configMacros;
|
|
};
|
|
|
|
CheckConfigMacros::CheckConfigMacros( const InstantiationData& data )
|
|
: Plugin( data )
|
|
{
|
|
compiler.getPreprocessor().addPPCallbacks(std::unique_ptr<PPCallbacks>(this));
|
|
}
|
|
|
|
void CheckConfigMacros::run()
|
|
{
|
|
// nothing, only check preprocessor usage
|
|
}
|
|
|
|
void CheckConfigMacros::MacroDefined( const Token& macroToken, const MacroDirective* info )
|
|
{
|
|
SourceLocation location = info->getLocation();
|
|
const char* filename = compiler.getSourceManager().getPresumedLoc( location ).getFilename();
|
|
if( filename != NULL
|
|
&& ( hasPathnamePrefix(filename, BUILDDIR "/config_host/")
|
|
|| hasPathnamePrefix(filename, BUILDDIR "/config_build/") ))
|
|
{
|
|
// fprintf(stderr,"DEF: %s %s\n", macroToken.getIdentifierInfo()->getName().data(), filename );
|
|
configMacros.insert( macroToken.getIdentifierInfo()->getName().str());
|
|
}
|
|
}
|
|
|
|
void CheckConfigMacros::MacroUndefined( const Token& macroToken, MacroDefinition const &, MacroDirective const * )
|
|
{
|
|
configMacros.erase( macroToken.getIdentifierInfo()->getName().str());
|
|
}
|
|
|
|
void CheckConfigMacros::Ifdef( SourceLocation location, const Token& macroToken, MacroDefinition const & )
|
|
{
|
|
checkMacro( macroToken, location );
|
|
}
|
|
|
|
void CheckConfigMacros::Ifndef( SourceLocation location, const Token& macroToken, MacroDefinition const & )
|
|
{
|
|
checkMacro( macroToken, location );
|
|
}
|
|
|
|
void CheckConfigMacros::Defined( const Token& macroToken, MacroDefinition const &, SourceRange )
|
|
{
|
|
checkMacro( macroToken, macroToken.getLocation());
|
|
}
|
|
|
|
void CheckConfigMacros::checkMacro( const Token& macroToken, SourceLocation location )
|
|
{
|
|
if( configMacros.find( macroToken.getIdentifierInfo()->getName().str()) != configMacros.end())
|
|
{
|
|
const char* filename = compiler.getSourceManager().getPresumedLoc( location ).getFilename();
|
|
if( filename == NULL
|
|
|| ( !hasPathnamePrefix(filename, SRCDIR "/include/LibreOfficeKit/")
|
|
&& !hasPathnamePrefix(filename, WORKDIR "/UnpackedTarball/" )))
|
|
{
|
|
report( DiagnosticsEngine::Error, "checking whether a config macro %0 is defined",
|
|
location ) << macroToken.getIdentifierInfo()->getName();
|
|
report( DiagnosticsEngine::Note, "use #if instead of #ifdef/#ifndef/defined", location );
|
|
}
|
|
}
|
|
}
|
|
|
|
static Plugin::Registration< CheckConfigMacros > X( "checkconfigmacros" );
|
|
|
|
} // namespace
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|