Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DInlineCost.cpp1607 APInt LHSOffset, RHSOffset; in visitCmpInst() local
1610 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitCmpInst()
1615 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); in visitCmpInst()
1641 APInt LHSOffset, RHSOffset; in visitSub() local
1644 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitSub()
1649 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); in visitSub()
H A DInstructionSimplify.cpp715 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS); in computePointerDifference() local
726 return ConstantExpr::getSub(LHSOffset, RHSOffset); in computePointerDifference()
2469 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS); in computePointerICmp() local
2474 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset); in computePointerICmp()
2510 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset); in computePointerICmp()
2534 RHSOffset->isNullValue()) in computePointerICmp()
2548 ConstantExpr::getAdd(RHSOffset, RHSNoBound)); in computePointerICmp()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2561 APInt RHSOffset; in lowerConstant() local
2562 if (IsConstantOffsetFromGlobal(CE->getOperand(1), RHSGV, RHSOffset, in lowerConstant()
2576 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue(); in lowerConstant()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSROA.cpp197 uint64_t RHSOffset) { in operator <() argument
198 return LHS.beginOffset() < RHSOffset; in operator <()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DExprConstant.cpp12665 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); in EvaluateComparisonBinaryOperator() local
12677 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational) in EvaluateComparisonBinaryOperator()
12725 uint64_t CompareRHS = RHSOffset.getQuantity(); in EvaluateComparisonBinaryOperator()
12923 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); in VisitBinaryOperator() local
12962 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false); in VisitBinaryOperator()