/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Compiler.cpp | 1075 unsigned RHSOffset; in VisitComplexBinOp() local 1077 RHSOffset = this->allocateLocalPrimitive(RHS, PT_Ptr, true, false); in VisitComplexBinOp() 1080 if (!this->emitSetLocal(PT_Ptr, RHSOffset, E)) in VisitComplexBinOp() 1084 RHSOffset = this->allocateLocalPrimitive(RHS, RHST, true, false); in VisitComplexBinOp() 1087 if (!this->emitSetLocal(RHST, RHSOffset, E)) in VisitComplexBinOp() 1123 if (!loadComplexValue(RHSIsComplex, true, ElemIndex, RHSOffset, RHS)) in VisitComplexBinOp() 1137 if (!loadComplexValue(RHSIsComplex, true, ElemIndex, RHSOffset, RHS)) in VisitComplexBinOp() 1151 if (!loadComplexValue(RHSIsComplex, false, ElemIndex, RHSOffset, RHS)) in VisitComplexBinOp() 1167 if (!loadComplexValue(RHSIsComplex, false, ElemIndex, RHSOffset, RHS)) in VisitComplexBinOp() 5435 unsigned RHSOffset; in emitComplexComparison() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ModuleSummaryAnalysis.cpp | 743 APSInt LHSOffset, RHSOffset; in findFuncPointers() local 745 IsConstantOffsetFromGlobal(CE->getOperand(1), RHS, RHSOffset, DL) && in findFuncPointers() 753 RHSOffset <= in findFuncPointers()
|
H A D | InlineCost.cpp | 2047 APInt LHSOffset, RHSOffset; in visitCmpInst() local 2050 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitCmpInst() 2056 ICmpInst::compare(LHSOffset, RHSOffset, I.getPredicate())); in visitCmpInst() 2092 APInt LHSOffset, RHSOffset; in visitSub() local 2095 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS); in visitSub() 2100 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); in visitSub()
|
H A D | InstructionSimplify.cpp | 732 APInt RHSOffset = stripAndComputeConstantOffsets(DL, RHS); in computePointerDifference() local 743 Constant *Res = ConstantInt::get(LHS->getContext(), LHSOffset - RHSOffset); in computePointerDifference() 2760 APInt LHSOffset(IndexSize, 0), RHSOffset(IndexSize, 0); in computePointerICmp() local 2762 RHS = RHS->stripAndAccumulateConstantOffsets(DL, RHSOffset, AllowNonInbounds); in computePointerICmp() 2768 ICmpInst::compare(LHSOffset, RHSOffset, Pred)); in computePointerICmp() 2791 APInt Dist = LHSOffset - RHSOffset; in computePointerICmp()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 3241 APInt RHSOffset; in lowerConstant() local 3242 if (IsConstantOffsetFromGlobal(CE->getOperand(1), RHSGV, RHSOffset, in lowerConstant() 3256 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue(); in lowerConstant()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUInstructionSelector.cpp | 4786 std::optional<ValueAndVReg> RHSOffset = in isFlatScratchBaseLegalSVImm() local 4788 assert(RHSOffset); in isFlatScratchBaseLegalSVImm() 4796 (RHSOffset->Value.getSExtValue() < 0 && in isFlatScratchBaseLegalSVImm() 4797 RHSOffset->Value.getSExtValue() > -0x40000000))) in isFlatScratchBaseLegalSVImm()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | SROA.cpp | 569 uint64_t RHSOffset) { in operator <() argument 570 return LHS.beginOffset() < RHSOffset; in operator <()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 13716 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); in EvaluateComparisonBinaryOperator() local 13728 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational) in EvaluateComparisonBinaryOperator() 13776 uint64_t CompareRHS = RHSOffset.getQuantity(); in EvaluateComparisonBinaryOperator() 13996 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); in VisitBinaryOperator() local 14035 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false); in VisitBinaryOperator()
|