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

/external/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp489 const SCEV *RHSExpr = SE->getSCEV(RHS); local
490 if (BExpr != RHSExpr) {
492 tryReassociatedBinaryOp(getBinarySCEV(I, AExpr, RHSExpr), B, I))
495 if (AExpr != RHSExpr) {
497 tryReassociatedBinaryOp(getBinarySCEV(I, 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.cpp646 const Expr *RHSExpr = B->getRHS()->IgnoreParens(); local
649 const Expr *BoolExpr = RHSExpr;
652 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
685 const Expr *RHSExpr = B->getRHS()->IgnoreParens(); local
688 const Expr *BoolExpr = RHSExpr;
691 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
/external/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp3043 auto *RHSExpr = UpExpr; local
3044 if (RHSExpr) {
3047 RHSExpr->IgnoreParenImpCasts())) {
3050 RHSExpr = ACO->getCond();
3053 dyn_cast<BinaryOperator>(RHSExpr->IgnoreParenImpCasts())) {
/external/clang/lib/AST/
H A DExprConstant.cpp7112 const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>(); local
7113 if (!LHSExpr || !RHSExpr)
7116 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
7310 const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr*>(); local
7311 if (!LHSExpr || !RHSExpr)
7314 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
/external/clang/lib/Sema/
H A DSemaChecking.cpp9413 void Sema::DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr, argument
9424 RHSExpr = RHSExpr->IgnoreParenImpCasts();
9427 const CallExpr *CE = dyn_cast<CallExpr>(RHSExpr);
9438 RHSExpr = CE->getArg(0);
9441 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
9453 << RHSExpr->getSourceRange();
9462 const Expr *RHSBase = RHSExpr;
9464 const MemberExpr *RHSME = dyn_cast<MemberExpr>(RHSExpr);
9490 << RHSExpr
[all...]
H A DSemaExpr.cpp5814 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, argument
5817 Expr *NonPointerExpr = RHSExpr;
5823 NullExpr = RHSExpr;
5875 Expr *RHSExpr = RHS.get(); local
5878 S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
5879 << RHSExpr->getSourceRange();
5880 if (!RHSExpr->getType()->isVoidType())
6591 Expr *RHSExpr) {
6614 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd()));
6622 Expr *RHSExpr) {
6587 DiagnoseConditionalPrecedence(Sema &Self, SourceLocation OpLoc, Expr *Condition, Expr *LHSExpr, Expr *RHSExpr) argument
6619 ActOnConditionalOp(SourceLocation QuestionLoc, SourceLocation ColonLoc, Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr) argument
7657 diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
7759 checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
7814 diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
7853 diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
7904 diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
9496 CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, SourceLocation Loc, Sema &Sema) argument
10167 DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, SourceLocation OpLoc) argument
10256 CreateBuiltinBinOp(SourceLocation OpLoc, BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr) argument
10462 DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10532 DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10554 DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10600 DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10629 DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
10664 ActOnBinOp(Scope *S, SourceLocation TokLoc, tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr) argument
10697 BuildBinOp(Scope *S, SourceLocation OpLoc, BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr) argument
11356 ActOnChooseExpr(SourceLocation BuiltinLoc, Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr, SourceLocation RPLoc) argument
[all...]

Completed in 458 milliseconds