/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | KnownBits.cpp | 21 static KnownBits computeForAddCarry(const KnownBits &LHS, const KnownBits &RHS, in computeForAddCarry() 45 const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry) { in computeForAddCarry() 53 const KnownBits &RHS) { in computeForAddSub() 137 KnownBits KnownBits::computeForSubBorrow(const KnownBits &LHS, KnownBits RHS, in computeForSubBorrow() 178 KnownBits KnownBits::umax(const KnownBits &LHS, const KnownBits &RHS) { in umax() 196 KnownBits KnownBits::umin(const KnownBits &LHS, const KnownBits &RHS) { in umin() 202 KnownBits KnownBits::smax(const KnownBits &LHS, const KnownBits &RHS) { in smax() 215 KnownBits KnownBits::smin(const KnownBits &LHS, const KnownBits &RHS) { in smin() 228 KnownBits KnownBits::abdu(const KnownBits &LHS, const KnownBits &RHS) { in abdu() 247 KnownBits KnownBits::abds(KnownBits LHS, KnownBits RHS) { in abds() [all …]
|
H A D | Z3Solver.cpp | 254 const llvm::fltSemantics &RHS) { in areEquivalent() 363 SMTExprRef mkBVAdd(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVAdd() 369 SMTExprRef mkBVSub(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSub() 375 SMTExprRef mkBVMul(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVMul() 381 SMTExprRef mkBVSRem(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSRem() 387 SMTExprRef mkBVURem(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVURem() 393 SMTExprRef mkBVSDiv(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSDiv() 399 SMTExprRef mkBVUDiv(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVUDiv() 405 SMTExprRef mkBVShl(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVShl() 411 SMTExprRef mkBVAshr(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVAshr() [all …]
|
H A D | SmallPtrSet.cpp | 144 void SmallPtrSetImplBase::CopyFrom(const SmallPtrSetImplBase &RHS) { in CopyFrom() 170 void SmallPtrSetImplBase::CopyHelper(const SmallPtrSetImplBase &RHS) { in CopyHelper() 182 SmallPtrSetImplBase &&RHS) { in MoveFrom() 189 SmallPtrSetImplBase &&RHS) { in MoveHelper() 213 void SmallPtrSetImplBase::swap(SmallPtrSetImplBase &RHS) { in swap()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVSort.cpp | 28 const LVObject *RHS) { in compareKind() 34 const LVObject *RHS) { in compareLine() 40 const LVObject *RHS) { in compareName() 46 const LVObject *RHS) { in compareOffset() 52 const LVObject *RHS) { in compareRange() 66 const LVObject *RHS) { in sortByKind() 78 const LVObject *RHS) { in sortByLine() 90 const LVObject *RHS) { in sortByName()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | TypeSize.h | 163 constexpr LeafTy getWithIncrement(ScalarTy RHS) const { in getWithIncrement() 183 constexpr bool isKnownMultipleOf(ScalarTy RHS) const { in isKnownMultipleOf() 188 constexpr bool isKnownMultipleOf(const FixedOrScalableQuantity &RHS) const { in isKnownMultipleOf() 219 const FixedOrScalableQuantity &RHS) { in isKnownLT() 226 const FixedOrScalableQuantity &RHS) { in isKnownGT() 233 const FixedOrScalableQuantity &RHS) { in isKnownLE() 240 const FixedOrScalableQuantity &RHS) { in isKnownGE() 254 constexpr LeafTy divideCoefficientBy(ScalarTy RHS) const { in divideCoefficientBy() 258 constexpr LeafTy multiplyCoefficientBy(ScalarTy RHS) const { in multiplyCoefficientBy() 271 hasKnownScalarFactor(const FixedOrScalableQuantity &RHS) const { in hasKnownScalarFactor() [all …]
|
H A D | CheckedArithmetic.h | 47 T RHS) { in checkedAdd() 56 T RHS) { in checkedSub() 65 T RHS) { in checkedMul() 85 checkedAddUnsigned(T LHS, T RHS) { in checkedAddUnsigned() 94 checkedMulUnsigned(T LHS, T RHS) { in checkedMulUnsigned()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | SmallString.h | 51 void assign(StringRef RHS) { in assign() 68 void append(StringRef RHS) { in append() 92 [[nodiscard]] bool equals(StringRef RHS) const { return str() == RHS; } in equals() 95 [[nodiscard]] bool equals_insensitive(StringRef RHS) const { in equals_insensitive() 102 [[nodiscard]] int compare(StringRef RHS) const { return str().compare(RHS); } in compare() 105 [[nodiscard]] int compare_insensitive(StringRef RHS) const { in compare_insensitive() 111 [[nodiscard]] int compare_numeric(StringRef RHS) const { in compare_numeric()
|
H A D | APInt.h | 1059 bool eq(const APInt &RHS) const { return (*this) == RHS; } in eq() 1083 bool ne(const APInt &RHS) const { return !((*this) == RHS); } in ne() 1091 bool ult(const APInt &RHS) const { return compare(RHS) < 0; } in ult() 1099 bool ult(uint64_t RHS) const { in ult() 1110 bool slt(const APInt &RHS) const { return compareSigned(RHS) < 0; } in slt() 1118 bool slt(int64_t RHS) const { in slt() 1130 bool ule(const APInt &RHS) const { return compare(RHS) <= 0; } in ule() 1138 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule() 1146 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; } in sle() 1154 bool sle(uint64_t RHS) const { return !sgt(RHS); } in sle() [all …]
|
H A D | Twine.h | 162 Child RHS; global() variable 176 Twine(const Twine & LHS,const Twine & RHS) Twine() argument 184 Twine(Child LHS,NodeKind LHSKind,Child RHS,NodeKind RHSKind) Twine() argument 372 Twine(const char * LHS,const StringRef & RHS) Twine() argument 381 Twine(const StringRef & LHS,const char * RHS) Twine() argument 405 Child LHS, RHS; utohexstr() local [all...] |
H A D | SparseBitVector.h | 398 BitVector(RHS) BitVector() argument 446 SparseBitVector(const SparseBitVector & RHS) SparseBitVector() argument 448 SparseBitVector(SparseBitVector && RHS) SparseBitVector() argument 637 intersectWithComplement(const SparseBitVector & RHS) intersectWithComplement() argument 682 intersectWithComplement(const SparseBitVector<ElementSize> * RHS) intersectWithComplement() argument 739 intersects(const SparseBitVector<ElementSize> * RHS) intersects() argument 744 intersects(const SparseBitVector<ElementSize> & RHS) intersects() argument 773 contains(const SparseBitVector<ElementSize> & RHS) contains() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineInternal.h | 313 const WithCache<const Value *> &RHS, in willNotOverflowSignedAdd() 320 const WithCache<const Value *> &RHS, in willNotOverflowUnsignedAdd() 326 bool willNotOverflowAdd(const Value *LHS, const Value *RHS, in willNotOverflowAdd() 332 bool willNotOverflowSignedSub(const Value *LHS, const Value *RHS, in willNotOverflowSignedSub() 338 bool willNotOverflowUnsignedSub(const Value *LHS, const Value *RHS, in willNotOverflowUnsignedSub() 344 bool willNotOverflowSub(const Value *LHS, const Value *RHS, in willNotOverflowSub() 350 bool willNotOverflowSignedMul(const Value *LHS, const Value *RHS, in willNotOverflowSignedMul() 363 bool willNotOverflowMul(const Value *LHS, const Value *RHS, in willNotOverflowMul() 370 const Value *RHS, const Instruction &CxtI, in willNotOverflow()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyLogical.h | 55 LExpr *LHS, *RHS; variable 58 BinOp(LExpr *LHS, LExpr *RHS, Opcode Code) : LExpr(Code), LHS(LHS), RHS(RHS) {} in BinOp() 70 And(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::And) {} in And() 77 Or(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::Or) {} in Or() 98 bool LExpr::implies(const LExpr *RHS) const { in implies()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | MatrixBuilder.h | 38 Value *RHS) { in splatScalarOperandIfNeeded() 157 Value *CreateAdd(Value *LHS, Value *RHS) { in CreateAdd() 182 Value *CreateSub(Value *LHS, Value *RHS) { in CreateSub() 207 Value *CreateScalarMultiply(Value *LHS, Value *RHS) { in CreateScalarMultiply() 216 Value *CreateScalarDiv(Value *LHS, Value *RHS, bool IsUnsigned) { in CreateScalarDiv()
|
H A D | FixedPointBuilder.h | 229 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateAdd() 255 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateSub() 289 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateMul() 317 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateDiv() 343 Value *CreateShl(Value *LHS, const FixedPointSemantics &LHSSema, Value *RHS) { in CreateShl() 364 Value *CreateShr(Value *LHS, const FixedPointSemantics &LHSSema, Value *RHS) { in CreateShr() 376 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateEQ() 391 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateNE() 406 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateLT() 422 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateLE() [all …]
|
H A D | NoFolder.h | 49 Value *RHS) const override { in FoldBinOp() 53 Value *FoldExactBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldExactBinOp() 58 Value *FoldNoWrapBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldNoWrapBinOp() 63 Value *FoldBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldBinOpFMF() 73 Value *FoldCmp(CmpInst::Predicate P, Value *LHS, Value *RHS) const override { in FoldCmp() 115 Value *FoldBinaryIntrinsic(Intrinsic::ID ID, Value *LHS, Value *RHS, Type *Ty, in FoldBinaryIntrinsic()
|
H A D | ConstantFolder.h | 44 Value *RHS) const override { in FoldBinOp() 55 Value *FoldExactBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldExactBinOp() 68 Value *FoldNoWrapBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldNoWrapBinOp() 86 Value *FoldBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldBinOpFMF() 98 Value *FoldCmp(CmpInst::Predicate P, Value *LHS, Value *RHS) const override { in FoldCmp() 183 Value *FoldBinaryIntrinsic(Intrinsic::ID ID, Value *LHS, Value *RHS, Type *Ty, in FoldBinaryIntrinsic()
|
H A D | ValueHandle.h | 39 ValueHandleBase(const ValueHandleBase &RHS) in ValueHandleBase() 42 ValueHandleBase(HandleBaseKind Kind, const ValueHandleBase &RHS) in ValueHandleBase() 148 WeakVH(const WeakVH &RHS) in WeakVH()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | InstSimplifyFolder.h | 51 Value *RHS) const override { in FoldBinOp() 55 Value *FoldExactBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldExactBinOp() 60 Value *FoldNoWrapBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldNoWrapBinOp() 65 Value *FoldBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldBinOpFMF() 75 Value *FoldCmp(CmpInst::Predicate P, Value *LHS, Value *RHS) const override { in FoldCmp() 120 Value *FoldBinaryIntrinsic(Intrinsic::ID ID, Value *LHS, Value *RHS, Type *Ty, in FoldBinaryIntrinsic()
|
H A D | TargetFolder.h | 55 Value *RHS) const override { in FoldBinOp() 66 Value *FoldExactBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldExactBinOp() 79 Value *FoldNoWrapBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldNoWrapBinOp() 97 Value *FoldBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldBinOpFMF() 102 Value *FoldCmp(CmpInst::Predicate P, Value *LHS, Value *RHS) const override { in FoldCmp() 191 Value *FoldBinaryIntrinsic(Intrinsic::ID ID, Value *LHS, Value *RHS, Type *Ty, in FoldBinaryIntrinsic()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | SMTConv.h | 93 const llvm::SMTExprRef &RHS, in fromBinOp() 171 const llvm::APFloat::fltCategory &RHS) { in fromFloatSpecialBinOp() 204 const llvm::SMTExprRef &RHS) { in fromFloatBinOp() 348 BinaryOperator::Opcode Op, const llvm::SMTExprRef &RHS, in getBinExpr() 394 llvm::SMTExprRef RHS = in getSymBinExpr() local 404 llvm::SMTExprRef RHS = in getSymBinExpr() local 412 llvm::SMTExprRef RHS = in getSymBinExpr() local 561 llvm::SMTExprRef RHS = getBinExpr(Solver, Ctx, Exp, SymTy, in getRangeExpr() local 597 llvm::SMTExprRef &RHS, QualType <y, in doTypeConversion() 674 T &RHS, QualType &RTy) { in doIntTypeConversion() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCExpr.h | 532 static const MCBinaryExpr *createAdd(const MCExpr *LHS, const MCExpr *RHS, in createAdd() 537 static const MCBinaryExpr *createAnd(const MCExpr *LHS, const MCExpr *RHS, in createAnd() 542 static const MCBinaryExpr *createDiv(const MCExpr *LHS, const MCExpr *RHS, in createDiv() 547 static const MCBinaryExpr *createEQ(const MCExpr *LHS, const MCExpr *RHS, in createEQ() 552 static const MCBinaryExpr *createGT(const MCExpr *LHS, const MCExpr *RHS, in createGT() 557 static const MCBinaryExpr *createGTE(const MCExpr *LHS, const MCExpr *RHS, in createGTE() 562 static const MCBinaryExpr *createLAnd(const MCExpr *LHS, const MCExpr *RHS, in createLAnd() 567 static const MCBinaryExpr *createLOr(const MCExpr *LHS, const MCExpr *RHS, in createLOr() 572 static const MCBinaryExpr *createLT(const MCExpr *LHS, const MCExpr *RHS, in createLT() 577 static const MCBinaryExpr *createLTE(const MCExpr *LHS, const MCExpr *RHS, in createLTE() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Rewrite/ |
H A D | RewriteRope.cpp | 405 RopePieceBTreeInterior(RopePieceBTreeNode *LHS, RopePieceBTreeNode *RHS) in RopePieceBTreeInterior() 492 if (RopePieceBTreeNode *RHS = getChild(i)->split(Offset-ChildOffset)) in split() local 522 if (RopePieceBTreeNode *RHS = getChild(i)->insert(Offset-ChildOffs, R)) in insert() local 531 RopePieceBTreeInterior::HandleChildPiece(unsigned i, RopePieceBTreeNode *RHS) { in HandleChildPiece() 725 RopePieceBTree::RopePieceBTree(const RopePieceBTree &RHS) { in RopePieceBTree() 749 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert() local 753 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert() local 759 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in erase() local
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | CNFFormula.cpp | 185 const Variable RHS = GetVar(F->operands()[1]); in buildCNF() local 205 const Variable RHS = GetVar(F->operands()[1]); in buildCNF() local 235 const Variable RHS = GetVar(F->operands()[1]); in buildCNF() local 248 const Variable RHS = GetVar(F->operands()[1]); in buildCNF() local
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | NaryReassociate.cpp | 278 Value *RHS = nullptr; in matchAndReassociateMinOrMax() local 380 Value *LHS = AO->getOperand(0), *RHS = AO->getOperand(1); in tryReassociateGEPAtIndex() local 397 Value *RHS, Type *IndexedType) { in tryReassociateGEPAtIndex() 467 Value *LHS = I->getOperand(0), *RHS = I->getOperand(1); in tryReassociateBinaryOp() local 478 Instruction *NaryReassociatePass::tryReassociateBinaryOp(Value *LHS, Value *RHS, in tryReassociateBinaryOp() 503 Value *RHS, in tryReassociatedBinaryOp() 542 const SCEV *RHS) { in getBinarySCEV() 612 Value *LHS, Value *RHS) { in tryReassociateMinOrMax()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineModuleInfoImpls.cpp | 32 static int SortSymbolPair(const PairTy *LHS, const PairTy *RHS) { in SortSymbolPair() 48 const ExprStubPairTy *RHS) { in SortAuthStubPair()
|