Home
last modified time | relevance | path

Searched refs:getSourceExpr (Results 1 – 25 of 40) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DParentMap.cpp81 if (OVMode == OV_Transparent || !M[OVE->getSourceExpr()]) { in BuildParentMap()
82 M[OVE->getSourceExpr()] = S; in BuildParentMap()
83 BuildParentMap(M, OVE->getSourceExpr(), OV_Transparent); in BuildParentMap()
H A DExpr.cpp3345 Subexpr = OVE->getSourceExpr(); in HasSideEffects()
3510 if (const Expr *Source = OVE->getSourceExpr()) in isNullPointerConstant()
4138 assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != nullptr && in PseudoObjectExpr()
H A DASTDumper.cpp1475 if (Expr *Source = Node->getSourceExpr()) in VisitOpaqueValueExpr()
H A DStmtProfile.cpp1279 Visit(OVE->getSourceExpr()); in VisitPseudoObjectExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DScopeInfo.cpp102 DoubleBase = OVE->getSourceExpr(); in getBaseInfo()
137 const Expr *E = OVE->getSourceExpr(); in WeakObjectProfileTy()
H A DSemaPseudoObject.cpp932 S.checkRetainCycles(InstanceReceiver->getSourceExpr(), RHS); in buildAssignmentOperation()
1021 S.checkRetainCycles(InstanceBase->getSourceExpr(), RHS); in buildAssignmentOperation()
1636 return cast<OpaqueValueExpr>(E)->getSourceExpr(); in stripOpaqueValuesFromPseudoObjectRef()
1657 Expr *rhs = cast<OpaqueValueExpr>(cop->getRHS())->getSourceExpr(); in recreateSyntacticForm()
1668 Expr *rhs = cast<OpaqueValueExpr>(bop->getRHS())->getSourceExpr(); in recreateSyntacticForm()
H A DSemaStmt.cpp1403 Visit(E->getOpaqueValue()->getSourceExpr()); in VisitBinaryConditionalOperator()
1480 CheckLValueToRValueCast(BCO->getOpaqueValue()->getSourceExpr()); in CheckLValueToRValueCast()
1500 Visit(OVE->getSourceExpr()); in VisitPseudoObjectExpr()
H A DSemaChecking.cpp6402 if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) { in checkFormatStringExpr()
9881 return GetExprRange(C, OVE->getSourceExpr(), MaxWidth); in GetExprRange()
11239 AnalyzeImplicitConversions(S, OVE->getSourceExpr(), CC); in AnalyzeImplicitConversions()
12676 ->getSourceExpr()); in findRetainCycleOwner()
12718 if (OVE->getSourceExpr()) in VisitOpaqueValueExpr()
12719 Visit(OVE->getSourceExpr()); in VisitOpaqueValueExpr()
12929 Arg = OE->getSourceExpr()->IgnoreImpCasts(); in CheckObjCCircularContainer()
12944 Receiver = OE->getSourceExpr()->IgnoreImpCasts(); in CheckObjCCircularContainer()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp56 sub = OVE->getSourceExpr(); in Scan()
H A DIvarInvalidationChecker.cpp595 E = OVE->getSourceExpr()->IgnoreParenCasts(); in peel()
H A DDynamicTypePropagation.cpp623 E = OVE->getSourceExpr()->IgnoreParenImpCasts(); in stripCastsAndSugar()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DEnvironment.cpp42 E = cast<OpaqueValueExpr>(E)->getSourceExpr(); in ignoreTransparentExprs()
H A DExprEngineC.cpp789 L = OpaqueEx->getSourceExpr(); in VisitGuardedExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp211 return isZero(cast<OpaqueValueExpr>(BO->getRHS())->getSourceExpr()); in isZeroingPropIvar()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DLiveVariables.cpp246 S = OVE->getSourceExpr(); in LookThroughStmt()
312 child = OV->getSourceExpr(); in Visit()
H A DAnalysisDeclContext.cpp564 Semantic = OVE->getSourceExpr(); in VisitPseudoObjectExpr()
H A DUninitializedValues.cpp400 classify(OVE->getSourceExpr(), C); in classify()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp76 return TraverseStmt(E->getSourceExpr()); in TraverseOpaqueValueExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjC.cpp293 if (opaque->getSourceExpr()) in shouldExtendReceiverForInnerPointerMessage()
294 receiver = opaque->getSourceExpr()->IgnoreParens(); in shouldExtendReceiverForInnerPointerMessage()
303 if (opaque->getSourceExpr()) in shouldExtendReceiverForInnerPointerMessage()
304 receiver = opaque->getSourceExpr()->IgnoreParens(); in shouldExtendReceiverForInnerPointerMessage()
2879 result = asImpl().visit(ov->getSourceExpr()); in visitPseudoObjectExpr()
2885 opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr()); in visitPseudoObjectExpr()
H A DCGExprAgg.cpp643 Visit(e->getSourceExpr()); in VisitOpaqueValueExpr()
1084 if (const Expr *src = op->getSourceExpr()) in isBlockVarRef()
H A DCGExpr.cpp4310 return EmitLValue(e->getSourceExpr()); in getOrCreateOpaqueLValueMapping()
4324 return EmitAnyExpr(e->getSourceExpr()); in getOrCreateOpaqueRValueMapping()
4893 CGF.EmitAggExpr(ov->getSourceExpr(), slot); in emitPseudoObjectExpr()
4901 opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr()); in emitPseudoObjectExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DRecursiveASTVisitor.h2321 sub = OVE->getSourceExpr();
2495 TRY_TO_TRAVERSE_OR_ENQUEUE_STMT(OVE->getSourceExpr());
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1430 Base = cast<OpaqueValueExpr>(Base)->getSourceExpr(); in RewritePropertyOrImplicitSetter()
1438 Arg = cast<OpaqueValueExpr>(Arg)->getSourceExpr(); in RewritePropertyOrImplicitSetter()
1515 Base = cast<OpaqueValueExpr>(Base)->getSourceExpr(); in RewritePropertyOrImplicitGetter()
1522 Arg = cast<OpaqueValueExpr>(Arg)->getSourceExpr(); in RewritePropertyOrImplicitGetter()
5453 S = cast<OpaqueValueExpr>(S)->getSourceExpr(); in RewriteFunctionBodyOrGlobalInitializer()
H A DRewriteObjC.cpp1246 Base = cast<OpaqueValueExpr>(Base)->getSourceExpr(); in RewritePropertyOrImplicitSetter()
1252 RHS = cast<OpaqueValueExpr>(RHS)->getSourceExpr(); in RewritePropertyOrImplicitSetter()
1327 Base = cast<OpaqueValueExpr>(Base)->getSourceExpr(); in RewritePropertyOrImplicitGetter()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1802 return Node.getSourceExpr();

12