Searched refs:RHS (Results 126 - 150 of 627) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DDeltaAlgorithm.cpp32 changeset_ty LHS, RHS; local
36 ((idx < N) ? LHS : RHS).insert(*it);
39 if (!RHS.empty())
40 Res.push_back(RHS);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.h47 DiagnosticLevelMask RHS) {
50 static_cast<UT>(LHS) | static_cast<UT>(RHS));
54 DiagnosticLevelMask RHS) {
57 static_cast<UT>(LHS) & static_cast<UT>(RHS));
46 operator |(DiagnosticLevelMask LHS, DiagnosticLevelMask RHS) argument
53 operator &(DiagnosticLevelMask LHS, DiagnosticLevelMask RHS) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DIdentifierResolver.h117 bool operator==(const iterator &RHS) const {
118 return Ptr == RHS.Ptr;
120 bool operator!=(const iterator &RHS) const {
121 return Ptr != RHS.Ptr;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableMap.h136 bool operator==(const ImmutableMap &RHS) const {
137 return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root;
140 bool operator!=(const ImmutableMap &RHS) const {
141 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root) : Root != RHS.Root;
346 bool operator==(const ImmutableMapRef &RHS) const {
347 return Root && RHS
[all...]
H A DImmutableSet.h131 bool isElementEqual(const ImutAVLTree* RHS) const {
132 return isElementEqual(RHS->getValue());
138 bool isEqual(const ImutAVLTree& RHS) const {
139 if (&RHS == this)
143 iterator RItr = RHS.begin(), REnd = RHS.end();
164 bool isNotEqual(const ImutAVLTree& RHS) const { return !isEqual(RHS); }
919 static bool isEqual(key_type_ref LHS, key_type_ref RHS) { argument
920 return std::equal_to<key_type>()(LHS,RHS);
923 isLess(key_type_ref LHS, key_type_ref RHS) argument
945 isEqual(key_type_ref LHS, key_type_ref RHS) argument
947 isLess(key_type_ref LHS, key_type_ref RHS) argument
1003 Factory(const Factory& RHS) = delete; member in class:llvm::ImmutableSet::Factory
1004 void operator=(const Factory& RHS) = delete; member in class:llvm::ImmutableSet::Factory
[all...]
H A Diterator.h59 /// - bool operator<(const DerivedT &RHS) const;
145 bool operator!=(const DerivedT &RHS) const {
146 return !static_cast<const DerivedT *>(this)->operator==(RHS);
149 bool operator>(const DerivedT &RHS) const {
153 return !static_cast<const DerivedT *>(this)->operator<(RHS) &&
154 !static_cast<const DerivedT *>(this)->operator==(RHS);
156 bool operator<=(const DerivedT &RHS) const {
160 return !static_cast<const DerivedT *>(this)->operator>(RHS);
162 bool operator>=(const DerivedT &RHS) const {
166 return !static_cast<const DerivedT *>(this)->operator<(RHS);
[all...]
H A DFoldingSet.h128 FoldingSetBase &operator=(FoldingSetBase &&RHS);
291 bool operator!=(FoldingSetNodeIDRef RHS) const { return !(*this == RHS); }
340 bool operator==(const FoldingSetNodeID &RHS) const;
341 bool operator==(const FoldingSetNodeIDRef RHS) const;
343 bool operator!=(const FoldingSetNodeID &RHS) const { return !(*this == RHS); }
344 bool operator!=(const FoldingSetNodeIDRef RHS) const { return !(*this ==RHS);}
348 bool operator<(const FoldingSetNodeID &RHS) cons
406 FoldingSetImpl &operator=(FoldingSetImpl &&RHS) = default; member in class:llvm::FoldingSetImpl
502 FoldingSet &operator=(FoldingSet &&RHS) = default; member in class:llvm::final
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingWriter.cpp71 mark(Expressions[ID].RHS);
81 gatherUsed(E.RHS);
138 const CounterMappingRegion &RHS) {
139 if (LHS.FileID != RHS.FileID)
140 return LHS.FileID < RHS.FileID;
141 if (LHS.startLoc() != RHS.startLoc())
142 return LHS.startLoc() < RHS.startLoc();
143 return LHS.Kind < RHS.Kind;
157 writeCounter(MinExpressions, Minimizer.adjust(E.RHS), OS);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h266 /// We assume that LHS == RHS.
268 const SCEV *RHS; member in class:llvm::final
272 const SCEV *RHS);
284 const SCEV *getRHS() const { return RHS; }
520 const SCEV *getAddExpr(const SCEV *LHS, const SCEV *RHS, argument
523 SmallVector<const SCEV *, 2> Ops = {LHS, RHS};
535 const SCEV *getMulExpr(const SCEV *LHS, const SCEV *RHS, argument
538 SmallVector<const SCEV *, 2> Ops = {LHS, RHS};
547 const SCEV *getUDivExpr(const SCEV *LHS, const SCEV *RHS);
548 const SCEV *getUDivExactExpr(const SCEV *LHS, const SCEV *RHS);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAllocator.h174 BumpPtrAllocatorImpl &operator=(BumpPtrAllocatorImpl &&RHS) { argument
178 CurPtr = RHS.CurPtr;
179 End = RHS.End;
180 BytesAllocated = RHS.BytesAllocated;
181 RedZoneSize = RHS.RedZoneSize;
182 Slabs = std::move(RHS.Slabs);
183 CustomSizedSlabs = std::move(RHS.CustomSizedSlabs);
184 Allocator = std::move(RHS.Allocator);
186 RHS.CurPtr = RHS
459 operator =(SpecificBumpPtrAllocator &&RHS) argument
[all...]
H A DLowLevelTypeImpl.h177 bool operator==(const LLT &RHS) const {
178 return IsPointer == RHS.IsPointer && IsVector == RHS.IsVector &&
179 RHS.RawData == RawData;
182 bool operator!=(const LLT &RHS) const { return !(*this == RHS); }
297 static bool isEqual(const LLT &LHS, const LLT &RHS) { argument
298 return LHS == RHS;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h105 bool operator==(const JITSymbolFlags &RHS) const {
106 return Flags == RHS.Flags && TargetFlags == RHS.TargetFlags;
110 JITSymbolFlags &operator&=(const FlagNames &RHS) { argument
111 Flags &= RHS;
116 JITSymbolFlags &operator|=(const FlagNames &RHS) { argument
117 Flags |= RHS;
175 const JITSymbolFlags::FlagNames &RHS) {
177 Tmp &= RHS;
182 const JITSymbolFlags::FlagNames &RHS) {
174 operator &(const JITSymbolFlags &LHS, const JITSymbolFlags::FlagNames &RHS) argument
181 operator |(const JITSymbolFlags &LHS, const JITSymbolFlags::FlagNames &RHS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPoisonChecking.cpp112 Value *RHS = I.getOperand(1); local
119 B.CreateBinaryIntrinsic(Intrinsic::sadd_with_overflow, LHS, RHS);
124 B.CreateBinaryIntrinsic(Intrinsic::uadd_with_overflow, LHS, RHS);
132 B.CreateBinaryIntrinsic(Intrinsic::ssub_with_overflow, LHS, RHS);
137 B.CreateBinaryIntrinsic(Intrinsic::usub_with_overflow, LHS, RHS);
145 B.CreateBinaryIntrinsic(Intrinsic::smul_with_overflow, LHS, RHS);
150 B.CreateBinaryIntrinsic(Intrinsic::umul_with_overflow, LHS, RHS);
158 B.CreateICmp(ICmpInst::ICMP_NE, B.CreateURem(LHS, RHS),
167 B.CreateICmp(ICmpInst::ICMP_NE, B.CreateSRem(LHS, RHS),
177 B.CreateICmp(ICmpInst::ICMP_UGE, RHS,
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.h172 bool operator<(const GCCVersion &RHS) const {
173 return isOlderThan(RHS.Major, RHS.Minor, RHS.Patch, RHS.PatchSuffix);
175 bool operator>(const GCCVersion &RHS) const { return RHS < *this; }
176 bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); }
177 bool operator>=(const GCCVersion &RHS) cons
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.cpp51 [](const FrameData &LHS, const FrameData &RHS) {
52 return LHS.RvaStart < RHS.RvaStart;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Linker/
H A DIRMover.h39 static bool isEqual(const KeyTy &LHS, const StructType *RHS);
40 static bool isEqual(const StructType *LHS, const StructType *RHS);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DInstructionSelector.cpp66 MachineOperand &RHS = RootI->getOperand(2);
67 MachineInstr *RHSI = MRI.getVRegDef(RHS.getReg());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCRegister.h103 static bool isEqual(const MCRegister &LHS, const MCRegister &RHS) { argument
104 return DenseMapInfo<unsigned>::isEqual(LHS.id(), RHS.id());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DCFG.h165 SuccessorProxy &operator=(SuccessorProxy RHS) { argument
166 *this = reference(RHS);
170 SuccessorProxy &operator=(reference RHS) { argument
171 It.Inst->setSuccessor(It.Idx, RHS);
206 inline bool operator<(const Self &RHS) const {
207 assert(Inst == RHS.Inst && "Cannot compare iterators of different blocks!");
208 return Idx < RHS.Idx;
211 int operator-(const Self &RHS) const {
212 assert(Inst == RHS.Inst && "Cannot compare iterators of different blocks!");
213 return Idx - RHS
216 operator +=(int RHS) argument
223 operator -=(int RHS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp55 static Value *getNewICmpValue(unsigned Code, bool Sign, Value *LHS, Value *RHS, argument
60 return Builder.CreateICmp(NewPred, LHS, RHS);
65 static Value *getFCmpValue(unsigned Code, Value *LHS, Value *RHS, argument
74 return Builder.CreateFCmp(Pred, LHS, RHS);
293 static bool decomposeBitTestICmp(Value *LHS, Value *RHS, CmpInst::Predicate &Pred, argument
296 if (!llvm::decomposeBitTestICmp(LHS, RHS, Pred, X, Mask))
307 /// LHS and RHS are the left hand side and the right hand side ICmps and PredL
313 ICmpInst *RHS,
318 !RHS->getOperand(0)->getType()->isIntegerTy())
323 // and L11 & L12 == L21 & L22. The same goes for RHS
311 getMaskedTypeForICmpPair(Value *&A, Value *&B, Value *&C, Value *&D, Value *&E, ICmpInst *LHS, ICmpInst *RHS, ICmpInst::Predicate &PredL, ICmpInst::Predicate &PredR) argument
441 foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed( ICmpInst *LHS, ICmpInst *RHS, bool IsAnd, Value *A, Value *B, Value *C, Value *D, Value *E, ICmpInst::Predicate PredL, ICmpInst::Predicate PredR, llvm::InstCombiner::BuilderTy &Builder) argument
571 foldLogOpOfMaskedICmpsAsymmetric( ICmpInst *LHS, ICmpInst *RHS, bool IsAnd, Value *A, Value *B, Value *C, Value *D, Value *E, ICmpInst::Predicate PredL, ICmpInst::Predicate PredR, unsigned LHSMask, unsigned RHSMask, llvm::InstCombiner::BuilderTy &Builder) argument
606 foldLogOpOfMaskedICmps(ICmpInst *LHS, ICmpInst *RHS, bool IsAnd, llvm::InstCombiner::BuilderTy &Builder) argument
804 foldAndOrOfEqualityCmpsWithConstants(ICmpInst *LHS, ICmpInst *RHS, bool JoinedByAnd, InstCombiner::BuilderTy &Builder) argument
860 foldAndOrOfICmpsOfAndWithPow2(ICmpInst *LHS, ICmpInst *RHS, bool JoinedByAnd, Instruction &CxtI) argument
1145 foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI) argument
1360 foldLogicOfFCmps(FCmpInst *LHS, FCmpInst *RHS, bool IsAnd) argument
1916 ICmpInst *RHS = dyn_cast<ICmpInst>(Op1); local
2187 foldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI) argument
2641 ICmpInst *RHS = dyn_cast<ICmpInst>(Op1); local
2797 foldXorOfICmps(ICmpInst *LHS, ICmpInst *RHS, BinaryOperator &I) argument
2930 Value *RHS = Builder.CreateAnd(B, NotC); local
3252 Value *LHS, *RHS; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h58 RECOVERABLE(add_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
61 RECOVERABLE(sub_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
64 RECOVERABLE(mul_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
71 ValueHandle LHS, ValueHandle RHS)
79 /// \brief Handle a shift where the RHS is out of bounds or a left shift where
82 ValueHandle LHS, ValueHandle RHS)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFExpression.h150 const DWARFExpression::iterator &RHS) {
151 return LHS.Expr == RHS.Expr && LHS.Offset == RHS.Offset;
155 const DWARFExpression::iterator &RHS) {
156 return !(LHS == RHS);
149 operator ==(const DWARFExpression::iterator &LHS, const DWARFExpression::iterator &RHS) argument
154 operator !=(const DWARFExpression::iterator &LHS, const DWARFExpression::iterator &RHS) argument
H A DDWARFVerifier.h82 /// Return true if ranges in this object contains all ranges within RHS.
83 bool contains(const DieRangeInfo &RHS) const;
86 /// RHS.
87 bool intersects(const DieRangeInfo &RHS) const;
330 const DWARFVerifier::DieRangeInfo &RHS) {
331 return std::tie(LHS.Ranges, LHS.Die) < std::tie(RHS.Ranges, RHS.Die);
329 operator <(const DWARFVerifier::DieRangeInfo &LHS, const DWARFVerifier::DieRangeInfo &RHS) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DGlobalDecl.h104 friend bool operator==(const GlobalDecl &LHS, const GlobalDecl &RHS) { argument
105 return LHS.Value == RHS.Value &&
106 LHS.MultiVersionIndex == RHS.MultiVersionIndex;
167 clang::GlobalDecl RHS) {
168 return LHS == RHS;
166 isEqual(clang::GlobalDecl LHS, clang::GlobalDecl RHS) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DDeltaTree.cpp58 DeltaTreeNode *LHS, *RHS; member in struct:__anon678::DeltaTreeNode::InsertResult
139 Children[1] = IR.RHS;
141 FullDelta = IR.LHS->getFullDelta()+IR.RHS->getFullDelta()+IR.Split.Delta;
226 InsertRes->RHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/);
245 IN->Children[i+1] = InsertRes->RHS;
258 DeltaTreeNode *SubRHS = InsertRes->RHS;
269 InsertSide = cast<DeltaTreeInteriorNode>(InsertRes->RHS);
304 // into the RHS child.
332 InsertRes.RHS = NewNode;
394 DeltaTree::DeltaTree(const DeltaTree &RHS) { argument
[all...]

Completed in 210 milliseconds

1234567891011>>