HomeSort by relevance Sort by last modified time
    Searched refs:getRHS (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/clang/lib/StaticAnalyzer/Checkers/
FixedAddressChecker.cpp 49 SVal RV = state->getSVal(B->getRHS());
61 R->addRange(B->getRHS()->getSourceRange());
DivZeroChecker.cpp 41 if (!B->getRHS()->getType()->isIntegerType() ||
42 !B->getRHS()->getType()->isScalarType())
45 SVal Denom = C.getState()->getSVal(B->getRHS());
UndefResultChecker.cpp 57 else if (state->getSVal(B->getRHS()).isUndef()) {
58 Ex = B->getRHS()->IgnoreParenCasts();
PointerArithChecker.cpp 41 SVal RV = state->getSVal(B->getRHS());
PointerSubChecker.cpp 44 SVal RV = state->getSVal(B->getRHS());
UndefinedAssignmentChecker.cpp 66 ex = B->getRHS();
DeadStoresChecker.cpp 168 const Expr *RHS = B->getRHS()->IgnoreParenCasts();
180 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getRHS()->IgnoreParenCasts())))
207 if (B->getRHS()->isNullPointerConstant(Ctx,
212 Expr *RHS = B->getRHS()->IgnoreParenCasts();
224 CheckVarDecl(VD, DR, B->getRHS(), dsk, Live);
MallocOverflowSecurityChecker.cpp 82 const Expr *rhs = binop->getRHS();
162 const Expr * rhs = E->getRHS();
IdempotentOperationChecker.cpp 129 const Expr *RHS = B->getRHS();
424 const Expr *RHS = i->first->getRHS();
425 report->addRange(i->first->getRHS()->getSourceRange());
677 return CanVary(B->getRHS(), AC)
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 57 AddValueSymbols_(BE->getRHS(), Asm);
  /external/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 145 isZeroingPropIvar(BOE->getRHS());
182 Expr *RHS = BOE->getRHS();
TransRetainReleaseDealloc.cpp 202 Pass.TA.replace(bopE->getSourceRange(), bopE->getRHS()->getSourceRange());
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 190 return assumeSymRel(state, SE->getLHS(), op, SE->getRHS());
243 Adjustment = SE->getRHS();
246 Adjustment = -SE->getRHS();
SymbolManager.cpp 56 os << ' ' << getRHS().getZExtValue();
57 if (getRHS().isUnsigned()) os << 'U';
65 getRHS()->dumpToStream(os);
ObjCMessage.cpp 107 return bop->getRHS();
  /external/llvm/lib/MC/
MCExpr.cpp 97 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
126 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
127 OS << *BE.getRHS();
129 OS << '(' << *BE.getRHS() << ')';
504 !ABE->getRHS()->EvaluateAsRelocatableImpl(RHSValue, Asm, Layout,
589 const MCSection *RHS_S = BE->getRHS()->FindAssociatedSection();
  /external/clang/lib/AST/
ParentMap.cpp 108 return BE->getOpcode()!=BO_Comma ||DirectChild==BE->getRHS();
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 540 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
545 if (ConstantFoldsToSimpleInteger(CondBOp->getRHS(), ConstantBool) &&
561 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
574 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
579 if (ConstantFoldsToSimpleInteger(CondBOp->getRHS(), ConstantBool) &&
595 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
627 EmitBranchOnBoolExpr(CondOp->getRHS(), TrueBlock, FalseBlock);
    [all...]
CGExprAgg.cpp 414 Visit(E->getRHS());
439 E->getRHS()->getType())
445 E->getRHS()->HasSideEffects(CGF.getContext())) {
448 LValue RHS = CGF.EmitLValue(E->getRHS());
466 Src = CGF.EmitReferenceBindingToExpr(E->getRHS(), 0);
468 AggValueSlot Slot = EnsureSlot(E->getRHS()->getType());
469 CGF.EmitAggExpr(E->getRHS(), Slot);
479 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
    [all...]
CGExprComplex.cpp 579 Ops.RHS = Visit(E->getRHS());
603 E->getRHS()->getType()));
604 OpInfo.RHS = Visit(E->getRHS());
651 E->getRHS()->getType()) &&
657 Val = Visit(E->getRHS());
689 return Visit(E->getRHS());
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/clang/include/clang/Analysis/Visitors/
CFGStmtVisitor.h 160 static_cast<ImplClass*>(this)->Visit(B->getRHS());
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 108 const Decl *RHSDecl = getDecl(BO->getRHS()->IgnoreParenCasts());
ReachableCode.cpp 202 R2 = CAO->getRHS()->getSourceRange();
219 R2 = ASE->getRHS()->getSourceRange();
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 264 const SCEV *getRHS() const { return RHS; }
272 return getRHS()->getType();

Completed in 746 milliseconds

1 2 3 4