Searched refs:Other (Results 251 - 275 of 440) sorted by relevance

<<1112131415161718

/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp1132 void ConsumedStateMap::intersect(const ConsumedStateMap &Other) { argument
1135 if (this->From && this->From == Other.From && !Other.Reachable) {
1140 for (const auto &DM : Other.VarMap) {
1191 bool ConsumedStateMap::operator!=(const ConsumedStateMap *Other) const {
1192 for (const auto &DM : Other->VarMap)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2212 PODSmallVector(PODSmallVector&& Other) : PODSmallVector() { argument
2213 if (Other.isInline()) {
2214 std::copy(Other.begin(), Other.end(), First);
2215 Last = First + Other.size();
2216 Other.clear();
2220 First = Other.First;
2221 Last = Other.Last;
2222 Cap = Other.Cap;
2223 Other
2226 operator =(PODSmallVector&& Other) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp48 if (N && Node->getValueType(N - 1) == MVT::Other)
65 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
128 if (VT == MVT::Other || VT == MVT::Glue)
297 assert(Op.getValueType() != MVT::Other &&
441 assert(Op.getValueType() != MVT::Other &&
640 if (NumOps && Node->getOperand(NumOps-1).getValueType() == MVT::Other)
H A DSelectionDAGPrinter.cpp101 else if (VT == MVT::Other)
H A DStatepointLowering.cpp717 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
779 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
807 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1067 DAG.getNode(ISD::TRAP, getCurSDLoc(), MVT::Other, DAG.getRoot()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DPeepholeOptimizer.cpp333 bool operator==(const ValueTrackerResult &Other) {
334 if (Other.getInst() != getInst())
337 if (Other.getNumSources() != getNumSources())
340 for (int i = 0, e = Other.getNumSources(); i != e; ++i)
341 if (Other.getSrcReg(i) != getSrcReg(i) ||
342 Other.getSrcSubReg(i) != getSrcSubReg(i))
H A DMachineOutliner.cpp585 bool operator==(const RepeatedSubstringIterator &Other) { argument
586 return N == Other.N;
588 bool operator!=(const RepeatedSubstringIterator &Other) { argument
589 return !(*this == Other);
/freebsd-11-stable/stand/lua/
H A Dhook.lua38 -- initial load. Other modules may then, at any time, register a hook for these
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DValueMap.h391 ValueMapConstIterator(ValueMapIterator<DenseMapT, KeyT> Other) argument
392 : I(Other.base()) {}
H A DInstrTypes.h1925 /// Return true if \p Other has the same sequence of operand bundle
1928 bool hasIdenticalOperandBundleSchema(const CallBase &Other) const {
1929 if (getNumOperandBundles() != Other.getNumOperandBundles())
1933 Other.bundle_op_info_begin());
1996 bool operator==(const BundleOpInfo &Other) const {
1997 return Tag == Other.Tag && Begin == Other.Begin && End == Other.End;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp345 CurDAG->getMachineNode(Opcode, SDLoc(N), VT, MVT::i16, MVT::Other,
364 CurDAG->SelectNodeTo(Op, Opc, VT, MVT::i16, MVT::Other, Ops0);
407 // Other cases are autogenerated.
417 // Other cases are autogenerated.
424 // Other cases are autogenerated.
434 // Other cases are autogenerated.
444 // Other cases are autogenerated.
454 // Other cases are autogenerated.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp333 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred); local
336 if (this == Other) max_idx = 3;
H A DType.cpp95 return false; // Other types have no identity values
519 bool StructType::isLayoutIdentical(StructType *Other) const {
520 if (this == Other) return true;
522 if (isPacked() != Other->isPacked())
525 return elements() == Other->elements();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2800 bool ExportEntry::operator==(const ExportEntry &Other) const {
2802 if (Done || Other.Done)
2803 return (Done == Other.Done);
2805 if (Stack.size() != Other.Stack.size())
2808 if (!CumulativeString.equals(Other.CumulativeString))
2812 if (Stack[i].Start != Other.Stack[i].Start)
2840 return Stack.back().Other;
2904 State.Other = readULEB128(State.Current, &error); // dylib ordinal
2913 if (State.Other > O->getLibraryCount()) {
2915 "bad library ordinal: " + Twine((int)State.Other)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp387 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
389 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
437 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
453 setOperationAction(ISD::TRAP, MVT::Other, Legal);
456 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
457 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
460 setOperationAction(ISD::VASTART , MVT::Other, Custom);
472 setOperationAction(ISD::VAARG, MVT::Other, Expand);
475 setOperationAction(ISD::VAARG, MVT::Other, Custom);
478 setOperationAction(ISD::VAARG, MVT::Other, Expan
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp53 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
54 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
100 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
125 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
127 setOperationAction(ISD::VASTART, MVT::Other, Custom);
128 setOperationAction(ISD::VAEND, MVT::Other, Expand);
129 setOperationAction(ISD::VAARG, MVT::Other, Expand);
130 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
630 return DAG.getNode(AVRISD::BRCOND, dl, MVT::Other, Chain, Dest, TargetCC,
1269 SDVTList NodeTys = DAG.getVTList(MVT::Other, MV
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp154 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
157 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
256 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
259 setOperationAction(ISD::TRAP, MVT::Other, Legal);
311 setOperationAction(ISD::STACKSAVE, MVT::Other, Custom);
312 setOperationAction(ISD::STACKRESTORE, MVT::Other, Custom);
315 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
627 setOperationAction(ISD::VASTART, MVT::Other, Custom);
628 setOperationAction(ISD::VACOPY, MVT::Other, Custom);
629 setOperationAction(ISD::VAEND, MVT::Other, Expan
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h117 const RangeSet &Other) const;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMutate.cpp78 const Unit &Other = *CrossOverWith; local
79 if (Other.empty())
84 Data, Size, Other.data(), Other.size(), U.data(), U.size(), Rand.Rand());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMinidump.h155 } Other; member in union:llvm::minidump::CPUInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCFLAndersAliasAnalysis.cpp620 propagate(Edge.Other, Src, MatchState::FlowFromReadOnly, ReachSet,
622 propagate(Src, Edge.Other, MatchState::FlowToWriteOnly, ReachSet,
686 propagate(FromNode, AssignEdge.Other, State, ReachSet, WorkList);
690 propagate(FromNode, RevAssignEdge.Other, State, ReachSet, WorkList);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp556 enum { Other, ControlBlock, ASTBlock, DiagnosticOptionsBlock } State = Other; enumerator in enum:__anon732
571 if (State == Other) {
615 State = Other;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp164 MVT::i32, MVT::Other,
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp22 /// have different associated types, return MVT::Other.
26 MVT::SimpleValueType VT = MVT::Other;
898 if (II.HasOneImplicitDefWithKnownVT(CGT) != MVT::Other)
967 if (ResultVTs[i] == MVT::Other || ResultVTs[i] == MVT::Glue) break;
1040 if (II.HasOneImplicitDefWithKnownVT(CGT) != MVT::Other)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp1779 bool operator<(const CIEKey &Other) const {
1782 std::make_tuple(Other.PersonalityName(), Other.PersonalityEncoding,
1783 Other.LsdaEncoding, Other.IsSignalFrame,
1784 Other.IsSimple, Other.RAReg);

Completed in 483 milliseconds

<<1112131415161718