diff --git a/include/clad/Differentiator/TBRAnalyzer.h b/include/clad/Differentiator/TBRAnalyzer.h index 648b8d7a4..45e2a65d6 100644 --- a/include/clad/Differentiator/TBRAnalyzer.h +++ b/include/clad/Differentiator/TBRAnalyzer.h @@ -111,13 +111,13 @@ class TBRAnalyzer : public clang::ConstStmtVisitor { struct VarData { enum VarDataType { UNDEFINED, FUND_TYPE, OBJ_TYPE, ARR_TYPE, REF_TYPE }; union VarDataValue { - bool fundData; - /// objData, arrData are stored as pointers for VarDataValue to take + bool m_FundData; + /// m_ObjData, m_ArrData are stored as pointers for VarDataValue to take /// less space. - ObjMap* objData; - ArrMap* arrData; - Expr* refData; - VarDataValue() : fundData(false) {} + ObjMap* m_ObjData; + ArrMap* m_ArrData; + Expr* m_RefData; + VarDataValue() : m_FundData(false) {} }; VarDataType type = UNDEFINED; VarDataValue val; @@ -130,13 +130,13 @@ class TBRAnalyzer : public clang::ConstStmtVisitor { /// Erases all children VarData's of this VarData. void erase() { if (type == OBJ_TYPE) { - for (auto& pair : *val.objData) + for (auto& pair : *val.m_ObjData) pair.second.erase(); - delete val.objData; + delete val.m_ObjData; } else if (type == ARR_TYPE) { - for (auto& pair : *val.arrData) + for (auto& pair : *val.m_ArrData) pair.second.erase(); - delete val.arrData; + delete val.m_ArrData; } } }; @@ -234,11 +234,11 @@ class TBRAnalyzer : public clang::ConstStmtVisitor { /// Note: the returned VarsData contains original data from /// the predecessors (NOT copies). It should not be modified. std::unordered_map - collectDataFromPredecessors(VarsData* varsData, VarsData* limit = nullptr); + static collectDataFromPredecessors(VarsData* varsData, VarsData* limit = nullptr); /// Finds the lowest common ancestor of two VarsData /// (based on the prev field in VarsData). - VarsData* findLowestCommonAncestor(VarsData* varsData1, VarsData* varsData2); + static VarsData* findLowestCommonAncestor(VarsData* varsData1, VarsData* varsData2); /// Merges mergeData into targetData. Should be called /// after mergeData is passed and the corresponding CFG @@ -262,7 +262,7 @@ class TBRAnalyzer : public clang::ConstStmtVisitor { /// a new one). std::vector modeStack; - ASTContext* m_Context; + ASTContext& m_Context; /// clang::CFG of the function being analysed. std::unique_ptr m_CFG; @@ -315,7 +315,7 @@ class TBRAnalyzer : public clang::ConstStmtVisitor { public: /// Constructor - TBRAnalyzer(ASTContext* m_Context) : m_Context(m_Context) { + TBRAnalyzer(ASTContext& m_Context) : m_Context(m_Context) { modeStack.push_back(0); } @@ -340,7 +340,7 @@ class TBRAnalyzer : public clang::ConstStmtVisitor { /// Visitors void Analyze(const clang::FunctionDecl* FD); - void VisitCFGBlock(clang::CFGBlock* block); + void VisitCFGBlock(const clang::CFGBlock* block); void Visit(const clang::Stmt* stmt) { clang::ConstStmtVisitor::Visit(stmt); diff --git a/lib/Differentiator/ReverseModeVisitor.cpp b/lib/Differentiator/ReverseModeVisitor.cpp index 895361ee6..cc73101d6 100644 --- a/lib/Differentiator/ReverseModeVisitor.cpp +++ b/lib/Differentiator/ReverseModeVisitor.cpp @@ -39,10 +39,10 @@ namespace clad { Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, ReverseModeVisitor& rvm) { - if (auto CAT = dyn_cast(AT)) + if (const auto* const CAT = dyn_cast(AT)) return ConstantFolder::synthesizeLiteral(context.getSizeType(), context, CAT->getSize().getZExtValue()); - else if (auto VSAT = dyn_cast(AT)) + if (const auto* VSAT = dyn_cast(AT)) return rvm.Clone(VSAT->getSizeExpr()); return nullptr; @@ -65,11 +65,11 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, ReverseModeVisitor::CladTapeResult ReverseModeVisitor::MakeCladTapeFor(Expr* E, llvm::StringRef prefix) { assert(E && "must be provided"); - if (auto IE = dyn_cast(E)) { + if (auto* IE = dyn_cast(E)) { E = IE->getSubExpr()->IgnoreImplicit(); } QualType EQt = E->getType(); - if (dyn_cast(EQt)) + if (isa(EQt)) EQt = GetCladArrayOfType(utils::GetValueType(EQt)); QualType TapeType = GetCladTapeOfType(getNonConstType(EQt, m_Context, m_Sema)); @@ -77,16 +77,16 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, LookupResult& Pop = GetCladTapePop(); Expr* TapeRef = BuildDeclRef(GlobalStoreImpl(TapeType, prefix, getZeroInit(TapeType))); - auto VD = cast(cast(TapeRef)->getDecl()); + auto* VD = cast(cast(TapeRef)->getDecl()); // Add fake location, since Clang AST does assert(Loc.isValid()) somewhere. VD->setLocation(m_Function->getLocation()); CXXScopeSpec CSS; CSS.Extend(m_Context, GetCladNamespace(), noLoc, noLoc); - auto PopDRE = m_Sema + auto* PopDRE = m_Sema .BuildDeclarationNameExpr(CSS, Pop, /*AcceptInvalidDecl=*/false) .get(); - auto PushDRE = m_Sema + auto* PushDRE = m_Sema .BuildDeclarationNameExpr(CSS, Push, /*AcceptInvalidDecl=*/false) .get(); @@ -94,7 +94,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, m_Sema.ActOnCallExpr(getCurrentScope(), PopDRE, noLoc, TapeRef, noLoc) .get(); Expr* exprToPush = E; - if (auto AT = dyn_cast(E->getType())) { + if (const auto* AT = dyn_cast(E->getType())) { Expr* init = getArraySizeExpr(AT, m_Context, *this); llvm::SmallVector pushArgs{E, init}; SourceLocation loc = E->getExprLoc(); @@ -149,7 +149,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, llvm::SmallVector paramTypes; // Add types for representing original function parameters. - for (auto PVD : m_Function->parameters()) + for (auto* PVD : m_Function->parameters()) paramTypes.push_back(PVD->getType()); // Add types for representing parameter derivatives. // FIXME: We are assuming all function parameters are differentiable. We @@ -164,7 +164,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Cast to function pointer. gradFuncOverloadEPI); - DeclContext* DC = const_cast(m_Function->getDeclContext()); + auto* DC = const_cast(m_Function->getDeclContext()); m_Sema.CurContext = DC; DeclWithContext gradientOverloadFDWC = m_Builder.cloneFunction(m_Function, *this, DC, noLoc, gradientNameInfo, @@ -182,8 +182,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, overloadParams.reserve(totalDerivedParamsSize); callArgs.reserve(gradientParams.size()); - for (auto PVD : m_Function->parameters()) { - auto VD = utils::BuildParmVarDecl( + for (auto* PVD : m_Function->parameters()) { + auto* VD = utils::BuildParmVarDecl( m_Sema, gradientOverloadFD, PVD->getIdentifier(), PVD->getType(), PVD->getStorageClass(), /*defArg=*/nullptr, PVD->getTypeSourceInfo()); overloadParams.push_back(VD); @@ -198,18 +198,18 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // parameter represents an actual derivative of one of the function // original parameters. if (effectiveGradientIndex < gradientParams.size()) { - auto GVD = gradientParams[effectiveGradientIndex]; + auto* GVD = gradientParams[effectiveGradientIndex]; II = CreateUniqueIdentifier("_temp_" + GVD->getNameAsString()); SC = GVD->getStorageClass(); } else { II = CreateUniqueIdentifier("_d_" + std::to_string(i)); } - auto PVD = utils::BuildParmVarDecl(m_Sema, gradientOverloadFD, II, + auto* PVD = utils::BuildParmVarDecl(m_Sema, gradientOverloadFD, II, outputParamType, SC); overloadParams.push_back(PVD); } - for (auto PVD : overloadParams) { + for (auto* PVD : overloadParams) { if (PVD->getIdentifier()) m_Sema.PushOnScopeChains(PVD, getCurrentScope(), /*AddToContext=*/false); @@ -227,10 +227,10 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // overloaded derived function to the correct type. for (std::size_t i = m_Function->getNumParams(); i < gradientParams.size(); ++i) { - auto overloadParam = overloadParams[i]; - auto gradientParam = gradientParams[i]; + auto* overloadParam = overloadParams[i]; + auto* gradientParam = gradientParams[i]; - auto gradientVD = + auto* gradientVD = BuildVarDecl(gradientParam->getType(), gradientParam->getName(), BuildDeclRef(overloadParam)); callArgs.push_back(BuildDeclRef(gradientVD)); @@ -274,7 +274,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, DiffInputVarsInfo DVI; if (request.Args) { DVI = request.DVI; - for (auto dParam : DVI) + for (const auto& dParam : DVI) args.push_back(dParam.param); } else @@ -304,16 +304,16 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // If Jacobian is asked, the last parameter is the result parameter // and should be ignored if (args.size() != FD->getNumParams()-1){ - for (auto arg : args) { - auto it = std::find(FD->param_begin(), FD->param_end()-1, arg); + for (const auto* arg : args) { + const auto* const it = std::find(FD->param_begin(), FD->param_end()-1, arg); auto idx = std::distance(FD->param_begin(), it); gradientName += ('_' + std::to_string(idx)); } } }else{ if (args.size() != FD->getNumParams()){ - for (auto arg : args) { - auto it = std::find(FD->param_begin(), FD->param_end(), arg); + for (const auto* arg : args) { + const auto* it = std::find(FD->param_begin(), FD->param_end(), arg); auto idx = std::distance(FD->param_begin(), it); gradientName += ('_' + std::to_string(idx)); } @@ -342,7 +342,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (!isVectorValued && numExtraParam == 0) shouldCreateOverload = true; - auto originalFnType = dyn_cast(m_Function->getType()); + const auto* originalFnType = dyn_cast(m_Function->getType()); // For a function f of type R(A1, A2, ..., An), // the type of the gradient function is void(A1, A2, ..., An, R*, R*, ..., // R*) . the type of the jacobian function is void(A1, A2, ..., An, R*, R*) @@ -357,7 +357,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Create the gradient function declaration. llvm::SaveAndRestore SaveContext(m_Sema.CurContext); llvm::SaveAndRestore SaveScope(m_CurScope); - DeclContext* DC = const_cast(m_Function->getDeclContext()); + auto* DC = const_cast(m_Function->getDeclContext()); m_Sema.CurContext = DC; DeclWithContext result = m_Builder.cloneFunction( m_Function, *this, DC, noLoc, name, gradientFunctionType); @@ -393,7 +393,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Creates the ArraySubscriptExprs for the independent variables size_t idx = 0; - for (auto arg : args) { + for (const auto* arg : args) { // FIXME: fix when adding array inputs, now we are just skipping all // array/pointer inputs (not treating them as independent variables). if (utils::isArrayOrPointerType(arg->getType())) { @@ -405,11 +405,11 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, auto size_type = m_Context.getSizeType(); unsigned size_type_bits = m_Context.getIntWidth(size_type); // Create the idx literal. - auto i = + auto* i = IntegerLiteral::Create(m_Context, llvm::APInt(size_type_bits, idx), size_type, noLoc); // Create the jacobianMatrix[idx] expression. - auto result_at_i = + auto* result_at_i = m_Sema.CreateBuiltinArraySubscriptExpr(m_Result, noLoc, i, noLoc) .get(); m_Variables[arg] = result_at_i; @@ -454,10 +454,9 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, DerivativeAndOverload ReverseModeVisitor::DerivePullback(const clang::FunctionDecl* FD, const DiffRequest& request) { - auto* analyzer = new TBRAnalyzer(&m_Context); - analyzer->Analyze(FD); - m_ToBeRecorded = analyzer->getResult(); - delete analyzer; + TBRAnalyzer analyzer(m_Context); + analyzer.Analyze(FD); + m_ToBeRecorded = analyzer.getResult(); // for (auto pair : m_ToBeRecorded) { // auto line = @@ -494,7 +493,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, auto DNI = utils::BuildDeclarationNameInfo(m_Sema, derivativeName); auto paramTypes = ComputeParamTypes(args); - auto originalFnType = dyn_cast(m_Function->getType()); + const auto* originalFnType = dyn_cast(m_Function->getType()); if (m_ExternalSource) m_ExternalSource->ActAfterCreatingDerivedFnParamTypes(paramTypes); @@ -547,12 +546,12 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, for (Stmt* S : m_Globals) addToCurrentBlock(S, direction::forward); // Forward pass. - if (auto CS = dyn_cast(forward)) + if (auto* CS = dyn_cast(forward)) for (Stmt* S : CS->body()) addToCurrentBlock(S, direction::forward); // Reverse pass. - if (auto RCS = dyn_cast(reverse)) + if (auto* RCS = dyn_cast(reverse)) for (Stmt* S : RCS->body()) addToCurrentBlock(S, direction::forward); @@ -570,10 +569,9 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, } void ReverseModeVisitor::DifferentiateWithClad() { - auto* analyzer = new TBRAnalyzer(&m_Context); - analyzer->Analyze(m_Function); - m_ToBeRecorded = analyzer->getResult(); - delete analyzer; + TBRAnalyzer analyzer(m_Context); + analyzer.Analyze(m_Function); + m_ToBeRecorded = analyzer.getResult(); // for (auto pair : m_ToBeRecorded) { // auto line = @@ -600,7 +598,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // we do not know the correct size. if (utils::isArrayOrPointerType(VDDerivedType)) continue; - auto VDDerived = + auto* VDDerived = BuildVarDecl(VDDerivedType, "_d_" + param->getNameAsString(), getZeroInit(VDDerivedType)); m_Variables[param] = BuildDeclRef(VDDerived); @@ -616,13 +614,13 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, for (Stmt* S : m_Globals) addToCurrentBlock(S, direction::forward); // Forward pass. - if (auto CS = dyn_cast(Forward)) + if (auto* CS = dyn_cast(Forward)) for (Stmt* S : CS->body()) addToCurrentBlock(S, direction::forward); else addToCurrentBlock(Forward, direction::forward); // Reverse pass. - if (auto RCS = dyn_cast(Reverse)) + if (auto* RCS = dyn_cast(Reverse)) for (Stmt* S : RCS->body()) addToCurrentBlock(S, direction::forward); else @@ -636,7 +634,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, unsigned numParams = m_Function->getNumParams(); auto origParams = m_Function->parameters(); llvm::ArrayRef paramsRef = m_Derivative->parameters(); - auto originalFnType = dyn_cast(m_Function->getType()); + const auto* originalFnType = dyn_cast(m_Function->getType()); // Extract Pointer from Clad Array Ref llvm::SmallVector cladRefParams; @@ -649,9 +647,9 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, paramType = m_Context.getPointerType( QualType(paramType->getPointeeOrArrayElementType(), 0)); - auto arrayRefNameExpr = BuildDeclRef(paramsRef[numParams + i]); - auto getPointerExpr = BuildCallExprToMemFn(arrayRefNameExpr, "ptr", {}); - auto arrayRefToArrayStmt = BuildVarDecl( + auto* arrayRefNameExpr = BuildDeclRef(paramsRef[numParams + i]); + auto* getPointerExpr = BuildCallExprToMemFn(arrayRefNameExpr, "ptr", {}); + auto* arrayRefToArrayStmt = BuildVarDecl( paramType, "d_" + paramsRef[i]->getNameAsString(), getPointerExpr); addToCurrentBlock(BuildDeclStmt(arrayRefToArrayStmt), direction::forward); cladRefParams.push_back(arrayRefToArrayStmt); @@ -664,7 +662,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // First add the function itself as a parameter/argument enzymeArgs.push_back(BuildDeclRef(const_cast(m_Function))); - DeclContext* fdDeclContext = + auto* fdDeclContext = const_cast(m_Function->getDeclContext()); enzymeParams.push_back(m_Sema.BuildParmVarDeclForTypedef( fdDeclContext, noLoc, m_Function->getType())); @@ -696,13 +694,13 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, } llvm::SmallVector enzymeParamsType; - for (auto i : enzymeParams) + for (auto* i : enzymeParams) enzymeParamsType.push_back(i->getType()); QualType QT; - if (enzymeRealParams.size()) { + if (!enzymeRealParams.empty()) { // Find the EnzymeGradient datastructure - auto gradDecl = LookupTemplateDeclInCladNamespace("EnzymeGradient"); + auto* gradDecl = LookupTemplateDeclInCladNamespace("EnzymeGradient"); TemplateArgumentListInfo TLI{}; llvm::APSInt argValue(std::to_string(enzymeRealParams.size())); @@ -730,14 +728,14 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Prepare the statements that assign the gradients to // non array/pointer type parameters of the original function - if (enzymeRealParams.size() != 0) { - auto gradDeclStmt = BuildVarDecl(QT, "grad", enzymeCall, true); + if (enzymeRealParams.empty()) { + auto* gradDeclStmt = BuildVarDecl(QT, "grad", enzymeCall, true); addToCurrentBlock(BuildDeclStmt(gradDeclStmt), direction::forward); for (unsigned i = 0; i < enzymeRealParams.size(); i++) { - auto LHSExpr = BuildOp(UO_Deref, BuildDeclRef(enzymeRealParamsRef[i])); + auto* LHSExpr = BuildOp(UO_Deref, BuildDeclRef(enzymeRealParamsRef[i])); - auto ME = utils::BuildMemberExpr(m_Sema, getCurrentScope(), + auto* ME = utils::BuildMemberExpr(m_Sema, getCurrentScope(), BuildDeclRef(gradDeclStmt), "d_arr"); Expr* gradIndex = dyn_cast( @@ -747,7 +745,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, m_Sema.CreateBuiltinArraySubscriptExpr(ME, noLoc, gradIndex, noLoc) .get(); - auto assignExpr = BuildOp(BO_Assign, LHSExpr, RHSExpr); + auto* assignExpr = BuildOp(BO_Assign, LHSExpr, RHSExpr); addToCurrentBlock(assignExpr, direction::forward); } } else { @@ -790,13 +788,12 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, return nullptr; if (!isa(S)) return S; - auto CS = cast(S); + auto* CS = cast(S); if (CS->size() == 0) return nullptr; - else if (CS->size() == 1) + if (CS->size() == 1) return CS->body_front(); - else - return CS; + return CS; } StmtDiff ReverseModeVisitor::VisitIfStmt(const clang::IfStmt* If) { @@ -888,20 +885,19 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (isa(Branch)) { StmtDiff BranchDiff = Visit(Branch); return BranchDiff; - } else { - beginBlock(direction::forward); - if (m_ExternalSource) - m_ExternalSource->ActBeforeDifferentiatingSingleStmtBranchInVisitIfStmt(); - StmtDiff BranchDiff = DifferentiateSingleStmt(Branch, /*dfdS=*/nullptr); - addToCurrentBlock(BranchDiff.getStmt(), direction::forward); + } + beginBlock(direction::forward); + if (m_ExternalSource) + m_ExternalSource->ActBeforeDifferentiatingSingleStmtBranchInVisitIfStmt(); + StmtDiff BranchDiff = DifferentiateSingleStmt(Branch, /*dfdS=*/nullptr); + addToCurrentBlock(BranchDiff.getStmt(), direction::forward); - if (m_ExternalSource) - m_ExternalSource->ActBeforeFinalisingVisitBranchSingleStmtInIfVisitStmt(); + if (m_ExternalSource) + m_ExternalSource->ActBeforeFinalisingVisitBranchSingleStmtInIfVisitStmt(); - Stmt* Forward = unwrapIfSingleStmt(endBlock(direction::forward)); - Stmt* Reverse = unwrapIfSingleStmt(BranchDiff.getStmt_dx()); - return StmtDiff(Forward, Reverse); - } + Stmt* Forward = unwrapIfSingleStmt(endBlock(direction::forward)); + Stmt* Reverse = unwrapIfSingleStmt(BranchDiff.getStmt_dx()); + return StmtDiff(Forward, Reverse); }; StmtDiff thenDiff = VisitBranch(If->getThen()); @@ -963,8 +959,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, .get() .second; - auto ifTrue = CO->getTrueExpr(); - auto ifFalse = CO->getFalseExpr(); + auto* ifTrue = CO->getTrueExpr(); + auto* ifFalse = CO->getFalseExpr(); auto VisitBranch = [&](const Expr* Branch, Expr* dfdx) -> std::pair { @@ -1070,7 +1066,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, StmtDiff cond; if (FS->getCond()) cond = Visit(FS->getCond()); - auto IDRE = dyn_cast(FS->getInc()); + const auto* IDRE = dyn_cast(FS->getInc()); const Expr* inc = IDRE ? Visit(FS->getInc()).getExpr() : FS->getInc(); // Differentiate the increment expression of the for loop @@ -1083,7 +1079,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, std::tie(incDiff, incExprDiff) = DifferentiateSingleExpr(inc); Expr* incResult = nullptr; // If any additional statements were created, enclose them into lambda. - CompoundStmt* Additional = cast(incDiff.getStmt()); + auto* Additional = cast(incDiff.getStmt()); bool anyNonExpr = std::any_of(Additional->body_begin(), Additional->body_end(), [](Stmt* S) { return !isa(S); }); @@ -1120,7 +1116,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, Expr* forwardCond = cond.getExpr(); if (condVarRes.getExpr() && isa(condVarRes.getExpr())) { forwardCond = BuildOp(BO_Comma, cond.getExpr(), cast(condVarRes.getExpr())); - } + } Stmt* Forward = new (m_Context) ForStmt(m_Context, initResult.getStmt(), @@ -1176,7 +1172,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Initially, df/df = 1. const Expr* value = RS->getRetValue(); QualType type = value->getType(); - auto dfdf = m_Pullback; + auto* dfdf = m_Pullback; if (isa(dfdf) || isa(dfdf)) { ExprResult tmp = dfdf; dfdf = m_Sema @@ -1241,37 +1237,36 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, Expr* clonedILE = m_Sema.ActOnInitList(noLoc, clonedExprs, noLoc).get(); return StmtDiff(clonedILE); - } else { - // FIXME: This is a makeshift arrangement to differentiate an InitListExpr - // that represents a ValueAndPushforward type. Ideally this must be - // differentiated at VisitCXXConstructExpr + } + // FIXME: This is a makeshift arrangement to differentiate an InitListExpr + // that represents a ValueAndPushforward type. Ideally this must be + // differentiated at VisitCXXConstructExpr #ifndef NDEBUG - bool isValueAndPushforward = isCladValueAndPushforwardType(ILEType); - assert(isValueAndPushforward && - "Only InitListExpr that represents arrays or ValueAndPushforward " - "Object initialization is supported"); + bool isValueAndPushforward = isCladValueAndPushforwardType(ILEType); + assert(isValueAndPushforward && + "Only InitListExpr that represents arrays or ValueAndPushforward " + "Object initialization is supported"); #endif - // Here we assume that the adjoint expression of the first element in - // InitList is dfdx().value and the adjoint for the second element is - // dfdx().pushforward. At this point the top of the Tape must contain a - // ValueAndPushforward object that represents derivative of the - // ValueAndPushforward object returned by the function whose derivative is - // requested. - Expr* dValueExpr = - utils::BuildMemberExpr(m_Sema, getCurrentScope(), dfdx(), "value"); - StmtDiff clonedValueEI = Visit(ILE->getInit(0), dValueExpr).getExpr(); - clonedExprs[0] = clonedValueEI.getExpr(); - - Expr* dPushforwardExpr = utils::BuildMemberExpr(m_Sema, getCurrentScope(), - dfdx(), "pushforward"); - Expr* clonedPushforwardEI = - Visit(ILE->getInit(1), dPushforwardExpr).getExpr(); - clonedExprs[1] = clonedPushforwardEI; + // Here we assume that the adjoint expression of the first element in + // InitList is dfdx().value and the adjoint for the second element is + // dfdx().pushforward. At this point the top of the Tape must contain a + // ValueAndPushforward object that represents derivative of the + // ValueAndPushforward object returned by the function whose derivative is + // requested. + Expr* dValueExpr = + utils::BuildMemberExpr(m_Sema, getCurrentScope(), dfdx(), "value"); + StmtDiff clonedValueEI = Visit(ILE->getInit(0), dValueExpr).getExpr(); + clonedExprs[0] = clonedValueEI.getExpr(); - Expr* clonedILE = m_Sema.ActOnInitList(noLoc, clonedExprs, noLoc).get(); - return StmtDiff(clonedILE); - } + Expr* dPushforwardExpr = utils::BuildMemberExpr(m_Sema, getCurrentScope(), + dfdx(), "pushforward"); + Expr* clonedPushforwardEI = + Visit(ILE->getInit(1), dPushforwardExpr).getExpr(); + clonedExprs[1] = clonedPushforwardEI; + + Expr* clonedILE = m_Sema.ActOnInitList(noLoc, clonedExprs, noLoc).get(); + return StmtDiff(clonedILE); } StmtDiff @@ -1291,8 +1286,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // reverseIndices[i] = Clone(IdxDiff.getExpr()); forwSweepDerivativeIndices[i] = IdxDiff.getExpr(); } - auto cloned = BuildArraySubscript(BaseDiff.getExpr(), clonedIndices); - auto valueForRevSweep = BuildArraySubscript(BaseDiff.getExpr(), reverseIndices); + auto* cloned = BuildArraySubscript(BaseDiff.getExpr(), clonedIndices); + auto* valueForRevSweep = BuildArraySubscript(BaseDiff.getExpr(), reverseIndices); Expr* target = BaseDiff.getExpr_dx(); if (!target) return cloned; @@ -1320,7 +1315,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, result = target; // Create the (target += dfdx) statement. if (dfdx()) { - auto add_assign = BuildOp(BO_AddAssign, result, dfdx()); + auto* add_assign = BuildOp(BO_AddAssign, result, dfdx()); // Add it to the body statements. addToCurrentBlock(add_assign, direction::reverse); } @@ -1331,7 +1326,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, DeclRefExpr* clonedDRE = nullptr; // Check if referenced Decl was "replaced" with another identifier inside // the derivative - if (auto VD = dyn_cast(DRE->getDecl())) { + if (const auto* VD = dyn_cast(DRE->getDecl())) { auto it = m_DeclReplacements.find(VD); if (it != std::end(m_DeclReplacements)) clonedDRE = BuildDeclRef(it->second); @@ -1343,13 +1338,13 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Sema::BuildDeclRefExpr is responsible for adding captured fields // to the underlying struct of a lambda. if (clonedDRE->getDecl()->getDeclContext() != m_Sema.CurContext) { - auto referencedDecl = cast(clonedDRE->getDecl()); + auto* referencedDecl = cast(clonedDRE->getDecl()); clonedDRE = cast(BuildDeclRef(referencedDecl)); } } else clonedDRE = cast(Clone(DRE)); - if (auto decl = dyn_cast(clonedDRE->getDecl())) { + if (auto* decl = dyn_cast(clonedDRE->getDecl())) { if (isVectorValued) { if (m_VectorOutput.size() <= outputArrayCursor) return StmtDiff(clonedDRE); @@ -1361,7 +1356,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, } // Create the (jacobianMatrix[idx] += dfdx) statement. if (dfdx()) { - auto add_assign = BuildOp(BO_AddAssign, it->second, dfdx()); + auto* add_assign = BuildOp(BO_AddAssign, it->second, dfdx()); // Add it to the body statements. addToCurrentBlock(add_assign, direction::reverse); } @@ -1533,7 +1528,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // is done to reduce cloning complexity and only clone once. The type is // same as the call expression as it is the type used to declare the // _gradX array - Expr* dArg; + Expr* dArg = nullptr; QualType argType = utils::GetValueType(arg->getType()); dArg = StoreAndRef(/*E=*/nullptr, argType, direction::reverse, "_r", /*forceDeclCreation=*/true); @@ -1620,7 +1615,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, block.insert(block.begin() + insertionPoint, BuildDeclStmt(argDiffLocalVD)); // Restore agrs - auto op = BuildOp(BinaryOperatorKind::BO_Assign, + auto* op = BuildOp(BinaryOperatorKind::BO_Assign, argDiff.getExpr(), BuildDeclRef(argDiffLocalVD)); block.insert(block.begin() + insertionPoint + 1, op); @@ -1640,7 +1635,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, } else { // Restore args auto& block = getCurrentBlock(direction::reverse); - auto op = BuildOp(BinaryOperatorKind::BO_Assign, + auto* op = BuildOp(BinaryOperatorKind::BO_Assign, argDiff.getExpr(), argDiffStore.getExpr()); block.insert(block.begin() + insertionPoint, op); // We added restoration of the original arg. Thus we need to @@ -1730,13 +1725,13 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, } } - for (auto argDerivative : CallArgDx) { + for (auto* argDerivative : CallArgDx) { gradVarDecl = nullptr; gradVarExpr = nullptr; gradArgExpr = nullptr; gradVarII = CreateUniqueIdentifier(funcPostfix()); - auto PVD = FD->getParamDecl(idx); + const auto* PVD = FD->getParamDecl(idx); bool passByRef = utils::IsReferenceOrPointerType(PVD->getType()); if (passByRef && isa(CE->getArg(idx))) { // If the argument is a temporary variable, this means that param type @@ -1756,7 +1751,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, isa(argDerivative->getType())) { Expr* init = utils::BuildCladArrayInitByConstArray(m_Sema, argDerivative); - auto derivativeArrayRefVD = BuildVarDecl( + auto* derivativeArrayRefVD = BuildVarDecl( GetCladArrayRefOfType(argDerivative->getType() ->getPointeeOrArrayElementType() ->getCanonicalTypeInternal()), @@ -1841,7 +1836,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (!OverloadedDerivedFn) { if (FD == m_Function && m_Mode == DiffMode::experimental_pullback) { // Recursive call. - auto selfRef = + auto* selfRef = m_Sema .BuildDeclarationNameExpr(CXXScopeSpec(), m_Derivative->getNameInfo(), @@ -1906,9 +1901,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, block.insert(block.begin(), ArgDeclStmts.begin(), ArgDeclStmts.end()); return StmtDiff(Clone(CE)); - } else { - usingNumericalDiff = true; } + usingNumericalDiff = true; } else if (pullbackFD) { if (baseDiff.getExpr()) { Expr* baseE = baseDiff.getExpr(); @@ -1941,7 +1935,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Put Result array declaration in the function body. // Call the gradient, passing Result as the last Arg. auto& block = getCurrentBlock(direction::reverse); - auto it = std::begin(block) + insertionPoint; + auto* it = std::begin(block) + insertionPoint; // Insert the _gradX declaration statements it = block.insert(it, ArgDeclStmts.begin(), ArgDeclStmts.end()); @@ -2081,7 +2075,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // xi = -xj // dxi/dxj = -1.0 // df/dxj += df/dxi * dxi/dxj = -df/dxi - auto d = BuildOp(UO_Minus, dfdx()); + auto* d = BuildOp(UO_Minus, dfdx()); diff = Visit(E, d); } else if (opCode == UO_PostInc || opCode == UO_PostDec) { diff = Visit(E, dfdx()); @@ -2101,7 +2095,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, addToCurrentBlock(BuildOp(op, Clone(diff.getRevSweepExpr())), direction::reverse); } auto op = opCode == UO_PreInc ? BinaryOperatorKind::BO_Add : BinaryOperatorKind::BO_Sub; - auto sum = BuildOp(op, diff.getRevSweepExpr(), ConstantFolder::synthesizeLiteral(m_Context.IntTy, m_Context, 1)); + auto* sum = BuildOp(op, diff.getRevSweepExpr(), ConstantFolder::synthesizeLiteral(m_Context.IntTy, m_Context, 1)); valueForRevPass = utils::BuildParenExpr(m_Sema, sum); } else if (opCode == UnaryOperatorKind::UO_Real || opCode == UnaryOperatorKind::UO_Imag) { @@ -2124,7 +2118,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // This code snippet should be removed once reverse mode officially // supports pointers. if (opCode == UnaryOperatorKind::UO_AddrOf) { - if (auto MD = dyn_cast(m_Function)) { + if (const auto* MD = dyn_cast(m_Function)) { if (MD->isInstance()) { auto thisType = clad_compat::CXXMethodDecl_getThisType(m_Sema, MD); if (utils::SameCanonicalType(thisType, UnOp->getType())) { @@ -2160,8 +2154,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, StmtDiff Rdiff{}; StmtDiff Lstored{}; Expr* valueForRevPass = nullptr; - auto L = BinOp->getLHS(); - auto R = BinOp->getRHS(); + auto* L = BinOp->getLHS(); + auto* R = BinOp->getRHS(); // If it is an assignment operator, its result is a reference to LHS and // we should return it. Expr* ResultRef = nullptr; @@ -2181,7 +2175,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, Ldiff = Visit(L, dfdx()); // dxi/xr = -1.0 // df/dxl += df/dxi * dxi/xr = -df/dxi - auto dr = BuildOp(UO_Minus, dfdx()); + auto* dr = BuildOp(UO_Minus, dfdx()); Rdiff = Visit(R, dr); } else if (opCode == BO_Mul) { // xi = xl * xr @@ -2256,8 +2250,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, BinOp->getEndLoc(), "derivative of an assignment attempts to assign to unassignable " "expr, assignment ignored"); - auto LDRE = dyn_cast(L); - auto RDRE = dyn_cast(R); + auto* LDRE = dyn_cast(L); + auto* RDRE = dyn_cast(R); if (!LDRE && !RDRE) return Clone(BinOp); @@ -2270,8 +2264,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // FIXME: Put this code into a separate subroutine and break out early // using return if the diff mode is not jacobian and we are not dealing // with the `outputArray`. - if (auto ASE = dyn_cast(L)) { - if (auto DRE = dyn_cast(ASE->getBase()->IgnoreImplicit())) { + if (auto* ASE = dyn_cast(L)) { + if (auto* DRE = dyn_cast(ASE->getBase()->IgnoreImplicit())) { auto type = QualType(DRE->getType()->getPointeeOrArrayElementType(), /*Quals=*/0); std::string DRE_str = DRE->getDecl()->getNameAsString(); @@ -2291,10 +2285,10 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, unsigned size_type_bits = m_Context.getIntWidth(size_type); llvm::APInt idxValue(size_type_bits, i + (outputArrayCursor * numParams)); - auto idx = IntegerLiteral::Create(m_Context, idxValue, + auto* idx = IntegerLiteral::Create(m_Context, idxValue, size_type, noLoc); // Create the jacobianMatrix[idx] expression. - auto result_at_i = m_Sema + auto* result_at_i = m_Sema .CreateBuiltinArraySubscriptExpr( m_Result, noLoc, idx, noLoc) .get(); @@ -2303,7 +2297,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, m_VectorOutput.push_back(temp_m_Variables); } - auto dfdf = ConstantFolder::synthesizeLiteral(m_Context.IntTy, + auto* dfdf = ConstantFolder::synthesizeLiteral(m_Context.IntTy, m_Context, 1); ExprResult tmp = dfdf; dfdf = m_Sema @@ -2326,11 +2320,11 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, beginBlock(direction::essential_reverse); Ldiff = Visit(L, dfdx()); Stmts essentialRevBlock = EndBlockWithoutCreatingCS(direction::essential_reverse); - auto Lblock = endBlock(direction::reverse); + auto* Lblock = endBlock(direction::reverse); auto return_exprs = utils::GetInnermostReturnExpr(Ldiff.getExpr()); if (L->HasSideEffects(m_Context)) { Expr* E = Ldiff.getExpr(); - auto storeE = StoreAndRef(E, m_Context.getLValueReferenceType(E->getType())); + auto* storeE = StoreAndRef(E, m_Context.getLValueReferenceType(E->getType())); Ldiff.updateStmt(storeE); } @@ -2341,8 +2335,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (!AssignedDiff) { // If either LHS or RHS is a declaration reference, visit it to avoid // naming collision - auto LDRE = dyn_cast(L); - auto RDRE = dyn_cast(R); + auto* LDRE = dyn_cast(L); + auto* RDRE = dyn_cast(R); if (!LDRE && !RDRE) return Clone(BinOp); @@ -2357,7 +2351,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, auto Lblock_begin = Lblock->body_rbegin(); auto Lblock_end = Lblock->body_rend(); - for (auto S : essentialRevBlock) + for (auto& S : essentialRevBlock) addToCurrentBlock(S, direction::reverse); if (dfdx() && Lblock_begin != Lblock_end) { @@ -2365,7 +2359,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, Lblock_begin = std::next(Lblock_begin); } - for (auto E : return_exprs) { + for (auto& E : return_exprs) { auto pushPop = StoreAndRestore(E); addToCurrentBlock(pushPop.getExpr(), direction::forward); addToCurrentBlock(pushPop.getExpr_dx(), direction::reverse); @@ -2376,7 +2370,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Save old value for the derivative of LHS, to avoid problems with cases // like x = x. - auto oldValue = StoreAndRef(AssignedDiff, direction::reverse, "_r_d", + auto* oldValue = StoreAndRef(AssignedDiff, direction::reverse, "_r_d", /*forceDeclCreation=*/true); if (opCode == BO_Assign) { @@ -2417,7 +2411,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (isInsideLoop) addToCurrentBlock(LCloned, direction::forward); - Expr* dr = BuildOp(BO_Mul, LCloned, oldValue); + Expr* dr = BuildOp(BO_Mul, LCloned, oldValue); dr = StoreAndRef(dr, direction::reverse); Rdiff = Visit(R, dr); RDelayed.Finalize(Rdiff.getExpr()); @@ -2457,7 +2451,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, for (auto it = Lblock_begin; it != Lblock_end; ++it) addToCurrentBlock(*it, direction::reverse); } else if (opCode == BO_Comma) { - auto zero = + auto* zero = ConstantFolder::synthesizeLiteral(m_Context.IntTy, m_Context, 0); Ldiff = Visit(L, zero); Rdiff = Visit(R, dfdx()); @@ -2472,8 +2466,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // If either LHS or RHS is a declaration reference, visit it to avoid // naming collision - auto LDRE = dyn_cast(L); - auto RDRE = dyn_cast(R); + auto* LDRE = dyn_cast(L); + auto* RDRE = dyn_cast(R); if (!LDRE && !RDRE) return Clone(BinOp); @@ -2496,7 +2490,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // VDDerivedInit now serves two purposes -- as the initial derivative value // or the size of the derivative array -- depending on the primal type. - if (auto AT = dyn_cast(VD->getType())) { + if (const auto* AT = dyn_cast(VD->getType())) { Expr* init = getArraySizeExpr(AT, m_Context, *this); VDDerivedInit = init; VDDerived = BuildVarDecl(VDDerivedType, "_d_" + VD->getNameAsString(), @@ -2522,7 +2516,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Computation of hessian requires this code to be correctly // differentiated. bool specialThisDiffCase = false; - if (auto MD = dyn_cast(m_Function)) { + if (const auto* MD = dyn_cast(m_Function)) { if (VDDerivedType->isPointerType() && MD->isInstance()) { specialThisDiffCase = true; } @@ -2624,11 +2618,11 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (isInsideLoop) { auto tape = MakeCladTapeFor(derivedVDE); addToCurrentBlock(tape.Push); - auto reverseSweepDerivativePointerE = + auto* reverseSweepDerivativePointerE = BuildVarDecl(derivedVDE->getType(), "_t", tape.Pop); m_LoopBlock.back().push_back( BuildDeclStmt(reverseSweepDerivativePointerE)); - auto revSweepDerPointerRef = + auto* revSweepDerPointerRef = BuildDeclRef(reverseSweepDerivativePointerE); derivedVDE = BuildOp(UnaryOperatorKind::UO_Deref, revSweepDerPointerRef); @@ -2686,8 +2680,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // double y = x; // -> // double _d_y = _d_x; double y = x; - for (auto D : DS->decls()) { - if (auto VD = dyn_cast(D)) { + for (auto* D : DS->decls()) { + if (auto* VD = dyn_cast(D)) { VarDeclDiff VDDiff = DifferentiateVarDecl(VD); // Check if decl's name is the same as before. The name may be changed @@ -2788,7 +2782,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, StmtDiff ReverseModeVisitor::VisitMemberExpr(const MemberExpr* ME) { auto baseDiff = VisitWithExplicitNoDfDx(ME->getBase()); - auto field = ME->getMemberDecl(); + auto* field = ME->getMemberDecl(); assert(!isa(field) && "CXXMethodDecl nodes not supported yet!"); MemberExpr* clonedME = utils::BuildMemberExpr( @@ -2827,7 +2821,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (isa(B) || isa(B)) return false; if (isa(B)) { - auto UO = cast(B); + auto* UO = cast(B); auto OpKind = UO->getOpcode(); if (OpKind == UO_Plus || OpKind == UO_Minus) return UsefulToStoreGlobal(UO->getSubExpr()); @@ -2853,7 +2847,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, Expr* init) { // Create identifier before going to topmost scope // to let Sema::LookupName see the whole scope. - auto identifier = CreateUniqueIdentifier(prefix); + auto* identifier = CreateUniqueIdentifier(prefix); // Save current scope and temporarily go to topmost function scope. llvm::SaveAndRestore SaveScope(m_CurScope); assert(m_DerivativeFnScope && "must be set"); @@ -2908,7 +2902,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, return {Push, Pop}; } Expr* init = nullptr; - if (auto AT = dyn_cast(Type)) + if (const auto* const AT = dyn_cast(Type)) init = getArraySizeExpr(AT, m_Context, *this); Expr* Ref = BuildDeclRef(GlobalStoreImpl(Type, prefix, init)); @@ -2923,12 +2917,12 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (isInsideLoop) { auto pushPop = BuildPushPop(E, Type, prefix, true); - auto popAssign = BuildOp(BinaryOperatorKind::BO_Assign, Clone(E), pushPop.getExpr_dx()); + auto* popAssign = BuildOp(BinaryOperatorKind::BO_Assign, Clone(E), pushPop.getExpr_dx()); return {pushPop.getExpr(), popAssign}; } Expr* init = nullptr; - if (auto AT = dyn_cast(Type)) + if (const auto* AT = dyn_cast(Type)) init = getArraySizeExpr(AT, m_Context, *this); Expr* Ref = BuildDeclRef(GlobalStoreImpl(Type, prefix, init)); @@ -2936,7 +2930,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, Expr* Store = BuildOp(BO_Assign, Ref, Clone(E)); Expr* Restore = nullptr; if (E->isModifiableLvalue(m_Context) == Expr::MLV_Valid) { - auto r = Clone(E); + auto* r = Clone(E); Restore = BuildOp(BO_Assign, r, Ref); } return {Store, Restore}; @@ -2948,7 +2942,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (isConstant || !needsUpdate) return; if (isInsideLoop) { - auto Push = cast(Result.getExpr()); + auto* Push = cast(Result.getExpr()); unsigned lastArg = Push->getNumArgs() - 1; Push->setArg(lastArg, V.m_Sema.DefaultLvalueConversion(New).get()); } else { @@ -2980,22 +2974,21 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, StmtDiff{Push, Pop}, /*isConstant*/ false, /*isInsideLoop*/ true, /*needsUpdate=*/ true}; - } else { - Expr* Ref = BuildDeclRef(GlobalStoreImpl( - getNonConstType(E->getType(), m_Context, m_Sema), prefix)); - // Return reference to the declaration instead of original expression. - return DelayedStoreResult{*this, - StmtDiff{Ref, Ref}, - /*isConstant*/ false, - /*isInsideLoop*/ false, /*needsUpdate=*/ true}; } + Expr* Ref = BuildDeclRef(GlobalStoreImpl( + getNonConstType(E->getType(), m_Context, m_Sema), prefix)); + // Return reference to the declaration instead of original expression. + return DelayedStoreResult{*this, + StmtDiff{Ref, Ref}, + /*isConstant*/ false, + /*isInsideLoop*/ false, /*needsUpdate=*/ true}; } ReverseModeVisitor::LoopCounter::LoopCounter(ReverseModeVisitor& RMV) : m_RMV(RMV) { ASTContext& C = m_RMV.m_Context; if (RMV.isInsideLoop) { - auto zero = ConstantFolder::synthesizeLiteral(C.getSizeType(), C, + auto* zero = ConstantFolder::synthesizeLiteral(C.getSizeType(), C, /*val=*/0); auto counterTape = m_RMV.MakeCladTapeFor(zero); m_Ref = counterTape.Last(); @@ -3116,7 +3109,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, .ActOnDoStmt(/*DoLoc=*/noLoc, bodyDiff.getStmt_dx(), /*WhileLoc=*/noLoc, /*CondLParen=*/noLoc, counterCondition, - /*RCondRParen=*/noLoc) + /*CondRParen=*/noLoc) .get(); // for do-while statement endScope(); @@ -3147,9 +3140,9 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, Stmt* forLoopIncDiff, bool isForLoop) { Expr* counterIncrement = loopCounter.getCounterIncrement(); - auto activeBreakContHandler = PushBreakContStmtHandler(); + auto* activeBreakContHandler = PushBreakContStmtHandler(); activeBreakContHandler->BeginCFSwitchStmtScope(); - m_LoopBlock.push_back({}); + m_LoopBlock.emplace_back(); // differentiate loop body and add loop increment expression // in the forward block. StmtDiff bodyDiff = nullptr; @@ -3224,7 +3217,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, StmtDiff ReverseModeVisitor::VisitContinueStmt(const ContinueStmt* CS) { beginBlock(direction::forward); Stmt* newCS = m_Sema.ActOnContinueStmt(noLoc, getCurrentScope()).get(); - auto activeBreakContHandler = GetActiveBreakContStmtHandler(); + auto* activeBreakContHandler = GetActiveBreakContStmtHandler(); Stmt* CFCaseStmt = activeBreakContHandler->GetNextCFCaseStmt(); Stmt* pushExprToCurrentCase = activeBreakContHandler ->CreateCFTapePushExprToCurrentCase(); @@ -3236,7 +3229,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, StmtDiff ReverseModeVisitor::VisitBreakStmt(const BreakStmt* BS) { beginBlock(direction::forward); Stmt* newBS = m_Sema.ActOnBreakStmt(noLoc, getCurrentScope()).get(); - auto activeBreakContHandler = GetActiveBreakContStmtHandler(); + auto* activeBreakContHandler = GetActiveBreakContStmtHandler(); Stmt* CFCaseStmt = activeBreakContHandler->GetNextCFCaseStmt(); Stmt* pushExprToCurrentCase = activeBreakContHandler ->CreateCFTapePushExprToCurrentCase(); @@ -3248,7 +3241,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, Expr* ReverseModeVisitor::BreakContStmtHandler::CreateSizeTLiteralExpr( std::size_t value) { ASTContext& C = m_RMV.m_Context; - auto literalExpr = ConstantFolder::synthesizeLiteral(C.getSizeType(), C, + auto* literalExpr = ConstantFolder::synthesizeLiteral(C.getSizeType(), C, value); return literalExpr; } @@ -3257,7 +3250,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, assert(!m_ControlFlowTape && "InitializeCFTape() should not be called if " "m_ControlFlowTape is already initialized"); - auto zeroLiteral = CreateSizeTLiteralExpr(0); + auto* zeroLiteral = CreateSizeTLiteralExpr(0); m_ControlFlowTape.reset( new CladTapeResult(m_RMV.MakeCladTapeFor(zeroLiteral))); } @@ -3289,7 +3282,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, m_RMV.endScope(); ++m_CaseCounter; - auto counterLiteral = CreateSizeTLiteralExpr(m_CaseCounter); + auto* counterLiteral = CreateSizeTLiteralExpr(m_CaseCounter); CaseStmt* CS = clad_compat::CaseStmt_Create(m_RMV.m_Context, counterLiteral, nullptr, noLoc, noLoc, noLoc); @@ -3326,10 +3319,11 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // and corresponding push expression for this case statement // at the end of the forward block to cover the case when no // `break`/`continue` statements are hit. - auto lastSC = GetNextCFCaseStmt(); - auto pushExprToCurrentCase = CreateCFTapePushExprToCurrentCase(); + auto* lastSC = GetNextCFCaseStmt(); + auto* pushExprToCurrentCase = CreateCFTapePushExprToCurrentCase(); - Stmt *forwBlock, *revBlock; + Stmt *forwBlock = nullptr; + Stmt *revBlock = nullptr; forwBlock = utils::AppendAndCreateCompoundStmt(m_RMV.m_Context, bodyDiff.getStmt(), @@ -3343,12 +3337,12 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, auto condResult = m_RMV.m_Sema.ActOnCondition(m_RMV.getCurrentScope(), noLoc, m_ControlFlowTape->Pop, Sema::ConditionKind::Switch); - SwitchStmt* CFSS = clad_compat::Sema_ActOnStartOfSwitchStmt(m_RMV.m_Sema, + auto* CFSS = clad_compat::Sema_ActOnStartOfSwitchStmt(m_RMV.m_Sema, nullptr, condResult) .getAs(); // Registers all the switch cases - for (auto SC : m_SwitchCases) { + for (auto* SC : m_SwitchCases) { CFSS->addSwitchCase(SC); } m_RMV.m_Sema.ActOnFinishSwitchStmt(noLoc, CFSS, bodyDiff.getStmt_dx()); @@ -3373,7 +3367,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, StmtDiff ReverseModeVisitor::VisitCXXConstructExpr(const CXXConstructExpr* CE) { llvm::SmallVector clonedArgs; - for (auto arg : CE->arguments()) { + for (const auto* arg : CE->arguments()) { auto argDiff = Visit(arg, dfdx()); clonedArgs.push_back(argDiff.getExpr()); } @@ -3388,10 +3382,9 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, // Passing empty parenList here will silently cause 'most vexing // parse' issue. return StmtDiff(); - } else { - clonedArgsE = - m_Sema.ActOnParenListExpr(noLoc, noLoc, clonedArgs).get(); } + clonedArgsE = + m_Sema.ActOnParenListExpr(noLoc, noLoc, clonedArgs).get(); } } else { clonedArgsE = clonedArgs[0]; @@ -3453,7 +3446,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, ReverseModeVisitor::ComputeParamTypes(const DiffParams& diffParams) { llvm::SmallVector paramTypes; paramTypes.reserve(m_Function->getNumParams() * 2); - for (auto PVD : m_Function->parameters()) { + for (auto* PVD : m_Function->parameters()) { paramTypes.push_back(PVD->getType()); } // TODO: Add DiffMode::experimental_pullback support here as well. @@ -3477,7 +3470,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, paramTypes.push_back(effectiveReturnType); } - if (auto MD = dyn_cast(m_Function)) { + if (const auto* MD = dyn_cast(m_Function)) { const CXXRecordDecl* RD = MD->getParent(); if (MD->isInstance() && !RD->isLambda()) { QualType thisType = @@ -3487,8 +3480,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, } } - for (auto PVD : m_Function->parameters()) { - auto it = std::find(std::begin(diffParams), std::end(diffParams), PVD); + for (auto* PVD : m_Function->parameters()) { + const auto* it = std::find(std::begin(diffParams), std::end(diffParams), PVD); if (it != std::end(diffParams)) paramTypes.push_back(ComputeParamType(PVD->getType())); } @@ -3503,9 +3496,10 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, llvm::SmallVector ReverseModeVisitor::BuildParams(DiffParams& diffParams) { - llvm::SmallVector params, paramDerivatives; + llvm::SmallVector params; + llvm::SmallVector paramDerivatives; params.reserve(m_Function->getNumParams() + diffParams.size()); - auto derivativeFnType = cast(m_Derivative->getType()); + const auto* derivativeFnType = cast(m_Derivative->getType()); std::size_t dParamTypesIdx = m_Function->getNumParams(); if (m_Mode == DiffMode::experimental_pullback && @@ -3513,10 +3507,10 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, ++dParamTypesIdx; } - if (auto MD = dyn_cast(m_Function)) { + if (const auto* MD = dyn_cast(m_Function)) { const CXXRecordDecl* RD = MD->getParent(); if (!isVectorValued && MD->isInstance() && !RD->isLambda()) { - auto thisDerivativePVD = utils::BuildParmVarDecl( + auto* thisDerivativePVD = utils::BuildParmVarDecl( m_Sema, m_Derivative, CreateUniqueIdentifier("_d_this"), derivativeFnType->getParamType(dParamTypesIdx)); paramDerivatives.push_back(thisDerivativePVD); @@ -3534,8 +3528,8 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, } } - for (auto PVD : m_Function->parameters()) { - auto newPVD = utils::BuildParmVarDecl( + for (auto* PVD : m_Function->parameters()) { + auto* newPVD = utils::BuildParmVarDecl( m_Sema, m_Derivative, PVD->getIdentifier(), PVD->getType(), PVD->getStorageClass(), /*DefArg=*/nullptr, PVD->getTypeSourceInfo()); params.push_back(newPVD); @@ -3544,7 +3538,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, m_Sema.PushOnScopeChains(newPVD, getCurrentScope(), /*AddToContext=*/false); - auto it = std::find(std::begin(diffParams), std::end(diffParams), PVD); + auto* it = std::find(std::begin(diffParams), std::end(diffParams), PVD); if (it != std::end(diffParams)) { *it = newPVD; if (m_Mode == DiffMode::reverse || @@ -3552,7 +3546,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, QualType dType = derivativeFnType->getParamType(dParamTypesIdx); IdentifierInfo* dII = CreateUniqueIdentifier("_d_" + PVD->getNameAsString()); - auto dPVD = utils::BuildParmVarDecl(m_Sema, m_Derivative, dII, dType, + auto* dPVD = utils::BuildParmVarDecl(m_Sema, m_Derivative, dII, dType, PVD->getStorageClass()); paramDerivatives.push_back(dPVD); ++dParamTypesIdx; @@ -3598,7 +3592,7 @@ Expr* getArraySizeExpr(const ArrayType* AT, ASTContext& context, if (m_Mode == DiffMode::jacobian) { IdentifierInfo* II = CreateUniqueIdentifier("jacobianMatrix"); // FIXME: Why are we taking storageClass of `params.front()`? - auto dPVD = utils::BuildParmVarDecl( + auto* dPVD = utils::BuildParmVarDecl( m_Sema, m_Derivative, II, derivativeFnType->getParamType(dParamTypesIdx), params.front()->getStorageClass()); diff --git a/lib/Differentiator/TBRAnalyzer.cpp b/lib/Differentiator/TBRAnalyzer.cpp index c28c5dfa9..a8837d819 100644 --- a/lib/Differentiator/TBRAnalyzer.cpp +++ b/lib/Differentiator/TBRAnalyzer.cpp @@ -6,37 +6,37 @@ namespace clad { void TBRAnalyzer::setIsRequired(VarData& varData, bool isReq) { if (varData.type == VarData::FUND_TYPE) - varData.val.fundData = isReq; + varData.val.m_FundData = isReq; else if (varData.type == VarData::OBJ_TYPE) - for (auto& pair : *varData.val.objData) + for (auto& pair : *varData.val.m_ObjData) setIsRequired(pair.second, isReq); else if (varData.type == VarData::ARR_TYPE) - for (auto& pair : *varData.val.arrData) + for (auto& pair : *varData.val.m_ArrData) setIsRequired(pair.second, isReq); - else if (varData.type == VarData::REF_TYPE && varData.val.refData) - if (auto data = getExprVarData(varData.val.refData)) { + else if (varData.type == VarData::REF_TYPE && varData.val.m_RefData) + if (auto* data = getExprVarData(varData.val.m_RefData)) { setIsRequired(*data, isReq); } } void TBRAnalyzer::merge(VarData& targetData, VarData& mergeData) { if (targetData.type == VarData::FUND_TYPE) { - targetData.val.fundData = - targetData.val.fundData || mergeData.val.fundData; + targetData.val.m_FundData = + targetData.val.m_FundData || mergeData.val.m_FundData; } else if (targetData.type == VarData::OBJ_TYPE) { - for (auto& pair : *targetData.val.objData) - merge(pair.second, (*mergeData.val.objData)[pair.first]); + for (auto& pair : *targetData.val.m_ObjData) + merge(pair.second, (*mergeData.val.m_ObjData)[pair.first]); } else if (targetData.type == VarData::ARR_TYPE) { /// FIXME: Currently non-constant indices are not supported in merging. - for (auto& pair : *targetData.val.arrData) { - auto it = mergeData.val.arrData->find(pair.first); - if (it != mergeData.val.arrData->end()) + for (auto& pair : *targetData.val.m_ArrData) { + auto it = mergeData.val.m_ArrData->find(pair.first); + if (it != mergeData.val.m_ArrData->end()) merge(pair.second, it->second); } - for (auto& pair : *mergeData.val.arrData) { - auto it = targetData.val.arrData->find(pair.first); - if (it == mergeData.val.arrData->end()) - (*targetData.val.arrData)[pair.first] = copy(pair.second); + for (auto& pair : *mergeData.val.m_ArrData) { + auto it = targetData.val.m_ArrData->find(pair.first); + if (it == mergeData.val.m_ArrData->end()) + (*targetData.val.m_ArrData)[pair.first] = copy(pair.second); } } /// This might be useful in future if used to analyse pointers. However, for @@ -48,34 +48,34 @@ TBRAnalyzer::VarData TBRAnalyzer::copy(VarData& copyData) { VarData res; res.type = copyData.type; if (copyData.type == VarData::FUND_TYPE) { - res.val.fundData = copyData.val.fundData; + res.val.m_FundData = copyData.val.m_FundData; } else if (copyData.type == VarData::OBJ_TYPE) { - res.val.objData = new ObjMap(); - for (auto& pair : *copyData.val.objData) - (*res.val.objData)[pair.first] = copy(pair.second); + res.val.m_ObjData = new ObjMap(); + for (auto& pair : *copyData.val.m_ObjData) + (*res.val.m_ObjData)[pair.first] = copy(pair.second); } else if (copyData.type == VarData::ARR_TYPE) { - res.val.arrData = new ArrMap(); - for (auto& pair : *copyData.val.arrData) - (*res.val.arrData)[pair.first] = copy(pair.second); - } else if (copyData.type == VarData::REF_TYPE && copyData.val.refData) { - res.val.refData = copyData.val.refData; + res.val.m_ArrData = new ArrMap(); + for (auto& pair : *copyData.val.m_ArrData) + (*res.val.m_ArrData)[pair.first] = copy(pair.second); + } else if (copyData.type == VarData::REF_TYPE && copyData.val.m_RefData) { + res.val.m_RefData = copyData.val.m_RefData; } return res; } bool TBRAnalyzer::findReq(const VarData& varData) { if (varData.type == VarData::FUND_TYPE) - return varData.val.fundData; + return varData.val.m_FundData; if (varData.type == VarData::OBJ_TYPE) { - for (auto& pair : *varData.val.objData) + for (auto& pair : *varData.val.m_ObjData) if (findReq(pair.second)) return true; } else if (varData.type == VarData::ARR_TYPE) { - for (auto& pair : *varData.val.arrData) + for (auto& pair : *varData.val.m_ArrData) if (findReq(pair.second)) return true; - } else if (varData.type == VarData::REF_TYPE && varData.val.refData) { - if (auto* data = getExprVarData(varData.val.refData)) { + } else if (varData.type == VarData::REF_TYPE && varData.val.m_RefData) { + if (auto* data = getExprVarData(varData.val.m_RefData)) { if (findReq(*data)) { return true; } @@ -94,15 +94,15 @@ void TBRAnalyzer::overlay( --i; IdxOrMember& curIdxOrMember = IdxAndMemberSequence[i]; if (curIdxOrMember.type == IdxOrMember::IdxOrMemberType::FIELD) { - overlay((*targetData.val.objData)[curIdxOrMember.val.field], + overlay((*targetData.val.m_ObjData)[curIdxOrMember.val.field], IdxAndMemberSequence, i); } else if (curIdxOrMember.type == IdxOrMember::IdxOrMemberType::INDEX) { auto idx = curIdxOrMember.val.index; if (eqAPInt(idx, llvm::APInt(2, -1, true))) - for (auto& pair : *targetData.val.arrData) + for (auto& pair : *targetData.val.m_ArrData) overlay(pair.second, IdxAndMemberSequence, i); else - overlay((*targetData.val.arrData)[idx], IdxAndMemberSequence, i); + overlay((*targetData.val.m_ArrData)[idx], IdxAndMemberSequence, i); } } @@ -120,7 +120,7 @@ TBRAnalyzer::VarData* TBRAnalyzer::getMemberVarData(const clang::MemberExpr* ME, if (nonConstIndexFound && !addNonConstIdx) return baseData; - return &(*baseData->val.objData)[FD]; + return &(*baseData->val.m_ObjData)[FD]; } return nullptr; } @@ -149,7 +149,7 @@ TBRAnalyzer::getArrSubVarData(const clang::ArraySubscriptExpr* ASE, if (nonConstIndexFound && !addNonConstIdx) return baseData; - auto* baseArrMap = baseData->val.arrData; + auto* baseArrMap = baseData->val.m_ArrData; auto it = baseArrMap->find(idx); /// Add the current index if it was not added previously @@ -191,8 +191,8 @@ TBRAnalyzer::VarData* TBRAnalyzer::getExprVarData(const clang::Expr* E, if (const auto* ASE = dyn_cast(E)) EData = getArrSubVarData(ASE, addNonConstIdx); - if (EData && EData->type == VarData::REF_TYPE && EData->val.refData) - EData = getExprVarData(EData->val.refData); + if (EData && EData->type == VarData::REF_TYPE && EData->val.m_RefData) + EData = getExprVarData(EData->val.m_RefData); return EData; } @@ -200,24 +200,24 @@ TBRAnalyzer::VarData* TBRAnalyzer::getExprVarData(const clang::Expr* E, TBRAnalyzer::VarData::VarData(const QualType QT) { if (QT->isReferenceType()) { type = VarData::REF_TYPE; - val.refData = nullptr; + val.m_RefData = nullptr; } else if (utils::isArrayOrPointerType(QT)) { type = VarData::ARR_TYPE; - val.arrData = new ArrMap(); + val.m_ArrData = new ArrMap(); const Type* elemType; - if (const auto pointerType = llvm::dyn_cast(QT)) + if (const auto* const pointerType = llvm::dyn_cast(QT)) elemType = pointerType->getPointeeType().getTypePtrOrNull(); else elemType = QT->getArrayElementTypeNoTypeQual(); - auto& idxData = (*val.arrData)[llvm::APInt(2, -1, true)]; + auto& idxData = (*val.m_ArrData)[llvm::APInt(2, -1, true)]; idxData = VarData (QualType::getFromOpaquePtr(elemType)); } else if (QT->isBuiltinType()) { type = VarData::FUND_TYPE; - val.fundData = false; + val.m_FundData = false; } else if (QT->isRecordType()) { type = VarData::OBJ_TYPE; const auto* recordDecl = QT->getAs()->getDecl(); - auto& newObjMap = val.objData; + auto& newObjMap = val.m_ObjData; newObjMap = new ObjMap(); for (const auto* field : recordDecl->fields()) { const auto varType = field->getType(); @@ -288,7 +288,7 @@ void TBRAnalyzer::addVar(const clang::VarDecl* VD) { /// OBJ_TYPE VarData. This is done for '_d_this' pointer to be processed /// correctly in hessian mode. This should be removed once full support for /// pointers in analysis is introduced. - if (const auto pointerType = dyn_cast(varType)) { + if (const auto* const pointerType = dyn_cast(varType)) { const auto* elemType = pointerType->getPointeeType().getTypePtrOrNull(); if (elemType && elemType->isRecordType()) { curBranch[VD] = VarData(QualType::getFromOpaquePtr(elemType)); @@ -329,7 +329,7 @@ void TBRAnalyzer::setIsRequired(const clang::Expr* E, bool isReq) { void TBRAnalyzer::Analyze(const FunctionDecl* FD) { /// Build the CFG (control-flow graph) of FD. clang::CFG::BuildOptions Options; - m_CFG = clang::CFG::buildCFG(FD, FD->getBody(), m_Context, Options); + m_CFG = clang::CFG::buildCFG(FD, FD->getBody(), &m_Context, Options); blockData.resize(m_CFG->size(), nullptr); blockPassCounter.resize(m_CFG->size(), 0); @@ -371,7 +371,7 @@ void TBRAnalyzer::Analyze(const FunctionDecl* FD) { // } } -void TBRAnalyzer::VisitCFGBlock(CFGBlock* block) { +void TBRAnalyzer::VisitCFGBlock(const CFGBlock* block) { // llvm::errs() << "\n-----BLOCK" << block->getBlockID() << "-----\n"; /// Visiting loop blocks just once is not enough since the end of one /// loop iteration may have an effect on the next one. However, two @@ -380,9 +380,9 @@ void TBRAnalyzer::VisitCFGBlock(CFGBlock* block) { bool notLastPass = ++blockPassCounter[block->getBlockID()] <= 2; /// Visit all the statements inside the block. - for (clang::CFGElement& Element : *block) { + for (const clang::CFGElement& Element : *block) { if (Element.getKind() == clang::CFGElement::Statement) { - auto* Stmt = Element.castAs().getStmt(); + const auto* Stmt = Element.castAs().getStmt(); Visit(Stmt); } } @@ -444,7 +444,7 @@ TBRAnalyzer::findLowestCommonAncestor(VarsData* varsData1, if (pred1 == pred2) return pred1; - auto branch = varsData1; + auto* branch = varsData1; while (branch != pred1) { if (branch == pred2) return branch; @@ -482,8 +482,6 @@ TBRAnalyzer::findLowestCommonAncestor(VarsData* varsData1, return pred2; } } - /// This is not supposed to ever happen. - return nullptr; } std::unordered_map @@ -492,7 +490,7 @@ TBRAnalyzer::collectDataFromPredecessors(VarsData* varsData, std::unordered_map result; if (varsData != limit) { /// Copy data from every predecessor. - for (auto pred = varsData->prev; pred != limit; pred = pred->prev) { + for (auto* pred = varsData->prev; pred != limit; pred = pred->prev) { /// If a variable from 'pred' is not present /// in 'result', place it in there. for (auto& pair : *pred) @@ -614,7 +612,7 @@ void TBRAnalyzer::VisitDeclStmt(const DeclStmt* DS) { /// VarData of the RHS variable. auto returnExprs = utils::GetInnermostReturnExpr(init); if (VDExpr.type == VarData::REF_TYPE && !returnExprs.empty()) - VDExpr.val.refData = returnExprs[0]; + VDExpr.val.m_RefData = returnExprs[0]; } } } @@ -656,8 +654,8 @@ void TBRAnalyzer::VisitBinaryOperator(const BinaryOperator* BinOp) { /// factors is constant. Expr::EvalResult dummy; bool nonLinear = - !clad_compat::Expr_EvaluateAsConstantExpr(R, dummy, *m_Context) && - !clad_compat::Expr_EvaluateAsConstantExpr(L, dummy, *m_Context); + !clad_compat::Expr_EvaluateAsConstantExpr(R, dummy, m_Context) && + !clad_compat::Expr_EvaluateAsConstantExpr(L, dummy, m_Context); if (nonLinear) startNonLinearMode(); @@ -671,7 +669,7 @@ void TBRAnalyzer::VisitBinaryOperator(const BinaryOperator* BinOp) { /// denominator is constant. Expr::EvalResult dummy; bool nonLinear = - !clad_compat::Expr_EvaluateAsConstantExpr(R, dummy, *m_Context); + !clad_compat::Expr_EvaluateAsConstantExpr(R, dummy, m_Context); if (nonLinear) startNonLinearMode(); @@ -697,7 +695,7 @@ void TBRAnalyzer::VisitBinaryOperator(const BinaryOperator* BinOp) { /// therefore, LHS has to be visited in markingMode|nonLinearMode. Expr::EvalResult dummy; bool RisNotConst = - !clad_compat::Expr_EvaluateAsConstantExpr(R, dummy, *m_Context); + !clad_compat::Expr_EvaluateAsConstantExpr(R, dummy, m_Context); if (RisNotConst) setMode(Mode::markingMode | Mode::nonLinearMode); Visit(L); @@ -752,7 +750,7 @@ void TBRAnalyzer::VisitCallExpr(const clang::CallExpr* CE) { /// FIXME: Currently TBR analysis just stops here and assumes that all the /// variables passed by value/reference are used/used and changed. Analysis /// could proceed to the function to analyse data flow inside it. - auto* FD = CE->getDirectCallee(); + const auto* FD = CE->getDirectCallee(); bool noHiddenParam = (CE->getNumArgs() == FD->getNumParams()); setMode(Mode::markingMode | Mode::nonLinearMode); for (std::size_t i = 0, e = CE->getNumArgs(); i != e; ++i) { @@ -760,7 +758,7 @@ void TBRAnalyzer::VisitCallExpr(const clang::CallExpr* CE) { bool passByRef = false; if (noHiddenParam) passByRef = FD->getParamDecl(i)->getType()->isReferenceType(); - else if (i) + else if (i!=0) passByRef = FD->getParamDecl(i - 1)->getType()->isReferenceType(); setMode(Mode::markingMode | Mode::nonLinearMode); Visit(arg);