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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp1271 APInt LHSOffset, RHSOffset; local
1274 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS);
1279 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
1305 APInt LHSOffset, RHSOffset; local
1308 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS);
1313 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
H A DInstructionSimplify.cpp721 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS); local
730 // = (LHSOffset + Base) - (RHSOffset + Base)
731 // = LHSOffset - RHSOffset
732 return ConstantExpr::getSub(LHSOffset, RHSOffset);
2386 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS); local
2391 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
2427 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
2451 RHSOffset->isNullValue())
2465 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2318 APInt RHSOffset; local
2319 if (IsConstantOffsetFromGlobal(CE->getOperand(1), RHSGV, RHSOffset,
2327 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp208 uint64_t RHSOffset) {
209 return LHS.beginOffset() < RHSOffset;
207 operator <(const Slice &LHS, uint64_t RHSOffset) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp11873 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
11885 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational)
11933 uint64_t CompareRHS = RHSOffset.getQuantity();
12128 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
12158 // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime,
12164 // Compute (LHSOffset - RHSOffset) / Size carefully, checking for
12167 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false);

Completed in 151 milliseconds