Searched refs:Other (Results 151 - 175 of 440) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DUDTLayout.h125 ArrayRef<std::unique_ptr<PDBSymbol>> other_items() const { return Other; }
135 UniquePtrVector<PDBSymbol> Other; member in class:llvm::pdb::UDTLayoutBase
167 ClassLayout(ClassLayout &&Other) = default; member in class:llvm::pdb::ClassLayout
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDominanceFrontierImpl.h100 DominanceFrontierBase<BlockT, IsPostDom> &Other) const {
102 for (typename DomSetMapType::const_iterator I = Other.begin(),
103 E = Other.end();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp2272 /// Lanes with defined values in this register. Other lanes are undef and
2325 bool valuesIdentical(VNInfo *Value0, VNInfo *Value1, const JoinVals &Other) const;
2330 /// Recursively calls computeAssignment() on this and Other, guaranteeing that
2334 ConflictResolution analyzeValue(unsigned ValNo, JoinVals &Other);
2339 void computeAssignment(unsigned ValNo, JoinVals &Other);
2341 /// Assuming ValNo is going to clobber some valid lanes in Other.LR, compute
2344 /// Multiple values in Other.LR can be affected since partial redefinitions
2352 /// For each ValNo in Other that is affected, add an (EndIndex, TaintedLanes)
2357 taintExtent(unsigned ValNo, LaneBitmask TaintedLanes, JoinVals &Other,
2364 /// Determine if ValNo is a copy of a value number in LR or Other
2524 analyzeValue(unsigned ValNo, JoinVals &Other) argument
2762 computeAssignment(unsigned ValNo, JoinVals &Other) argument
2813 mapValues(JoinVals &Other) argument
2826 taintExtent(unsigned ValNo, LaneBitmask TaintedLanes, JoinVals &Other, SmallVectorImpl<std::pair<SlotIndex, LaneBitmask>> &TaintExtent) argument
2881 resolveConflicts(JoinVals &Other) argument
2946 isPrunedValue(unsigned ValNo, JoinVals &Other) argument
2961 pruneValues(JoinVals &Other, SmallVectorImpl<SlotIndex> &EndPoints, bool changeInstrs) argument
[all...]
H A DLiveDebugValues.cpp154 bool operator==(const SpillLoc &Other) const {
155 return SpillBase == Other.SpillBase && SpillOffset == Other.SpillOffset;
398 bool operator==(const VarLoc &Other) const {
399 return Kind == Other.Kind && Var == Other.Var &&
400 Loc.Hash == Other.Loc.Hash && Expr == Other.Expr;
404 bool operator<(const VarLoc &Other) const {
406 std::tie(Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h32 bool operator==(const TargetIndexLocation &Other) const {
33 return Index == Other.Index && Offset == Other.Offset;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelDAGToDAG.cpp103 MVT::Other, // outchain type
113 MVT::Other, // outchain type
200 WebAssembly::GLOBAL_GET_I32, DL, MVT::i32, MVT::Other,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h641 ElementRefImpl(ElementRefImpl<IsOtherConst> Other)
642 : ElementRefImpl(Other.Parent, Other.Index) {}
649 bool operator<(ElementRefImpl Other) const {
651 std::make_pair(Other.Parent, Other.Index);
654 bool operator==(ElementRefImpl Other) const {
655 return Parent == Other.Parent && Index == Other.Index;
658 bool operator!=(ElementRefImpl Other) cons
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTriple.cpp1572 bool Triple::isCompatibleWith(const Triple &Other) const {
1574 if ((getArch() == Triple::thumb && Other.getArch() == Triple::arm) ||
1575 (getArch() == Triple::arm && Other.getArch() == Triple::thumb) ||
1576 (getArch() == Triple::thumbeb && Other.getArch() == Triple::armeb) ||
1577 (getArch() == Triple::armeb && Other.getArch() == Triple::thumbeb)) {
1579 return getSubArch() == Other.getSubArch() &&
1580 getVendor() == Other.getVendor() && getOS() == Other.getOS();
1582 return getSubArch() == Other.getSubArch() &&
1583 getVendor() == Other
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp217 bool AtomicChange::operator==(const AtomicChange &Other) const {
218 if (Key != Other.Key || FilePath != Other.FilePath || Error != Other.Error)
220 if (!(Replaces == Other.Replaces))
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp186 UnusedInputDiagConsumer(DiagnosticConsumer &Other) : Other(Other) {} argument
196 Other.HandleDiagnostic(DiagLevel, Info);
200 DiagnosticConsumer &Other; member in class:__anon917::UnusedInputDiagConsumer
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp462 bool DataLayout::operator==(const DataLayout &Other) const {
463 bool Ret = BigEndian == Other.BigEndian &&
464 AllocaAddrSpace == Other.AllocaAddrSpace &&
465 StackNaturalAlign == Other.StackNaturalAlign &&
466 ProgramAddrSpace == Other.ProgramAddrSpace &&
467 FunctionPtrAlign == Other.FunctionPtrAlign &&
468 TheFunctionPtrAlignType == Other.TheFunctionPtrAlignType &&
469 ManglingMode == Other.ManglingMode &&
470 LegalIntWidths == Other.LegalIntWidths &&
471 Alignments == Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h113 void swap(StringMapImpl &Other) { argument
114 std::swap(TheTable, Other.TheTable);
115 std::swap(NumBuckets, Other.NumBuckets);
116 std::swap(NumItems, Other.NumItems);
117 std::swap(NumTombstones, Other.NumTombstones);
503 DerivedTy &operator=(const DerivedTy &Other) { argument
504 Ptr = Other.Ptr;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelDAGToDAG.cpp160 PtrVT, MVT::Other,
349 SDNode *ResNode = CurDAG->getMachineNode(Opc, DL, MVT::Other, Ops);
386 ResNode = CurDAG->getMachineNode(LPMOpc, DL, VT, MVT::i16, MVT::Other, Ptr,
393 ResNode = CurDAG->getMachineNode(AVR::LPMRdZ, DL, MVT::i8, MVT::Other,
398 MVT::Other, Ptr, RegZ);
447 CurDAG->getMachineNode(AVR::ICALL, DL, MVT::Other, MVT::Glue, Ops);
463 SDNode *ResNode = CurDAG->getMachineNode(AVR::IJMP, DL, MVT::Other, Chain);
543 // Nodes we handle partially. Other cases are autogenerated
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp265 /// Return true if this chain (StartInst..KillInst) overlaps with Other.
266 bool rangeOverlapsWith(const Chain &Other) const {
268 unsigned OtherEnd = Other.KillInst ?
269 Other.KillInstIdx : Other.LastInstIdx;
271 return StartInstIdx <= OtherEnd && Other.StartInstIdx <= End;
274 /// Return true if this chain starts before Other.
275 bool startsBefore(const Chain *Other) const {
276 return StartInstIdx < Other->StartInstIdx;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h142 bool operator==(const UniqueID &Other) const {
143 return Device == Other.Device && File == Other.File;
145 bool operator!=(const UniqueID &Other) const { return !(*this == Other); }
146 bool operator<(const UniqueID &Other) const {
147 return std::tie(Device, File) < std::tie(Other.Device, Other.File);
853 TempFile(TempFile &&Other);
854 TempFile &operator=(TempFile &&Other);
[all...]
H A DGenericDomTree.h97 bool compare(const DomTreeNodeBase *Other) const {
98 if (getNumChildren() != Other->getNumChildren())
101 if (Level != Other->Level) return true;
104 for (const DomTreeNodeBase *I : *Other) {
292 bool compare(const DominatorTreeBase &Other) const {
293 if (Parent != Other.Parent) return true;
295 if (Roots.size() != Other.Roots.size())
298 if (!std::is_permutation(Roots.begin(), Roots.end(), Other.Roots.begin()))
301 const DomTreeNodeMapType &OtherDomTreeNodes = Other.DomTreeNodes;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h469 AnyFunctionCall(const AnyFunctionCall &Other) = default; member in class:clang::ento::AnyFunctionCall
503 SimpleFunctionCall(const SimpleFunctionCall &Other) = default; member in class:clang::ento::SimpleFunctionCall
539 BlockCall(const BlockCall &Other) = default; member in class:clang::ento::BlockCall
646 CXXInstanceCall(const CXXInstanceCall &Other) = default; member in class:clang::ento::CXXInstanceCall
681 CXXMemberCall(const CXXMemberCall &Other) = default; member in class:clang::ento::CXXMemberCall
722 CXXMemberOperatorCall(const CXXMemberOperatorCall &Other) = default; member in class:clang::ento::CXXMemberOperatorCall
789 CXXDestructorCall(const CXXDestructorCall &Other) = default; member in class:clang::ento::CXXDestructorCall
834 CXXConstructorCall(const CXXConstructorCall &Other) = default; member in class:clang::ento::CXXConstructorCall
879 CXXAllocatorCall(const CXXAllocatorCall &Other) = default; member in class:clang::ento::CXXAllocatorCall
950 ObjCMethodCall(const ObjCMethodCall &Other) member in class:clang::ento::ObjCMethodCall
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h1714 bool operator==(const RawStringFormat &Other) const {
1715 return Language == Other.Language && Delimiters == Other.Delimiters &&
1716 EnclosingFunctions == Other.EnclosingFunctions &&
1717 CanonicalDelimiter == Other.CanonicalDelimiter &&
1718 BasedOnStyle == Other.BasedOnStyle;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp291 void InitFromPred(const BBState &Other);
292 void InitFromSucc(const BBState &Other);
293 void MergePred(const BBState &Other);
294 void MergeSucc(const BBState &Other);
339 void BBState::InitFromPred(const BBState &Other) { argument
340 PerPtrTopDown = Other.PerPtrTopDown;
341 TopDownPathCount = Other.TopDownPathCount;
344 void BBState::InitFromSucc(const BBState &Other) { argument
345 PerPtrBottomUp = Other.PerPtrBottomUp;
346 BottomUpPathCount = Other
351 MergePred(const BBState &Other) argument
394 MergeSucc(const BBState &Other) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.h54 bool operator==(const MaskRolPair Other) const {
55 return Mask == Other.Mask && RotateLeft == Other.RotateLeft;
57 bool operator!=(const MaskRolPair Other) const {
58 return Mask != Other.Mask || RotateLeft != Other.RotateLeft;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DDominators.h73 bool compare(CFGDominatorTreeImpl &Other) const {
75 DomTreeNode *OtherR = Other.getRootNode();
80 if (DT.compare(Other.getBase()))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.h56 bool operator==(PacketIterator const &Other) const;
57 bool operator!=(PacketIterator const &Other) const {
58 return !(*this == Other);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp177 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other, MVT::Glue);
221 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
237 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DAtomicChange.h54 bool operator==(const AtomicChange &Other) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp1295 operator==(const ImportDirectoryEntryRef &Other) const {
1296 return ImportTable == Other.ImportTable && Index == Other.Index;
1402 operator==(const DelayImportDirectoryEntryRef &Other) const {
1403 return Table == Other.Table && Index == Other.Index;
1456 operator==(const ExportDirectoryEntryRef &Other) const {
1457 return ExportTable == Other.ExportTable && Index == Other.Index;
1554 operator==(const ImportedSymbolRef &Other) cons
[all...]

Completed in 351 milliseconds

1234567891011>>