Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DCompiler.cpp1233 unsigned RHSOffset; in VisitComplexBinOp() local
1235 RHSOffset = this->allocateLocalPrimitive(RHS, PT_Ptr, /*IsConst=*/true); in VisitComplexBinOp()
1238 if (!this->emitSetLocal(PT_Ptr, RHSOffset, E)) in VisitComplexBinOp()
1242 RHSOffset = this->allocateLocalPrimitive(RHS, RHST, /*IsConst=*/true); in VisitComplexBinOp()
1245 if (!this->emitSetLocal(RHST, RHSOffset, E)) in VisitComplexBinOp()
1281 if (!loadComplexValue(RHSIsComplex, true, ElemIndex, RHSOffset, RHS)) in VisitComplexBinOp()
1295 if (!loadComplexValue(RHSIsComplex, true, ElemIndex, RHSOffset, RHS)) in VisitComplexBinOp()
1309 if (!loadComplexValue(RHSIsComplex, false, ElemIndex, RHSOffset, RHS)) in VisitComplexBinOp()
1325 if (!loadComplexValue(RHSIsComplex, false, ElemIndex, RHSOffset, RHS)) in VisitComplexBinOp()
1390 unsigned RHSOffset = in VisitVectorBinOp() local
[all …]
H A DInterp.cpp2015 unsigned RHSOffset = RHS.getIndex(); in arePotentiallyOverlappingStringLiterals() local
2021 int32_t IndexDiff = RHSOffset - LHSOffset; in arePotentiallyOverlappingStringLiterals()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp792 APSInt LHSOffset, RHSOffset; in findFuncPointers() local
794 IsConstantOffsetFromGlobal(CE->getOperand(1), RHS, RHSOffset, DL) && in findFuncPointers()
802 RHSOffset <= in findFuncPointers()
H A DInlineCost.cpp2213 APInt LHSOffset, RHSOffset; in visitCmpInst() local
2216 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitCmpInst()
2222 ICmpInst::compare(LHSOffset, RHSOffset, I.getPredicate())); in visitCmpInst()
2258 APInt LHSOffset, RHSOffset; in visitSub() local
2261 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitSub()
2266 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); in visitSub()
H A DInstructionSimplify.cpp689 APInt RHSOffset = stripAndComputeConstantOffsets(DL, RHS); in computePointerDifference() local
700 Constant *Res = ConstantInt::get(LHS->getContext(), LHSOffset - RHSOffset); in computePointerDifference()
2709 APInt LHSOffset(IndexSize, 0), RHSOffset(IndexSize, 0); in computePointerICmp() local
2711 RHS = RHS->stripAndAccumulateConstantOffsets(DL, RHSOffset, AllowNonInbounds); in computePointerICmp()
2717 ICmpInst::compare(LHSOffset, RHSOffset, Pred)); in computePointerICmp()
2740 APInt Dist = LHSOffset - RHSOffset; in computePointerICmp()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3575 APInt LHSOffset, RHSOffset; in lowerConstant() local
3579 IsConstantOffsetFromGlobal(CE->getOperand(1), RHSGV, RHSOffset, in lowerConstant()
3583 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue(); in lowerConstant()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.cpp5820 std::optional<ValueAndVReg> RHSOffset = in isFlatScratchBaseLegalSVImm() local
5822 assert(RHSOffset); in isFlatScratchBaseLegalSVImm()
5830 (RHSOffset->Value.getSExtValue() < 0 && in isFlatScratchBaseLegalSVImm()
5831 RHSOffset->Value.getSExtValue() > -0x40000000))) in isFlatScratchBaseLegalSVImm()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp572 uint64_t RHSOffset) { in operator <() argument
573 return LHS.beginOffset() < RHSOffset; in operator <()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp14551 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); in EvaluateComparisonBinaryOperator() local
14603 uint64_t CompareRHS = RHSOffset.getQuantity(); in EvaluateComparisonBinaryOperator()
14836 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); in VisitBinaryOperator() local
14875 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false); in VisitBinaryOperator()