Searched refs:RHSExpr (Results 1 - 9 of 9) sorted by relevance

/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/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/lib/Sema/
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...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp53 StringRef RHSExpr = Expr.substr(EQIdx + 1).ltrim();
56 evalComplexExpr(evalSimpleExpr(RHSExpr, OutsideLoad), OutsideLoad);
60 return handleError(Expr, unexpectedToken(RemainingExpr, RHSExpr, ""));
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp1369 const AddrLabelExpr *RHSExpr = Value.getAddrLabelDiffRHS();
1371 llvm::Constant *RHS = EmitConstantExpr(RHSExpr, RHSExpr->getType(), CGF);
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/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/include/clang/Sema/
H A DSema.h3513 void DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr,
3964 tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr);
3966 BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr);
3968 Expr *LHSExpr, Expr *RHSExpr);
3974 Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr);
4010 Expr *RHSExpr, SourceLocation RPLoc);
8517 bool DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
/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);

Completed in 446 milliseconds