7e2c35324c
Adds evaluate command. It's visible from UI as a bracket. Example: evaluate { {1} over {%sigma sqrt{2%pi} }func e^-{{(x-%mu)^2} over {2%sigma^2}} } from { -infinity } to { +infinity } = 0 In order to make the mathml part, several changes had to be mad: - Allow mathml to correctly identify the math token for opperators - Allow mathml to correctly identify the math token for fences - Since improvements where made on token recognision, visitors to string can now be lighter ( removing long long switch ) - Improving the import / export to mathm - LO says it mathml 2, but actually is something between 2 and 3 - Allowing mfenced ( mathml 2.0 ) to stayl 3 adding the missing data ( prefix and postfix ) - Be able to know if we are opening or closing brackets - lrline and lrdline commands hidden on UI. - They are they own open close - If prefix and postfix are missing meaning of the expression may change, however that's the user problem. - The problem resides in the fact that MS_VERTLINE is uses for lline and rline. - The problem resides in the fact that MS_DVERTLINE is uses for ldline and rdline. - Changing frac priority from 0 to 5, if not { frac 1 2 frac 1 2 } fails ( found while testing ) - The mathml testing was made with highter standars than qa tests, however there are no guarantees. - Added xml tokens needed for math - Added starmathdatabase. Will grow in the future. The point is avoiding long lists and swtches inside code. Added it command for hidden or implicit product ( like ⁢ in mathml ). Oppens path for tdf#66200. Note that about this issue there is only one line on the parser. The mathml implementation will be made later when LO will allow chars with &charname;. Change-Id: If24b40c2420d39498693944f13a02985f997dd23 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105267 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
328 lines
14 KiB
C++
328 lines
14 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#include <cassert>
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
|
|
#include "plugin.hxx"
|
|
#include "check.hxx"
|
|
#include "clang/AST/CXXInheritance.h"
|
|
#include "clang/AST/StmtVisitor.h"
|
|
|
|
/**
|
|
This is a kind of simplified dead-store analysis.
|
|
|
|
We are looking for patterns like:
|
|
Foo x = a;
|
|
x = b;
|
|
which can be simplified to
|
|
x = b
|
|
|
|
or
|
|
Foo x = a;
|
|
x = f(x)
|
|
which can be simplified to
|
|
Foo x = f(a)
|
|
|
|
TODO Improve this plugin to make it safer. We should really be checking the following
|
|
conditions inside the RHS of the second statement:
|
|
If the variable is having it's address taken, or a non-const method called on it,
|
|
on passed by non-const-ref.
|
|
*/
|
|
|
|
namespace
|
|
{
|
|
//static bool startswith(const std::string& rStr, const char* pSubStr) {
|
|
// return rStr.compare(0, strlen(pSubStr), pSubStr) == 0;
|
|
//}
|
|
class SequentialAssign : public loplugin::FilteringPlugin<SequentialAssign>
|
|
{
|
|
public:
|
|
explicit SequentialAssign(loplugin::InstantiationData const& data)
|
|
: FilteringPlugin(data)
|
|
{
|
|
}
|
|
|
|
virtual void run() override
|
|
{
|
|
std::string fn(handler.getMainFileName());
|
|
loplugin::normalizeDotDotInFilePath(fn);
|
|
// places where the existing code style just looks better
|
|
// TODO lots of these would be unnecessary if I taught the plugin
|
|
// to ignore vars which are assigned to repeatedly
|
|
if (fn == SRCDIR "/vcl/source/helper/commandinfoprovider.cxx"
|
|
|| fn == SRCDIR "/basegfx/source/polygon/b2dpolygonclipper.cxx"
|
|
|| fn == SRCDIR "/i18nlangtag/source/isolang/insys.cxx"
|
|
|| fn == SRCDIR "/vcl/unx/generic/fontmanager/fontconfig.cxx"
|
|
|| fn == SRCDIR "/svtools/source/filter/exportdialog.cxx"
|
|
|| fn == SRCDIR "/svtools/source/control/ruler.cxx"
|
|
|| fn == SRCDIR "/basic/qa/cppunit/test_scanner.cxx"
|
|
|| fn == SRCDIR "/basic/source/uno/namecont.cxx"
|
|
|| fn == SRCDIR "/test/source/sheet/xnamedrange.cxx"
|
|
|| fn == SRCDIR "/i18npool/qa/cppunit/test_breakiterator.cxx"
|
|
|| fn == SRCDIR "/i18npool/source/localedata/LocaleNode.cxx"
|
|
|| fn == SRCDIR "/i18npool/source/transliteration/transliteration_Ignore.cxx"
|
|
|| fn == SRCDIR "/i18npool/qa/cppunit/test_textsearch.cxx"
|
|
|| fn == SRCDIR "/framework/source/jobs/jobdata.cxx"
|
|
|| fn == SRCDIR "/framework/source/services/pathsettings.cxx"
|
|
|| fn == SRCDIR "/xmloff/source/chart/SchXMLTools.cxx"
|
|
|| fn == SRCDIR "/svx/source/tbxctrls/Palette.cxx"
|
|
|| fn == SRCDIR "/svx/source/sdr/contact/objectcontactofpageview.cxx"
|
|
|| fn == SRCDIR "/svx/source/form/fmservs.cxx"
|
|
|| fn == SRCDIR "/svx/source/svdraw/svdograf.cxx"
|
|
|| fn == SRCDIR "/svx/source/accessibility/AccessibleShape.cxx"
|
|
|| fn == SRCDIR "/svx/source/fmcomp/fmgridcl.cxx"
|
|
|| fn == SRCDIR "/chart2/source/tools/CharacterProperties.cxx"
|
|
|| fn == SRCDIR "/svx/source/dialog/dialcontrol.cxx"
|
|
|| fn == SRCDIR "/connectivity/source/commontools/TTableHelper.cxx"
|
|
|| fn == SRCDIR "/svx/source/dialog/_bmpmask.cxx"
|
|
|| fn == SRCDIR "/media/noel/disk2/libo4/cui/source/dialogs/SignSignatureLineDialog.cxx"
|
|
|| fn == SRCDIR "/filter/source/msfilter/msdffimp.cxx"
|
|
|| fn == SRCDIR "/cui/source/dialogs/SignSignatureLineDialog.cxx"
|
|
|| fn == SRCDIR "/cui/source/dialogs/screenshotannotationdlg.cxx"
|
|
|| fn == SRCDIR "/cui/source/options/optupdt.cxx"
|
|
|| fn == SRCDIR "/dbaccess/source/ui/querydesign/querycontroller.cxx"
|
|
|| fn == SRCDIR "/dbaccess/source/ui/dlg/DbAdminImpl.cxx"
|
|
|| fn == SRCDIR "/dbaccess/source/ui/querydesign/JoinController.cxx"
|
|
|| fn == SRCDIR "/dbaccess/source/ui/misc/TokenWriter.cxx"
|
|
|| fn == SRCDIR "/dbaccess/source/ui/misc/TokenWriter.cxx"
|
|
|| fn == SRCDIR "/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx"
|
|
|| fn == SRCDIR "/dbaccess/source/core/api/querycomposer.cxx"
|
|
|| fn == SRCDIR "/desktop/source/lib/init.cxx"
|
|
|| fn == SRCDIR "/lotuswordpro/source/filter/lwpfribmark.cxx"
|
|
|| fn == SRCDIR "/tools/qa/cppunit/test_color.cxx"
|
|
|| fn == SRCDIR "/sc/qa/unit/ucalc.cxx"
|
|
|| fn == SRCDIR "/sc/source/ui/view/printfun.cxx"
|
|
|| fn == SRCDIR "/sc/source/ui/view/preview.cxx"
|
|
|| fn == SRCDIR "/sw/source/core/doc/tblafmt.cxx"
|
|
|| fn == SRCDIR "/sw/source/core/draw/dflyobj.cxx"
|
|
|| fn == SRCDIR "/sw/source/core/doc/DocumentDrawModelManager.cxx"
|
|
|| fn == SRCDIR "/sw/source/core/edit/edfcol.cxx"
|
|
|| fn == SRCDIR "/sw/source/filter/ww8/ww8toolbar.cxx"
|
|
|| fn == SRCDIR "/sw/source/ui/fldui/fldvar.cxx"
|
|
|| fn == SRCDIR "/sw/source/filter/ww8/ww8atr.cxx"
|
|
|| fn == SRCDIR "/sd/source/ui/accessibility/AccessiblePageShape.cxx"
|
|
|| fn == SRCDIR "/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx"
|
|
|| fn == SRCDIR "/sd/source/ui/slidesorter/cache/SlsRequestFactory.cxx"
|
|
|| fn == SRCDIR "/sd/source/ui/framework/configuration/ResourceId.cxx"
|
|
|| fn == SRCDIR "/sd/source/filter/html/htmlex.cxx"
|
|
|| fn == SRCDIR "/starmath/source/cfgitem.cxx"
|
|
|| fn == SRCDIR "/ucb/source/ucp/ftp/ftpurl.cxx"
|
|
|| fn == SRCDIR "/starmath/source/node.cxx"
|
|
|| fn == SRCDIR "/starmath/source/starmathdatabase.cxx"
|
|
|| fn == SRCDIR "/ucb/source/ucp/cmis/certvalidation_handler.cxx"
|
|
|| fn == SRCDIR "/reportdesign/source/ui/inspection/GeometryHandler.cxx"
|
|
|| fn == SRCDIR "/reportdesign/source/core/api/ReportDefinition.cxx"
|
|
|| fn == SRCDIR "/test/source/table/tablerow.cxx"
|
|
|| fn == SRCDIR "/basegfx/test/B2DHomMatrixTest.cxx"
|
|
|| fn == SRCDIR "/comphelper/qa/unit/base64_test.cxx"
|
|
|| fn == SRCDIR "/testtools/source/bridgetest/bridgetest.cxx"
|
|
|| fn == SRCDIR "/comphelper/qa/string/test_string.cxx"
|
|
|| fn == SRCDIR "/cppu/qa/test_unotype.cxx"
|
|
|| fn == SRCDIR "/cppu/qa/cppumaker/test_cppumaker.cxx"
|
|
|| fn == SRCDIR "/o3tl/qa/test-lru_map.cxx" || fn == SRCDIR "/svl/qa/unit/svl.cxx"
|
|
|| fn == SRCDIR "/chart2/qa/extras/PivotChartTest.cxx"
|
|
|| fn == SRCDIR "/chart2/qa/extras/chart2export.cxx"
|
|
|| fn == SRCDIR "/writerfilter/qa/cppunittests/misc/misc.cxx"
|
|
|| fn == SRCDIR "/sw/qa/extras/ww8export/ww8export.cxx"
|
|
|| fn == SRCDIR "/sw/qa/extras/uiwriter/uiwriter.cxx")
|
|
return;
|
|
// inside ifdef
|
|
if (fn == SRCDIR "/vcl/source/filter/png/pngread.cxx"
|
|
|| fn == SRCDIR "/vcl/source/window/syschild.cxx"
|
|
|| fn == SRCDIR "/sal/osl/unx/security.cxx"
|
|
|| fn == SRCDIR "/vcl/source/filter/png/pngwrite.cxx"
|
|
|| fn == SRCDIR "/svtools/source/control/inettbc.cxx"
|
|
|| fn == SRCDIR "/canvas/source/cairo/cairo_textlayout.cxx"
|
|
|| fn == SRCDIR "/sal/qa/osl/file/osl_File.cxx")
|
|
return;
|
|
// taking address of variable
|
|
if (fn == SRCDIR "/vcl/unx/generic/dtrans/X11_selection.cxx")
|
|
return;
|
|
// other
|
|
if (fn == SRCDIR "/sc/source/core/tool/scmatrix.cxx"
|
|
|| fn == SRCDIR "/sal/qa/rtl/oustringbuffer/test_oustringbuffer_assign.cxx")
|
|
return;
|
|
|
|
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
|
|
}
|
|
|
|
bool VisitCompoundStmt(CompoundStmt const*);
|
|
|
|
private:
|
|
const VarDecl* findSimpleAssign(Stmt const*);
|
|
bool isSimpleRHS(Expr const*);
|
|
Expr const* ignore(Expr const*);
|
|
void checkForSecondAssign(Stmt const* stmt, VarDecl const* varDecl);
|
|
};
|
|
|
|
bool SequentialAssign::VisitCompoundStmt(CompoundStmt const* compoundStmt)
|
|
{
|
|
if (ignoreLocation(compoundStmt))
|
|
return true;
|
|
|
|
auto it = compoundStmt->body_begin();
|
|
while (true)
|
|
{
|
|
if (it == compoundStmt->body_end())
|
|
break;
|
|
auto firstStmt = *it;
|
|
const VarDecl* foundVars = findSimpleAssign(firstStmt);
|
|
// reference types have slightly weird behaviour
|
|
if (!foundVars || foundVars->getType()->isReferenceType())
|
|
{
|
|
++it;
|
|
continue;
|
|
}
|
|
++it;
|
|
if (it == compoundStmt->body_end())
|
|
break;
|
|
checkForSecondAssign(*it, foundVars);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void SequentialAssign::checkForSecondAssign(Stmt const* stmt, VarDecl const* varDecl)
|
|
{
|
|
if (auto exprCleanup = dyn_cast<ExprWithCleanups>(stmt))
|
|
stmt = exprCleanup->getSubExpr();
|
|
|
|
if (auto operatorCall = dyn_cast<CXXOperatorCallExpr>(stmt))
|
|
{
|
|
if (operatorCall->getOperator() == OO_Equal)
|
|
{
|
|
if (auto declRefExprLHS = dyn_cast<DeclRefExpr>(ignore(operatorCall->getArg(0))))
|
|
if (declRefExprLHS->getDecl() == varDecl)
|
|
{
|
|
report(DiagnosticsEngine::Warning,
|
|
"simplify by merging with the preceding assignment",
|
|
compat::getBeginLoc(stmt))
|
|
<< stmt->getSourceRange();
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (auto binaryOp = dyn_cast<BinaryOperator>(stmt))
|
|
{
|
|
if (binaryOp->getOpcode() == BO_Assign)
|
|
{
|
|
if (auto declRefExpr = dyn_cast<DeclRefExpr>(ignore(binaryOp->getLHS())))
|
|
if (declRefExpr->getDecl() == varDecl)
|
|
{
|
|
report(DiagnosticsEngine::Warning,
|
|
"simplify by merging with the preceding assignment",
|
|
compat::getBeginLoc(stmt))
|
|
<< stmt->getSourceRange();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const VarDecl* SequentialAssign::findSimpleAssign(Stmt const* stmt)
|
|
{
|
|
if (auto declStmt = dyn_cast<DeclStmt>(stmt))
|
|
if (declStmt->isSingleDecl())
|
|
if (auto varDeclLHS = dyn_cast_or_null<VarDecl>(declStmt->getSingleDecl()))
|
|
{
|
|
if (varDeclLHS->getStorageDuration() == SD_Static)
|
|
return nullptr;
|
|
// if it's call-style init (e.g. OUString s("xxx")), we only treat
|
|
// it as simple if it only contains a variable in the call
|
|
// (e.g. OUString s(x))
|
|
if (varDeclLHS->getInitStyle() == VarDecl::InitializationStyle::CallInit)
|
|
{
|
|
auto cxxConstructExpr
|
|
= dyn_cast<CXXConstructExpr>(ignore(varDeclLHS->getInit()));
|
|
if (cxxConstructExpr)
|
|
{
|
|
if (cxxConstructExpr->getNumArgs() == 0)
|
|
return varDeclLHS;
|
|
if (cxxConstructExpr->getNumArgs() > 1)
|
|
return nullptr;
|
|
if (!isa<DeclRefExpr>(ignore(cxxConstructExpr->getArg(0))))
|
|
return nullptr;
|
|
}
|
|
}
|
|
if (auto init = varDeclLHS->getInit())
|
|
if (isSimpleRHS(init))
|
|
return varDeclLHS;
|
|
}
|
|
if (auto operatorCall = dyn_cast<CXXOperatorCallExpr>(stmt))
|
|
if (operatorCall->getOperator() == OO_Equal)
|
|
if (auto declRefExprLHS = dyn_cast<DeclRefExpr>(ignore(operatorCall->getArg(0))))
|
|
if (auto varDeclLHS = dyn_cast<VarDecl>(declRefExprLHS->getDecl()))
|
|
if (isSimpleRHS(operatorCall->getArg(1)))
|
|
return varDeclLHS;
|
|
if (auto binaryOp = dyn_cast<BinaryOperator>(stmt))
|
|
if (binaryOp->getOpcode() == BO_Assign)
|
|
if (auto declRefExprLHS = dyn_cast<DeclRefExpr>(ignore(binaryOp->getLHS())))
|
|
if (auto varDeclLHS = dyn_cast<VarDecl>(declRefExprLHS->getDecl()))
|
|
if (isSimpleRHS(binaryOp->getRHS()))
|
|
return varDeclLHS;
|
|
return nullptr;
|
|
}
|
|
|
|
/**
|
|
Does the first statement have a relatively simply RHS we can inline into the second statement?
|
|
*/
|
|
bool SequentialAssign::isSimpleRHS(Expr const* expr)
|
|
{
|
|
expr = ignore(expr);
|
|
|
|
// code like
|
|
// Point aCurPos = rGlyphs
|
|
// always has a CXXConstructExpr wrapping the RHS
|
|
if (auto cxxConstructExpr = dyn_cast<CXXConstructExpr>(expr))
|
|
if (cxxConstructExpr->getNumArgs() == 1)
|
|
expr = ignore(cxxConstructExpr->getArg(0));
|
|
|
|
if (!expr->isValueDependent()
|
|
&& expr->isConstantInitializer(compiler.getASTContext(), false /*ForRef*/))
|
|
return true;
|
|
if (isa<CXXMemberCallExpr>(expr))
|
|
return false;
|
|
if (isa<CXXOperatorCallExpr>(expr))
|
|
return false;
|
|
if (isa<UserDefinedLiteral>(expr))
|
|
return true;
|
|
if (isa<CallExpr>(expr))
|
|
return false;
|
|
if (isa<CastExpr>(expr))
|
|
return false;
|
|
if (isa<ArraySubscriptExpr>(expr))
|
|
return false;
|
|
if (isa<BinaryOperator>(expr))
|
|
return false;
|
|
if (isa<ConditionalOperator>(expr))
|
|
return false;
|
|
if (isa<UnaryOperator>(expr))
|
|
return false;
|
|
if (isa<CXXNewExpr>(expr))
|
|
return false;
|
|
if (auto memberExpr = dyn_cast<MemberExpr>(expr))
|
|
return isSimpleRHS(memberExpr->getBase());
|
|
|
|
return true;
|
|
}
|
|
|
|
Expr const* SequentialAssign::ignore(Expr const* expr)
|
|
{
|
|
return expr->IgnoreImplicit()->IgnoreParens()->IgnoreImplicit();
|
|
}
|
|
|
|
// Off by default because of safety concerns, see TODO at top
|
|
loplugin::Plugin::Registration<SequentialAssign> X("sequentialassign", false);
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|