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

1 2 3 4 5

  /external/clang/lib/StaticAnalyzer/Checkers/
FixedAddressChecker.cpp 48 SVal RV = state->getSVal(B->getRHS(), C.getLocationContext());
60 R->addRange(B->getRHS()->getSourceRange());
DivZeroChecker.cpp 57 if (!B->getRHS()->getType()->isScalarType())
60 SVal Denom = C.getState()->getSVal(B->getRHS(), C.getLocationContext());
UndefResultChecker.cpp 69 else if (state->getSVal(B->getRHS(), LCtx).isUndef()) {
70 Ex = B->getRHS()->IgnoreParenCasts();
PointerArithChecker.cpp 42 SVal RV = state->getSVal(B->getRHS(), LCtx);
PointerSubChecker.cpp 45 SVal RV = state->getSVal(B->getRHS(), LCtx);
UndefinedAssignmentChecker.cpp 74 ex = B->getRHS();
DeadStoresChecker.cpp 111 Ex = BO->getRHS();
115 Ex = BO->getRHS();
236 const Expr *RHS = B->getRHS()->IgnoreParenCasts();
248 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getRHS()->IgnoreParenCasts())))
274 LookThroughTransitiveAssignmentsAndCommaOperators(B->getRHS());
294 CheckVarDecl(VD, DR, B->getRHS(), dsk, Live);
MallocOverflowSecurityChecker.cpp 82 const Expr *rhs = binop->getRHS();
162 const Expr * rhs = E->getRHS();
CStringSyntaxChecker.cpp 116 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/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.cpp 53 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 56 assert(Loc::isLocType(SSE->getRHS()->getType()));
179 return assumeSymRel(state, SE->getLHS(), op, SE->getRHS());
195 assert(Loc::isLocType(SSE->getRHS()->getType()));
197 SymbolRef Subtraction = SymMgr.getSymSymExpr(SSE->getRHS(), BO_Sub,
230 Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
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());
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 96 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
162 AddValueSymbolsImpl(BE->getRHS(), Asm);
  /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 92 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
121 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
122 OS << *BE.getRHS();
124 OS << '(' << *BE.getRHS() << ')';
684 !ABE->getRHS()->EvaluateAsRelocatableImpl(RHSValue, Asm, Layout,
768 const MCSection *RHS_S = BE->getRHS()->FindAssociatedSection();
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.cpp 139 AddValueSymbols_(BE->getRHS(), Asm);
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 737 Visit(E->getRHS());
781 return isBlockVarRef(op->getRHS());
828 E->getRHS()->getType())
836 E->getRHS()->HasSideEffects(CGF.getContext())) {
838 EnsureDest(E->getRHS()->getType());
839 Visit(E->getRHS());
    [all...]
CodeGenFunction.cpp 850 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
855 if (ConstantFoldsToSimpleInteger(CondBOp->getRHS(), ConstantBool) &&
871 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
    [all...]
CGExprScalar.cpp     [all...]
  /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()));

Completed in 157 milliseconds

1 2 3 4 5