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

/external/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp504 Instruction *NaryReassociate::tryReassociatedBinaryOp(const SCEV *LHSExpr, argument
507 // Look for the closest dominator LHS of I that computes LHSExpr, and replace
509 auto *LHS = findClosestMatchingDominator(LHSExpr, I);
/external/clang/include/clang/AST/
H A DAPValue.h106 const AddrLabelExpr* LHSExpr; member in struct:clang::APValue::AddrLabelDiffData
161 APValue(const AddrLabelExpr* LHSExpr, const AddrLabelExpr* RHSExpr) argument
163 MakeAddrLabelDiff(); setAddrLabelDiff(LHSExpr, RHSExpr);
340 return ((const AddrLabelDiffData*)(const char*)Data.buffer)->LHSExpr;
386 void setAddrLabelDiff(const AddrLabelExpr* LHSExpr,
388 ((AddrLabelDiffData*)(char*)Data.buffer)->LHSExpr = LHSExpr;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp42 StringRef LHSExpr = Expr.substr(0, EQIdx).rtrim(); local
46 evalComplexExpr(evalSimpleExpr(LHSExpr, OutsideLoad), OutsideLoad);
50 return handleError(Expr, unexpectedToken(RemainingExpr, LHSExpr, ""));
/external/clang/lib/Analysis/
H A DCFG.cpp645 const Expr *LHSExpr = B->getLHS()->IgnoreParens(); local
648 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
653 BoolExpr = LHSExpr;
684 const Expr *LHSExpr = B->getLHS()->IgnoreParens(); local
687 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
692 BoolExpr = LHSExpr;
/external/clang/lib/AST/
H A DExprConstant.cpp7111 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>(); local
7113 if (!LHSExpr || !RHSExpr)
7115 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
7309 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr*>(); local
7311 if (!LHSExpr || !RHSExpr)
7313 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
/external/clang/lib/Sema/
H A DSemaChecking.cpp5773 if (Expr *LHSExpr = C->getLHS()) {
5775 if (!LHSExpr->getType()->isVoidType())
5776 if (Expr *LHS = EvalAddr(LHSExpr, refVars, ParentDecl))
5942 if (Expr *LHSExpr = C->getLHS()) {
5944 if (!LHSExpr->getType()->isVoidType())
5945 if (Expr *LHS = EvalVal(LHSExpr, refVars, ParentDecl))
9413 void Sema::DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr, argument
9423 LHSExpr = LHSExpr->IgnoreParenImpCasts();
9440 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
[all...]
H A DSemaExpr.cpp5814 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, argument
5816 Expr *NullExpr = LHSExpr;
5824 NonPointerExpr = LHSExpr;
5874 Expr *LHSExpr = LHS.get(); local
5877 if (!LHSExpr->getType()->isVoidType())
5881 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
5882 << LHSExpr->getSourceRange();
6590 Expr *LHSExpr,
6621 Expr *CondExpr, Expr *LHSExpr,
6636 if (!LHSExpr) {
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
9519 CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, SourceLocation Loc, QualType CompoundType) 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 233 milliseconds