diff --git a/clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp b/clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp index 3f1600d9ac5d8..e5aaa8fea4803 100644 --- a/clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp +++ b/clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp @@ -414,25 +414,52 @@ class ResultObjectVisitor : public RecursiveASTVisitor { ResultObjectMap[E] = Loc; + switch (E->getStmtClass()) { // The following AST node kinds are "original initializers": They are the // lowest-level AST node that initializes a given object, and nothing // below them can initialize the same object (or part of it). - if (isa(E) || isa(E) || isa(E) || - isa(E) || isa(E) || - isa(E) || - // We treat `BuiltinBitCastExpr` as an "original initializer" too as - // it may not even be casting from a record type -- and even if it is, - // the two objects are in general of unrelated type. - isa(E)) { + case Stmt::CXXConstructExprClass: + case Stmt::CallExprClass: + case Stmt::LambdaExprClass: + case Stmt::CXXDefaultArgExprClass: + case Stmt::CXXDefaultInitExprClass: + case Stmt::CXXStdInitializerListExprClass: + // We treat `BuiltinBitCastExpr` as an "original initializer" too as it may + // not even be casting from a record type -- and even if it is, the two + // objects are in general of unrelated type. + case Stmt::BuiltinBitCastExprClass: + return; + case Stmt::BinaryOperatorClass: { + auto *Op = cast(E); + if (Op->getOpcode() == BO_Cmp) { + // Builtin `<=>` returns a `std::strong_ordering` object. We + // consider this to be an "original" initializer too (see above). + return; + } + if (Op->isCommaOp()) { + PropagateResultObject(Op->getRHS(), Loc); + return; + } + // We don't expect any other binary operators to produce a record + // prvalue, so if we get here, we've hit some case we don't know + // about. + assert(false); return; } - if (auto *Op = dyn_cast(E); - Op && Op->getOpcode() == BO_Cmp) { - // Builtin `<=>` returns a `std::strong_ordering` object. + case Stmt::BinaryConditionalOperatorClass: + case Stmt::ConditionalOperatorClass: { + auto *Cond = cast(E); + PropagateResultObject(Cond->getTrueExpr(), Loc); + PropagateResultObject(Cond->getFalseExpr(), Loc); return; } - - if (auto *InitList = dyn_cast(E)) { + case Stmt::StmtExprClass: { + auto *SE = cast(E); + PropagateResultObject(cast(SE->getSubStmt()->body_back()), Loc); + return; + } + case Stmt::InitListExprClass: { + auto *InitList = cast(E); if (!InitList->isSemanticForm()) return; if (InitList->isTransparent()) { @@ -462,33 +489,20 @@ class ResultObjectVisitor : public RecursiveASTVisitor { } return; } - - if (auto *Op = dyn_cast(E); Op && Op->isCommaOp()) { - PropagateResultObject(Op->getRHS(), Loc); + default: { + // All other expression nodes that propagate a record prvalue should + // have exactly one child. + SmallVector Children(E->child_begin(), E->child_end()); + LLVM_DEBUG({ + if (Children.size() != 1) + E->dump(); + }); + assert(Children.size() == 1); + for (Stmt *S : Children) + PropagateResultObject(cast(S), Loc); return; } - - if (auto *Cond = dyn_cast(E)) { - PropagateResultObject(Cond->getTrueExpr(), Loc); - PropagateResultObject(Cond->getFalseExpr(), Loc); - return; } - - if (auto *SE = dyn_cast(E)) { - PropagateResultObject(cast(SE->getSubStmt()->body_back()), Loc); - return; - } - - // All other expression nodes that propagate a record prvalue should have - // exactly one child. - SmallVector Children(E->child_begin(), E->child_end()); - LLVM_DEBUG({ - if (Children.size() != 1) - E->dump(); - }); - assert(Children.size() == 1); - for (Stmt *S : Children) - PropagateResultObject(cast(S), Loc); } private: