Searched refs:RHSOffset (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/Analysis/ |
D | InlineCost.cpp | 689 APInt LHSOffset, RHSOffset; in visitCmpInst() local 692 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitCmpInst() 697 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); in visitCmpInst() 735 APInt LHSOffset, RHSOffset; in visitSub() local 738 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitSub() 743 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); in visitSub()
|
D | InstructionSimplify.cpp | 647 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS); in computePointerDifference() local 658 return ConstantExpr::getSub(LHSOffset, RHSOffset); in computePointerDifference() 2017 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS); in computePointerICmp() local 2022 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset); in computePointerICmp() 2058 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset); in computePointerICmp() 2079 RHSOffset->isNullValue()) in computePointerICmp() 2093 ConstantExpr::getAdd(RHSOffset, RHSNoBound)); in computePointerICmp()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 1843 APInt RHSOffset; in lowerConstant() local 1844 if (IsConstantOffsetFromGlobal(CE->getOperand(1), RHSGV, RHSOffset, in lowerConstant() 1852 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue(); in lowerConstant()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SROA.cpp | 168 uint64_t RHSOffset) { in operator <() argument 169 return LHS.beginOffset() < RHSOffset; in operator <()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 7660 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); in VisitBinaryOperator() local 7702 llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false); in VisitBinaryOperator() 7721 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && in VisitBinaryOperator() 7771 uint64_t CompareRHS = RHSOffset.getQuantity(); in VisitBinaryOperator()
|