HomeSort by: relevance | last modified time | path
    Searched refs:RHSOffset (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InlineCost.cpp 1607 APInt LHSOffset, RHSOffset;
1610 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS);
1615 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
1641 APInt LHSOffset, RHSOffset;
1644 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS);
1649 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
InstructionSimplify.cpp 715 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
724 // = (LHSOffset + Base) - (RHSOffset + Base)
725 // = LHSOffset - RHSOffset
726 return ConstantExpr::getSub(LHSOffset, RHSOffset);
2469 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
2474 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
2510 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
2534 RHSOffset->isNullValue())
2548 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 2561 APInt RHSOffset;
2562 if (IsConstantOffsetFromGlobal(CE->getOperand(1), RHSGV, RHSOffset,
2576 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 197 uint64_t RHSOffset) {
198 return LHS.beginOffset() < RHSOffset;
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 12665 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
12677 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational)
12725 uint64_t CompareRHS = RHSOffset.getQuantity();
12923 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
12953 // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime,
12959 // Compute (LHSOffset - RHSOffset) / Size carefully, checking for
12962 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false);

Completed in 45 milliseconds