Searched refs:Other (Results 201 - 225 of 440) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.h145 /// unlinkNode - Unlink the specified node from this chain. If Other == this,
146 /// we unlink the next pointer and return it. Otherwise we unlink Other from
148 Matcher *unlinkNode(Matcher *Other);
150 /// canMoveBefore - Return true if this matcher is the same as Other, or if
151 /// we can move this matcher past all of the nodes in-between Other and this
152 /// node. Other must be equal to or before this.
153 bool canMoveBefore(const Matcher *Other) const;
157 bool canMoveBeforeNode(const Matcher *Other) const;
161 bool isContradictory(const Matcher *Other) const {
166 if (getKind() < Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DMetadata.h677 AAMDNodes intersect(const AAMDNodes &Other) { argument
679 Result.TBAA = Other.TBAA == TBAA ? TBAA : nullptr;
680 Result.TBAAStruct = Other.TBAAStruct == TBAAStruct ? TBAAStruct : nullptr;
681 Result.Scope = Other.Scope == Scope ? Scope : nullptr;
682 Result.NoAlias = Other.NoAlias == NoAlias ? NoAlias : nullptr;
1239 const MDTupleTypedArrayWrapper<U> &Other,
1242 : N(Other.get()) {}
1246 const MDTupleTypedArrayWrapper<U> &Other,
1249 : N(Other.get()) {}
1238 MDTupleTypedArrayWrapper( const MDTupleTypedArrayWrapper<U> &Other, typename std::enable_if<std::is_convertible<U *, T *>::value>::type * = nullptr) argument
1245 MDTupleTypedArrayWrapper( const MDTupleTypedArrayWrapper<U> &Other, typename std::enable_if<!std::is_convertible<U *, T *>::value>::type * = nullptr) argument
H A DDataLayout.h223 bool operator==(const DataLayout &Other) const;
224 bool operator!=(const DataLayout &Other) const { return !(*this == Other); }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp206 EVT ValueVTs[] = {VT, MVT::Other};
665 { N->getValueType(0).getScalarType(), MVT::Other },
777 MVT::Other },
1292 EVT LoValueVTs[] = {LoVT, MVT::Other};
1293 EVT HiValueVTs[] = {HiVT, MVT::Other};
1299 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1324 EVT ChainVTs[] = {EltVT, MVT::Other};
1356 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
1523 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1592 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, L
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterPressure.cpp373 auto I = llvm::find_if(RegUnits, [RegUnit](const RegisterMaskPair Other) {
374 return Other.RegUnit == RegUnit;
385 auto I = llvm::find_if(RegUnits, [RegUnit](const RegisterMaskPair Other) {
386 return Other.RegUnit == RegUnit;
397 auto I = llvm::find_if(RegUnits, [RegUnit](const RegisterMaskPair Other) {
398 return Other.RegUnit == RegUnit;
411 auto I = llvm::find_if(RegUnits, [RegUnit](const RegisterMaskPair Other) {
412 return Other.RegUnit == RegUnit;
718 auto I = llvm::find_if(LiveInOrOut, [RegUnit](const RegisterMaskPair &Other) {
719 return Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp86 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
87 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
98 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
99 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
101 setOperationAction(ISD::VASTART, MVT::Other, Custom);
102 setOperationAction(ISD::VAARG, MVT::Other, Expand);
103 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
104 setOperationAction(ISD::VAEND, MVT::Other, Expand);
520 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Copy, Chain);
590 return DAG.getNode(Opc, DL, MVT::Other,
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonStoreWidening.cpp243 InstrGroup Other; local
259 if (instrAliased(Other, getStoreTarget(MI)))
277 Other.push_back(MI);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateBase.h164 /// value as Other but a different type.
165 TemplateArgument(const TemplateArgument &Other, QualType Type) { argument
166 Integer = Other.Integer;
372 bool structurallyEquals(const TemplateArgument &Other) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp162 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
202 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
289 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Results);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp342 void swap(MemberSet &Other) { Members.swap(Other); } argument
373 bool isEquivalentTo(const CongruenceClass *Other) const {
374 if (!Other)
376 if (this == Other)
380 std::tie(Other->StoreCount, Other->RepLeader, Other->RepStoredValue,
381 Other->RepMemoryAccess))
383 if (DefiningExpr != Other
[all...]
/freebsd-11-stable/stand/pc98/btx/lib/
H A Dbtxv86.s44 # Other constants.
/freebsd-11-stable/stand/i386/btx/lib/
H A Dbtxv86.s44 # Other constants.
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DMultilib.h109 bool operator==(const Multilib &Other) const;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObject.h176 FieldChainInfo(const FieldChainInfo &Other) = default; member in class:clang::ento::FieldChainInfo
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDominanceFrontier.h105 bool compare(DominanceFrontierBase &Other) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h159 MVT VT = MVT::Other;
H A DMachineBasicBlock.h704 /// Take an instruction from MBB 'Other' at the position From, and insert it
708 void splice(iterator Where, MachineBasicBlock *Other, iterator From) { argument
711 splice(Where, Other, From, std::next(From));
714 /// Take a block of instructions from MBB 'Other' in the range [From, To),
719 void splice(iterator Where, MachineBasicBlock *Other, argument
721 Insts.splice(Where.getInstrIterator(), Other->Insts,
H A DAccelTable.h118 bool operator<(const AccelTableData &Other) const {
119 return order() < Other.order();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DRemoteObjectLayer.h140 RemoteSymbolMaterializer(RemoteSymbolMaterializer &&Other) argument
141 : C(Other.C), Id(Other.Id) {
142 Other.Id = 0;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbol.h79 PDBSymbol(PDBSymbol &&Other);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h368 Module *Other; member in struct:clang::Module::Conflict
415 bool isSubModuleOf(const Module *Other) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h344 bool operator==(const SymbolRef &Other) const { return SymI == Other.SymI; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp187 Other.push_back(std::move(Data));
193 Other.push_back(std::move(Child));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCELFObjectWriter.cpp439 unsigned Other = cast<MCSymbolELF>(Sym).getOther() << 2; local
440 return (Other & ELF::STO_PPC64_LOCAL_MASK) != 0;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitVector.h60 bool operator==(const const_set_bits_iterator_impl &Other) const {
61 assert(&Parent == &Other.Parent &&
63 return Current == Other.Current;
66 bool operator!=(const const_set_bits_iterator_impl &Other) const {
67 assert(&Parent == &Other.Parent &&
69 return Current != Other.Current;

Completed in 338 milliseconds

1234567891011>>