Searched refs:RHS (Results 201 - 225 of 627) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp153 auto CompareBlocks = [](const Block *LHS, const Block *RHS) {
155 if (LHS->getSection().getOrdinal() != RHS->getSection().getOrdinal())
156 return LHS->getSection().getOrdinal() < RHS->getSection().getOrdinal();
157 if (LHS->getAddress() != RHS->getAddress())
158 return LHS->getAddress() < RHS->getAddress();
159 return LHS->getSize() < RHS->getSize();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DEnvironment.h90 bool operator==(const Environment& RHS) const {
91 return ExprBindings == RHS.ExprBindings;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp82 const Expr *RHS = B->getRHS(); local
91 if (isIdenticalStmt(AC->getASTContext(), RHS, B2->getRHS())) {
92 Sr[0] = RHS->getSourceRange();
99 if (isIdenticalStmt(AC->getASTContext(), RHS, LHS)) {
100 Sr[0] = RHS->getSourceRange();
223 const Expr *RHS = B->getRHS()->IgnoreParenImpCasts(); local
226 const DeclRefExpr *DeclRef2 = dyn_cast<DeclRefExpr>(RHS);
228 const FloatingLiteral *FloatLit2 = dyn_cast<FloatingLiteral>(RHS);
247 // Here only LHS is checked since RHS will be implicit casted to float.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerEmbeddedInt.h114 static bool isEqual(const T &LHS, const T &RHS) { return LHS == RHS; }
H A DScopedHashTable.h132 bool operator==(const ScopedHashTableIterator &RHS) const {
133 return Node == RHS.Node;
135 bool operator!=(const ScopedHashTableIterator &RHS) const {
136 return Node != RHS.Node;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DConstantFolding.h71 Constant *RHS, const DataLayout &DL,
84 Constant *RHS, const DataLayout &DL);
H A DMemoryLocation.h282 static bool isEqual(const LocationSize &LHS, const LocationSize &RHS) { argument
283 return LHS == RHS;
301 static bool isEqual(const MemoryLocation &LHS, const MemoryLocation &RHS) { argument
302 return LHS == RHS;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp24 // [expr setProp: RHS]
166 Expr *LHS = ce->getLHS(), *RHS = ce->getRHS(); local
167 Expr *&rebuiltExpr = ce->isConditionTrue() ? LHS : RHS;
172 LHS, RHS,
219 Expr *LHS, Expr *RHS);
292 Expr *LHS, Expr *RHS);
331 Expr *LHS, Expr *RHS);
433 Expr *LHS, Expr *RHS) {
437 OpaqueValueExpr *capturedRHS = capture(RHS);
439 // In some very specific cases, semantic analysis of the RHS a
431 buildAssignmentOperation(Scope *Sc, SourceLocation opcLoc, BinaryOperatorKind opcode, Expr *LHS, Expr *RHS) argument
892 buildAssignmentOperation(Scope *Sc, SourceLocation opcLoc, BinaryOperatorKind opcode, Expr *LHS, Expr *RHS) argument
1000 buildAssignmentOperation(Scope *Sc, SourceLocation opcLoc, BinaryOperatorKind opcode, Expr *LHS, Expr *RHS) argument
1589 checkPseudoObjectAssignment(Scope *S, SourceLocation opcLoc, BinaryOperatorKind opcode, Expr *LHS, Expr *RHS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DIdentifierTable.h399 bool operator<(const IdentifierInfo &RHS) const {
400 return getName() < RHS.getName();
743 bool operator==(Selector RHS) const {
744 return InfoPtr == RHS.InfoPtr;
746 bool operator!=(Selector RHS) const {
747 return InfoPtr != RHS.InfoPtr;
955 static bool isEqual(clang::Selector LHS, clang::Selector RHS) {
956 return LHS == RHS;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineOutliner.h130 bool operator<(const Candidate &RHS) const {
131 return getStartIdx() > RHS.getStartIdx();
H A DMachineScheduler.h815 bool operator==(const CandPolicy &RHS) const {
816 return ReduceLatency == RHS.ReduceLatency &&
817 ReduceResIdx == RHS.ReduceResIdx &&
818 DemandResIdx == RHS.DemandResIdx;
820 bool operator!=(const CandPolicy &RHS) const {
821 return !(*this == RHS);
835 bool operator==(const SchedResourceDelta &RHS) const {
836 return CritResources == RHS.CritResources
837 && DemandedResources == RHS.DemandedResources;
839 bool operator!=(const SchedResourceDelta &RHS) cons
[all...]
H A DLatencyPriorityQueue.h29 bool operator()(const SUnit* LHS, const SUnit* RHS) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DRange.h94 bool operator==(const AddressRanges &RHS) const {
95 return Ranges == RHS.Ranges;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DKnownBits.h220 /// Compute known bits resulting from adding LHS, RHS and a 1-bit Carry.
222 const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry);
224 /// Compute known bits resulting from adding LHS and RHS.
226 KnownBits RHS);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistration.cpp121 const OptionAndDescriptionTy &RHS) {
122 return LHS.first < RHS.first;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp66 bool operator()(const Function *LHS, const Function *RHS) const {
67 return LHS->getName() < RHS->getName();
88 bool operator==(const CVPLatticeVal &RHS) const {
89 return LatticeState == RHS.LatticeState && Functions == RHS.Functions;
92 bool operator!=(const CVPLatticeVal &RHS) const {
93 return LatticeState != RHS.LatticeState || Functions != RHS.Functions;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp219 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC,
733 // If the LHS has a foldable shift and the RHS does not, then swap it to the
734 // RHS so that we can fold the shift into the insert.
2500 SDValue get32BitZExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC,
2502 SDValue get32BitSExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC,
2504 SDValue get64BitZExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC,
2506 SDValue get64BitSExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC,
2600 SDValue RHS = LoweredLogical.getOperand(1); local
2643 dl, MVT::i64, MVT::Glue, LHS, RHS),
2674 SDValue LHS, RHS; local
2906 get32BitZExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC, int64_t RHSValue, SDLoc dl) argument
3079 get32BitSExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC, int64_t RHSValue, SDLoc dl) argument
3251 get64BitZExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC, int64_t RHSValue, SDLoc dl) argument
3408 get64BitSExtCompare(SDValue LHS, SDValue RHS, ISD::CondCode CC, int64_t RHSValue, SDLoc dl) argument
3605 SDValue RHS = Compare.getOperand(1); local
3695 SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, const SDLoc &dl) argument
4126 SDValue RHS = N->getOperand(1); local
4240 SDValue RHS = N->getOperand(1); local
4878 SDValue RHS = N->getOperand(1); local
5318 SDValue RHS, LHS; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp771 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1); local
774 // of LHS or RHS to have one use to ensure benefit in transform.
775 if (!LHS->hasOneUse() && !RHS->hasOneUse())
782 if (match(RHS, m_Add(m_Value(X), m_One())))
783 std::swap(LHS, RHS);
787 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1))))
788 std::swap(X, RHS);
792 // ADD(ADD(X, 1), RHS) == ADD(X, ADD(RHS, 1)) == SUB(RHS, AN
1028 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1); local
1513 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1); local
1587 OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty, bool IsNUW) argument
1817 Value *LHS, *RHS; local
2031 Value *LHS, *RHS, *A; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp645 Register Def, LHS, RHS; member in struct:Instr
646 Instr(unsigned Opcode, Register Def, Register LHS, Register RHS) argument
647 : Opcode(Opcode), Def(Def), LHS(LHS), RHS(RHS){};
660 Register RHS = I.getOperand(3).getReg(); local
665 case CmpInst::ICMP_EQ: // LHS == RHS -> (LHS ^ RHS) < 1
666 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS);
669 case CmpInst::ICMP_NE: // LHS != RHS -> 0 < (LHS ^ RHS)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp170 Value *LHS, Value *RHS,
174 if (Constant *CRHS = dyn_cast<Constant>(RHS))
205 IP->getOperand(1) == RHS && !canGenerateIncompatiblePoison(&*IP))
218 if (!L->isLoopInvariant(LHS) || !L->isLoopInvariant(RHS)) break;
228 Instruction *BO = cast<Instruction>(Builder.CreateBinOp(Opcode, LHS, RHS));
662 std::pair<const Loop *, const SCEV *> RHS) const {
665 RHS.second->getType()->isPointerTy())
669 if (LHS.first != RHS.first)
670 return PickMostRelevantLoop(LHS.first, RHS.first, DT) != LHS.first;
676 if (!RHS
169 InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS, SCEV::NoWrapFlags Flags, bool IsSafeToHoist) argument
834 const APInt *RHS; local
860 const APInt &RHS = SC->getAPInt(); local
867 Value *RHS = expandCodeFor(S->getRHS(), Ty); local
1672 Value *RHS = expandCodeFor(S->getOperand(i), Ty); local
1697 Value *RHS = expandCodeFor(S->getOperand(i), Ty); local
1722 Value *RHS = expandCodeFor(S->getOperand(i), Ty); local
1747 Value *RHS = expandCodeFor(S->getOperand(i), Ty); local
2104 Instruction *LHS, *RHS; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DSymbolTable.h81 const DefinedAtom * const RHS);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DOwnership.h175 const ActionResult &operator=(PtrTy RHS) { argument
176 Val = RHS;
225 const ActionResult &operator=(PtrTy RHS) { argument
226 void *VP = PtrTraits::getAsVoidPointer(RHS);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DSupport.h66 // Add the components of RHS to this instance. Instead of calculating
69 ResourceCycles &operator+=(const ResourceCycles &RHS);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h70 bool operator==(const CoverageMappingIterator &RHS) { argument
71 return Reader == RHS.Reader;
73 bool operator!=(const CoverageMappingIterator &RHS) { argument
74 return Reader != RHS.Reader;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelDAGToDAG.cpp105 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
106 int32_t RHSC = RHS->getSExtValue();
134 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
135 int32_t RHSC = RHS->getSExtValue();

Completed in 250 milliseconds

1234567891011>>