Searched refs:LHSOffset (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp1433 APInt LHSOffset, RHSOffset; local
1434 std::tie(LHSBase, LHSOffset) = ConstantOffsetPtrs.lookup(LHS);
1440 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
1467 APInt LHSOffset, RHSOffset; local
1468 std::tie(LHSBase, LHSOffset) = ConstantOffsetPtrs.lookup(LHS);
1474 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
H A DInstructionSimplify.cpp719 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS); local
729 // = (LHSOffset + Base) - (RHSOffset + Base)
730 // = LHSOffset - RHSOffset
731 return ConstantExpr::getSub(LHSOffset, RHSOffset);
2448 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS); local
2454 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
2489 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
2513 LHSOffset->isNullValue() &&
2527 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1612 unsigned LHSOffset = LHS.getOffset(); local
1613 bool LHSLoaded = LHSOffset >= CurrentLoadedOffset;
1616 return LHSOffset < RHS;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2361 APInt LHSOffset; local
2362 if (IsConstantOffsetFromGlobal(CE->getOperand(0), LHSGV, LHSOffset,
2374 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp200 friend LLVM_ATTRIBUTE_UNUSED bool operator<(uint64_t LHSOffset, argument
202 return LHSOffset < RHS.beginOffset();
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp12213 const CharUnits &LHSOffset = LHSValue.getLValueOffset();
12226 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational)
12273 uint64_t CompareLHS = LHSOffset.getQuantity();
12468 const CharUnits &LHSOffset = LHSValue.getLValueOffset();
12499 // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime,
12505 // Compute (LHSOffset - RHSOffset) / Size carefully, checking for
12507 APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false);

Completed in 270 milliseconds