Searched refs:Other (Results 126 - 150 of 440) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelLowering.cpp118 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
119 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
128 setOperationAction(ISD::VASTART, MVT::Other, Custom);
129 setOperationAction(ISD::VAEND, MVT::Other, Expand);
130 setOperationAction(ISD::VAARG, MVT::Other, Expand);
131 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
133 // Other expansions
134 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
135 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
206 return DAG.getNode(ARCISD::BRcc, dl, MVT::Other, Chai
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAttr.h338 bool operator ==(const ParsedTargetAttr &Other) const {
339 return DuplicateArchitecture == Other.DuplicateArchitecture &&
340 Architecture == Other.Architecture && Features == Other.Features;
H A DCXXInheritance.h236 void swap(CXXBasePaths &Other);
310 void add(const OverridingMethods &Other);
H A DASTImporter.h56 Unknown /// Other error.
64 ImportError(const ImportError &Other) : Error(Other.Error) {} argument
65 ImportError &operator=(const ImportError &Other) { argument
66 Error = Other.Error;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h176 PrintRecord(const PrintRecord &Other) = default; member in struct:llvm::TimerGroup::PrintRecord
177 PrintRecord &operator=(const PrintRecord &Other) = default; member in struct:llvm::TimerGroup::PrintRecord
182 bool operator <(const PrintRecord &Other) const {
183 return Time < Other.Time;
H A DSMTAPI.h60 bool operator<(const SMTSort &Other) const {
63 Other.Profile(ID2);
105 bool operator<(const SMTExpr &Other) const {
108 Other.Profile(ID2);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h141 TempPCHFile(TempPCHFile &&Other);
142 TempPCHFile &operator=(TempPCHFile &&Other);
173 PCHStorage(PCHStorage &&Other);
174 PCHStorage &operator=(PCHStorage &&Other);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h61 SuppressAccessChecks(SuppressAccessChecks &&Other) argument
62 : S(Other.S), DiagnosticPool(std::move(Other.DiagnosticPool)),
63 State(Other.State), Active(Other.Active) {
64 Other.Active = false;
66 void operator=(SuppressAccessChecks &&Other) = delete; member in class:clang::SuppressAccessChecks
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h129 bool overlaps(const SDep &Other) const;
131 bool operator==(const SDep &Other) const {
132 return overlaps(Other) && Latency == Other.Latency;
135 bool operator!=(const SDep &Other) const {
136 return !operator==(Other);
465 inline bool SDep::overlaps(const SDep &Other) const {
466 if (Dep != Other.Dep)
472 return Contents.Reg == Other.Contents.Reg;
474 return Contents.OrdKind == Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp54 bool CtorDtorIterator::operator==(const CtorDtorIterator &Other) const {
55 assert(InitList == Other.InitList && "Incomparable iterators.");
56 return I == Other.I;
59 bool CtorDtorIterator::operator!=(const CtorDtorIterator &Other) const {
60 return !(*this == Other);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h572 ImplicitConversionSequence(const ImplicitConversionSequence &Other) argument
573 : ConversionKind(Other.ConversionKind),
574 StdInitializerListElement(Other.StdInitializerListElement) {
577 case StandardConversion: Standard = Other.Standard; break;
578 case UserDefinedConversion: UserDefined = Other.UserDefined; break;
579 case AmbiguousConversion: Ambiguous.copyFrom(Other.Ambiguous); break;
581 case BadConversion: Bad = Other.Bad; break;
586 operator=(const ImplicitConversionSequence &Other) { argument
588 new (this) ImplicitConversionSequence(Other);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h267 /// Merge the samples in \p Other into this record.
269 sampleprof_error merge(const SampleRecord &Other, uint64_t Weight = 1) { argument
270 sampleprof_error Result = addSamples(Other.getSamples(), Weight);
271 for (const auto &I : Other.getCallTargets()) {
444 /// Merge the samples in \p Other into this one.
446 sampleprof_error merge(const FunctionSamples &Other, uint64_t Weight = 1) { argument
448 Name = Other.getName();
449 MergeResult(Result, addTotalSamples(Other.getTotalSamples(), Weight));
450 MergeResult(Result, addHeadSamples(Other.getHeadSamples(), Weight));
451 for (const auto &I : Other
[all...]
H A DInstrProfWriter.h103 // Compute the overlap b/w this object and Other. Program level result is
105 void overlapRecord(NamedInstrProfRecord &&Other, OverlapStats &Overlap,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp111 setOperationAction(ISD::TRAP, MVT::Other, Legal);
114 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
137 setOperationAction(ISD::VAEND, MVT::Other, Expand);
138 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
139 setOperationAction(ISD::VAARG, MVT::Other, Custom);
140 setOperationAction(ISD::VASTART, MVT::Other, Custom);
143 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
144 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
148 setOperationAction(ISD::EH_RETURN, MVT::Other, Custom);
154 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custo
636 SDValue Other; local
[all...]
H A DXCoreISelDAGToDAG.cpp151 MVT::Other, CPIdx,
207 // Other cases are autogenerated.
235 return CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, Ops);
275 CurDAG->SelectNodeTo(N, XCore::BRFU_lu6, MVT::Other,
279 CurDAG->SelectNodeTo(N, XCore::BAU_1r, MVT::Other, nextAddr, Glue);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp533 InstrProfRecord &Other,
537 assert(ThisNumValueSites == Other.getNumValueSites(ValueKind));
544 Other.getValueSitesForKind(ValueKind);
550 void InstrProfRecord::overlap(InstrProfRecord &Other, OverlapStats &Overlap, argument
556 bool Mismatch = (Counts.size() != Other.Counts.size());
562 uint32_t OtherNumValueSites = Other.getNumValueSites(Kind);
576 overlapValueProfData(Kind, Other, Overlap, FuncLevelOverlap);
581 for (size_t I = 0, E = Other.Counts.size(); I < E; ++I) {
582 Score += OverlapStats::score(Counts[I], Other.Counts[I],
584 MaxCount = std::max(Other
532 overlapValueProfData(uint32_t ValueKind, InstrProfRecord &Other, OverlapStats &Overlap, OverlapStats &FuncLevelOverlap) argument
655 merge(InstrProfRecord &Other, uint64_t Weight, function_ref<void(instrprof_error)> Warn) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DStratifiedSets.h231 void setAttrs(AliasAttrs Other) { argument
233 Link.Attrs |= Other;
239 void remapTo(StratifiedIndex Other) { argument
241 Remap = Other;
250 void updateRemap(StratifiedIndex Other) { argument
252 Remap = Other;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp559 PrecompiledPreamble::TempPCHFile::TempPCHFile(TempPCHFile &&Other) { argument
560 FilePath = std::move(Other.FilePath);
561 Other.FilePath = None;
565 operator=(TempPCHFile &&Other) { argument
568 FilePath = std::move(Other.FilePath);
569 Other.FilePath = None;
597 PrecompiledPreamble::PCHStorage::PCHStorage(PCHStorage &&Other) : PCHStorage() { argument
598 *this = std::move(Other);
602 operator=(PCHStorage &&Other) { argument
605 StorageKind = Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp368 ItaniumPartialDemangler &&Other)
369 : RootNode(Other.RootNode), Context(Other.Context) {
370 Other.Context = Other.RootNode = nullptr;
374 operator=(ItaniumPartialDemangler &&Other) { argument
375 std::swap(RootNode, Other.RootNode);
376 std::swap(Context, Other.Context);
367 ItaniumPartialDemangler( ItaniumPartialDemangler &&Other) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDefs.h201 template<class Other>
202 struct rebind { typedef fuzzer_allocator<Other> other; };
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DInputFile.h59 InputFile(InputFile &&Other) = default; member in class:llvm::pdb::InputFile
134 SymbolGroupIterator(const SymbolGroupIterator &Other) = default; member in class:llvm::pdb::SymbolGroupIterator
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp85 MVT LHSVT = LT->getNumTypes() != 0 ? LT->getSimpleType(0) : MVT::Other;
86 MVT RHSVT = RT->getNumTypes() != 0 ? RT->getSimpleType(0) : MVT::Other;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DStackMapParser.h38 bool operator==(const AccessorIterator &Other) { argument
39 return A.P == Other.A.P;
42 bool operator!=(const AccessorIterator &Other) { return !(*this == Other); } argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h75 SyntaxTree(SyntaxTree &&Other) = default; member in class:clang::diff::SyntaxTree
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp54 PDBSymbol::PDBSymbol(PDBSymbol &&Other) argument
55 : Session(Other.Session), RawSymbol(std::move(Other.RawSymbol)) {}

Completed in 355 milliseconds

1234567891011>>