Home
last modified time | relevance | path

Searched refs:RHSOffset (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Analysis/IPA/
DInlineCost.cpp512 APInt LHSOffset, RHSOffset; in visitICmp() local
515 llvm::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitICmp()
520 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); in visitICmp()
562 APInt LHSOffset, RHSOffset; in visitSub() local
565 llvm::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitSub()
570 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); in visitSub()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp717 Constant *RHSOffset = stripAndComputeConstantOffsets(TD, RHS); in computePointerDifference() local
728 return ConstantExpr::getSub(LHSOffset, RHSOffset); in computePointerDifference()
1767 Constant *RHSOffset = stripAndComputeConstantOffsets(TD, RHS); in computePointerICmp() local
1772 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset); in computePointerICmp()
1808 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset); in computePointerICmp()
1829 RHSOffset->isNullValue()) in computePointerICmp()
/external/clang/lib/AST/
DExprConstant.cpp4984 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); in VisitBinaryOperator() local
5017 llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false); in VisitBinaryOperator()
5035 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && in VisitBinaryOperator()
5085 uint64_t CompareRHS = RHSOffset.getQuantity(); in VisitBinaryOperator()
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp98 friend bool operator<(const ByteRange &LHS, uint64_t RHSOffset) { in operator <() argument
99 return LHS.BeginOffset < RHSOffset; in operator <()