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

1 2 3 4

  /external/clang/lib/StaticAnalyzer/Checkers/
FixedAddressChecker.cpp 48 SVal RV = state->getSVal(B->getRHS(), C.getLocationContext());
60 R->addRange(B->getRHS()->getSourceRange());
UndefResultChecker.cpp 60 else if (state->getSVal(B->getRHS(), LCtx).isUndef()) {
61 Ex = B->getRHS()->IgnoreParenCasts();
DivZeroChecker.cpp 57 if (!B->getRHS()->getType()->isScalarType())
60 SVal Denom = C.getState()->getSVal(B->getRHS(), C.getLocationContext());
PointerArithChecker.cpp 42 SVal RV = state->getSVal(B->getRHS(), LCtx);
PointerSubChecker.cpp 45 SVal RV = state->getSVal(B->getRHS(), LCtx);
UndefinedAssignmentChecker.cpp 66 ex = B->getRHS();
DeadStoresChecker.cpp 111 Ex = BO->getRHS();
232 const Expr *RHS = B->getRHS()->IgnoreParenCasts();
244 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getRHS()->IgnoreParenCasts())))
269 const Expr *RHS = LookThroughTransitiveAssignments(B->getRHS());
289 CheckVarDecl(VD, DR, B->getRHS(), dsk, Live);
MallocOverflowSecurityChecker.cpp 82 const Expr *rhs = binop->getRHS();
162 const Expr * rhs = E->getRHS();
CStringSyntaxChecker.cpp 114 const Expr *R = BE->getRHS();
IdempotentOperationChecker.cpp 132 const Expr *RHS = B->getRHS();
429 const Expr *RHS = i->first->getRHS();
430 report->addRange(i->first->getRHS()->getSourceRange());
678 return CanVary(B->getRHS(), AC)
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 56 AddValueSymbols_(BE->getRHS(), Asm);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsBaseInfo.h 138 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 35 << getRHS().getZExtValue();
36 if (getRHS().isUnsigned())
47 getRHS()->dumpToStream(os);
57 getRHS()->dumpToStream(os);
132 itr.push_back(cast<IntSymExpr>(SE)->getRHS());
137 itr.push_back(x->getRHS());
473 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS());
477 isLive(cast<SymSymExpr>(sym)->getRHS());
SimpleConstraintManager.cpp 201 return assumeSymRel(state, SE->getLHS(), op, SE->getRHS());
223 Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 96 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
162 AddValueSymbolsImpl(BE->getRHS(), Asm);
  /external/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.cpp 53 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
  /external/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 166 isZeroingPropIvar(BOE->getRHS());
192 return isZero(BOE->getRHS());
213 return isZero(cast<OpaqueValueExpr>(BO->getRHS())->getSourceExpr());
  /external/llvm/lib/MC/
MCExpr.cpp 101 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
130 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
131 OS << *BE.getRHS();
133 OS << '(' << *BE.getRHS() << ')';
560 !ABE->getRHS()->EvaluateAsRelocatableImpl(RHSValue, Asm, Layout,
644 const MCSection *RHS_S = BE->getRHS()->FindAssociatedSection();
  /external/clang/include/clang/Analysis/Visitors/
CFGStmtVisitor.h 160 static_cast<ImplClass*>(this)->Visit(B->getRHS());
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 107 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 256 const SCEV *getRHS() const { return RHS; }
264 return getRHS()->getType();
533 push(UDiv->getRHS());
595 return SE.getUDivExpr(visit(Expr->getLHS()), visit(Expr->getRHS()));
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 598 Ops.RHS = Visit(E->getRHS());
622 E->getRHS()->getType()));
623 OpInfo.RHS = Visit(E->getRHS());
666 E->getRHS()->getType()) &&
672 Val = Visit(E->getRHS());
700 return Visit(E->getRHS());
CodeGenFunction.cpp 733 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
738 if (ConstantFoldsToSimpleInteger(CondBOp->getRHS(), ConstantBool) &&
754 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
767 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
772 if (ConstantFoldsToSimpleInteger(CondBOp->getRHS(), ConstantBool) &&
788 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
816 EmitBranchOnBoolExpr(CondOp->getRHS(), TrueBlock, FalseBlock);
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 279 milliseconds

1 2 3 4