Searched refs:LHSExpr (Results 1 - 8 of 8) sorted by relevance

/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/clang/lib/Sema/
H A DSemaExpr.cpp5392 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, argument
5394 Expr *NullExpr = LHSExpr;
5402 NonPointerExpr = LHSExpr;
5475 Expr *LHSExpr = LHS.get(); local
5478 if (!LHSExpr->getType()->isVoidType())
5482 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
5483 << LHSExpr->getSourceRange();
6038 Expr *LHSExpr,
6069 Expr *CondExpr, Expr *LHSExpr,
6075 if (!LHSExpr) {
6035 DiagnoseConditionalPrecedence(Sema &Self, SourceLocation OpLoc, Expr *Condition, Expr *LHSExpr, Expr *RHSExpr) argument
6067 ActOnConditionalOp(SourceLocation QuestionLoc, SourceLocation ColonLoc, Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr) argument
7018 diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
7113 checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
7155 diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
7194 diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
7245 diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, Expr *LHSExpr, Expr *RHSExpr) argument
8595 CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, SourceLocation Loc, Sema &Sema) argument
8618 CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, SourceLocation Loc, QualType CompoundType) argument
9231 DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, SourceLocation OpLoc) argument
9308 CreateBuiltinBinOp(SourceLocation OpLoc, BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr) argument
9481 DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
9566 DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
9588 DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
9625 DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
9654 DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, SourceLocation OpLoc, Expr *LHSExpr, Expr *RHSExpr) argument
9688 ActOnBinOp(Scope *S, SourceLocation TokLoc, tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr) argument
9721 BuildBinOp(Scope *S, SourceLocation OpLoc, BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr) argument
10375 ActOnChooseExpr(SourceLocation BuiltinLoc, Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr, SourceLocation RPLoc) argument
[all...]
H A DSemaChecking.cpp4589 if (Expr *LHSExpr = C->getLHS()) {
4591 if (!LHSExpr->getType()->isVoidType())
4592 if (Expr *LHS = EvalAddr(LHSExpr, refVars, ParentDecl))
4753 if (Expr *LHSExpr = C->getLHS()) {
4755 if (!LHSExpr->getType()->isVoidType())
4756 if (Expr *LHS = EvalVal(LHSExpr, refVars, ParentDecl))
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp39 StringRef LHSExpr = Expr.substr(0, EQIdx).rtrim(); local
43 evalComplexExpr(evalSimpleExpr(LHSExpr));
47 return handleError(Expr, unexpectedToken(RemainingExpr, LHSExpr, ""));
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp1149 const AddrLabelExpr *LHSExpr = Value.getAddrLabelDiffLHS(); local
1151 llvm::Constant *LHS = EmitConstantExpr(LHSExpr, LHSExpr->getType(), CGF);
/external/clang/lib/Analysis/
H A DCFG.cpp503 const Expr *LHSExpr = B->getLHS()->IgnoreParens(); local
506 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
511 BoolExpr = LHSExpr;
542 const Expr *LHSExpr = B->getLHS()->IgnoreParens(); local
545 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
550 BoolExpr = LHSExpr;
/external/clang/include/clang/Sema/
H A DSema.h3629 tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr);
3631 BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr);
3633 Expr *LHSExpr, Expr *RHSExpr);
3639 Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr);
3676 Expr *CondExpr, Expr *LHSExpr,
7769 Expr *LHSExpr, ExprResult &RHS, SourceLocation Loc, QualType CompoundType);
7801 bool DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
/external/clang/lib/AST/
H A DExprConstant.cpp6516 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>();
6518 if (!LHSExpr || !RHSExpr)
6520 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
6698 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr*>();
6700 if (!LHSExpr || !RHSExpr)
6702 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);

Completed in 257 milliseconds