Searched defs:RHSExpr (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp218 const SCEV *RHSExpr = SE->getSCEV(RHS); local
219 if (auto *NewI = tryReassociatedAdd(SE->getAddExpr(AExpr, RHSExpr), B, I))
221 if (auto *NewI = tryReassociatedAdd(SE->getAddExpr(BExpr, RHSExpr), A, I))
/external/clang/include/clang/AST/
H A DAPValue.h107 const AddrLabelExpr* RHSExpr; member in struct:clang::APValue::AddrLabelDiffData
161 APValue(const AddrLabelExpr* LHSExpr, const AddrLabelExpr* RHSExpr) argument
163 MakeAddrLabelDiff(); setAddrLabelDiff(LHSExpr, RHSExpr);
344 return ((const AddrLabelDiffData*)(const char*)Data.buffer)->RHSExpr;
387 const AddrLabelExpr* RHSExpr) {
389 ((AddrLabelDiffData*)(char*)Data.buffer)->RHSExpr = RHSExpr;
/external/clang/lib/Analysis/
H A DCFG.cpp574 const Expr *RHSExpr = B->getRHS()->IgnoreParens(); local
577 const Expr *BoolExpr = RHSExpr;
580 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
613 const Expr *RHSExpr = B->getRHS()->IgnoreParens(); local
616 const Expr *BoolExpr = RHSExpr;
619 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
/external/clang/lib/AST/
H A DExprConstant.cpp6761 const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>(); local
6762 if (!LHSExpr || !RHSExpr)
6765 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
6959 const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr*>(); local
6960 if (!LHSExpr || !RHSExpr)
6963 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
/external/clang/lib/Sema/
H A DSemaChecking.cpp8842 void Sema::DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr, argument
8853 RHSExpr = RHSExpr->IgnoreParenImpCasts();
8856 const CallExpr *CE = dyn_cast<CallExpr>(RHSExpr);
8867 RHSExpr = CE->getArg(0);
8870 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
8882 << RHSExpr->getSourceRange();
8891 const Expr *RHSBase = RHSExpr;
8893 const MemberExpr *RHSME = dyn_cast<MemberExpr>(RHSExpr);
8919 << RHSExpr
[all...]
H A DSemaExpr.cpp5621 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, argument
5624 Expr *NonPointerExpr = RHSExpr;
5630 NullExpr = RHSExpr;
5682 Expr *RHSExpr = RHS.get(); local
5685 S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
5686 << RHSExpr->getSourceRange();
5687 if (!RHSExpr->getType()->isVoidType())
6426 Expr *RHSExpr) {
6449 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd()));
6457 Expr *RHSExpr) {
6422 DiagnoseConditionalPrecedence(Sema &Self, SourceLocation OpLoc, Expr *Condition, Expr *LHSExpr, Expr *RHSExpr) argument
6454 ActOnConditionalOp(SourceLocation QuestionLoc, SourceLocation ColonLoc, Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr) argument
7425 diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
7527 checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
7582 diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
7621 diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
7672 diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
9232 CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, SourceLocation Loc, Sema &Sema) argument
9889 DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, SourceLocation OpLoc) argument
9978 CreateBuiltinBinOp(SourceLocation OpLoc, BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr) argument
10170 DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10255 DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10277 DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10314 DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10343 DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10377 ActOnBinOp(Scope *S, SourceLocation TokLoc, tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr) argument
10410 BuildBinOp(Scope *S, SourceLocation OpLoc, BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr) argument
11061 ActOnChooseExpr(SourceLocation BuiltinLoc, Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr, SourceLocation RPLoc) argument
[all...]

Completed in 193 milliseconds