Home
last modified time | relevance | path

Searched refs:LHSOffset (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.cpp1003 unsigned LHSOffset; in VisitComplexBinOp() local
1031 LHSOffset = *LHSO; in VisitComplexBinOp()
1035 if (!this->emitGetPtrLocal(LHSOffset, E)) in VisitComplexBinOp()
1060 LHSOffset = this->allocateLocalPrimitive(LHS, PT_Ptr, true, false); in VisitComplexBinOp()
1063 if (!this->emitSetLocal(PT_Ptr, LHSOffset, E)) in VisitComplexBinOp()
1067 LHSOffset = this->allocateLocalPrimitive(LHS, LHST, true, false); in VisitComplexBinOp()
1070 if (!this->emitSetLocal(LHST, LHSOffset, E)) in VisitComplexBinOp()
1120 if (!loadComplexValue(LHSIsComplex, true, ElemIndex, LHSOffset, LHS)) in VisitComplexBinOp()
1134 if (!loadComplexValue(LHSIsComplex, true, ElemIndex, LHSOffset, LHS)) in VisitComplexBinOp()
1148 if (!loadComplexValue(LHSIsComplex, false, ElemIndex, LHSOffset, LHS)) in VisitComplexBinOp()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp743 APSInt LHSOffset, RHSOffset; in findFuncPointers() local
744 if (IsConstantOffsetFromGlobal(CE->getOperand(0), LHS, LHSOffset, DL) && in findFuncPointers()
750 LHSOffset == 0 && in findFuncPointers()
H A DInlineCost.cpp2047 APInt LHSOffset, RHSOffset; in visitCmpInst() local
2048 std::tie(LHSBase, LHSOffset) = ConstantOffsetPtrs.lookup(LHS); in visitCmpInst()
2056 ICmpInst::compare(LHSOffset, RHSOffset, I.getPredicate())); in visitCmpInst()
2092 APInt LHSOffset, RHSOffset; in visitSub() local
2093 std::tie(LHSBase, LHSOffset) = ConstantOffsetPtrs.lookup(LHS); in visitSub()
2099 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset); in visitSub()
H A DInstructionSimplify.cpp731 APInt LHSOffset = stripAndComputeConstantOffsets(DL, LHS); 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
2761 LHS = LHS->stripAndAccumulateConstantOffsets(DL, LHSOffset, AllowNonInbounds); in computePointerICmp()
2768 ICmpInst::compare(LHSOffset, RHSOffset, Pred)); in computePointerICmp()
2791 APInt Dist = LHSOffset - RHSOffset; in computePointerICmp()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1701 SourceLocation::UIntTy LHSOffset = LHS.getOffset(); in isBeforeInSLocAddrSpace() local
1702 bool LHSLoaded = LHSOffset >= CurrentLoadedOffset; in isBeforeInSLocAddrSpace()
1705 return LHSOffset < RHS; in isBeforeInSLocAddrSpace()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3236 APInt LHSOffset; in lowerConstant() local
3238 if (IsConstantOffsetFromGlobal(CE->getOperand(0), LHSGV, LHSOffset, in lowerConstant()
3256 int64_t Addend = (LHSOffset - RHSOffset).getSExtValue(); in lowerConstant()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp572 friend LLVM_ATTRIBUTE_UNUSED bool operator<(uint64_t LHSOffset, in operator <() argument
574 return LHSOffset < RHS.beginOffset(); in operator <()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp13715 const CharUnits &LHSOffset = LHSValue.getLValueOffset(); in EvaluateComparisonBinaryOperator() local
13728 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational) in EvaluateComparisonBinaryOperator()
13775 uint64_t CompareLHS = LHSOffset.getQuantity(); in EvaluateComparisonBinaryOperator()
13995 const CharUnits &LHSOffset = LHSValue.getLValueOffset(); in VisitBinaryOperator() local
14034 APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false); in VisitBinaryOperator()