Searched refs:Other (Results 301 - 325 of 440) sorted by relevance

<<1112131415161718

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp124 void CXXScopeSpec::Adopt(NestedNameSpecifierLoc Other) { argument
125 if (!Other) {
131 Range = Other.getSourceRange();
132 Builder.Adopt(Other);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp34 Mapping(Mapping &&Other) = default; member in class:clang::diff::__anon912::Mapping
35 Mapping &operator=(Mapping &&Other) = default; member in class:clang::diff::__anon912::Mapping
482 SNodeId operator+(int Other) const { return SNodeId(Id + Other); }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp381 auto GetClosestDependency = [this](Instruction *Best, Instruction *Other) {
382 assert(Other && "Must call it with not null instruction");
383 if (Best == nullptr || DT.dominates(Best, Other))
384 return Other;
H A DMemorySSA.cpp163 bool operator==(const MemoryLocOrCall &Other) const {
164 if (IsCall != Other.IsCall)
168 return Loc == Other.Loc;
170 if (Call->getCalledValue() != Other.Call->getCalledValue())
173 return Call->arg_size() == Other.Call->arg_size() &&
175 Other.Call->arg_begin());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h96 llvm::yaml::Hex64 Other = 0; member in struct:llvm::MachOYAML::ExportEntry
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp82 COFFSymbol *Other = nullptr; member in class:__anon1941::COFFSymbol
382 Sym->Other = WeakDefault;
994 if (Symbol->Other) {
999 Symbol->Aux[0].Aux.WeakExternal.TagIndex = Symbol->Other->getIndex();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h416 /// impossible to compile. Other errors should have been handled much
998 /// Return true if this instruction is identical to \p Other.
1003 bool isIdenticalTo(const MachineInstr &Other,
1443 /// access of Other.
1450 /// @param Other MachineInstr to check aliasing against.
1452 bool mayAlias(AAResults *AA, const MachineInstr &Other, bool UseTBAA) const;
1635 uint16_t mergeFlagsWith(const MachineInstr& Other) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp104 unsigned Other = (Parent == Group1) ? Group2 : Group1; local
105 GroupNodes.at(Other) = Parent;
630 TRI->getMinimalPhysRegClass(SuperReg, MVT::Other);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp180 const RangeSet &Other) const {
183 for (iterator i = Other.begin(), e = Other.end(); i != e; ++i) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h751 ApplyDebugLocation(ApplyDebugLocation &&Other) : CGF(Other.CGF) { argument
752 Other.CGF = nullptr;
H A DCGOpenMPRuntimeNVPTX.cpp3190 C.VoidPtrTy, ImplicitParamDecl::Other);
3195 ImplicitParamDecl::Other);
3478 C.VoidPtrTy, ImplicitParamDecl::Other);
3481 ImplicitParamDecl::Other);
3484 C.ShortTy, ImplicitParamDecl::Other);
3487 C.ShortTy, ImplicitParamDecl::Other);
3562 // evaluated during runtime. Other conjunctions evaluates to false
3565 // evaluated during runtime. Other conjunctions evaluates to false
3643 C.VoidPtrTy, ImplicitParamDecl::Other);
3646 ImplicitParamDecl::Other);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp291 void BoundNodesTreeBuilder::addMatch(const BoundNodesTreeBuilder &Other) { argument
292 Bindings.append(Other.Bindings.begin(), Other.Bindings.end());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp203 if (Node->getOperand(NumOps-1).getValueType() == MVT::Other)
481 bool isChain = OpVT == MVT::Other;
560 Node->getValueType(0) == MVT::Other) {
H A DSelectionDAG.cpp1014 EntryNode(ISD::EntryToken, 0, DebugLoc(), getVTList(MVT::Other)),
1135 ? getNode(ISD::STRICT_FP_EXTEND, DL, {VT, MVT::Other}, {Chain, Op})
1136 : getNode(ISD::STRICT_FP_ROUND, DL, {VT, MVT::Other},
1534 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), None);
1828 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), Ops);
1868 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), None);
1883 AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), None);
5146 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
5147 N2.getValueType() == MVT::Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h87 bool equivalent(const Status &Other) const;
226 bool operator==(const recursive_directory_iterator &Other) const {
227 return State == Other.State; // identity
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp150 /// Moves this partition into \p Other. This partition becomes empty
152 void moveTo(InstPartition &Other) { argument
153 Other.Set.insert(Set.begin(), Set.end());
155 Other.DepCycle |= DepCycle;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp911 Other = std::move(Ret);
926 YamlIO.setError("an unknown value is used for symbol's 'Other' field: " +
932 if (!Other)
935 for (StOtherPiece &Val : *Other)
974 Optional<std::vector<StOtherPiece>> Other; member in struct:llvm::yaml::__anon1954::NormalizedOther
990 // Symbol's Other field is a bit special. It is usually a field that
996 Symbol.Other);
997 IO.mapOptional("Other", Keys->Other);
1548 IO.mapRequired("Other",
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp1132 // between all of the module CompilerInstances. Other than that, we don't
2060 auto PreBuildStep = [&](CompilerInstance &Other) {
2063 const FileEntry *ModuleMapFile = Other.getFileManager().getVirtualFile(
2065 Other.getSourceManager().overrideFileContents(
2069 Other.BuiltModules = std::move(BuiltModules);
2070 Other.DeleteBuiltModules = false;
2073 auto PostBuildStep = [this](CompilerInstance &Other) {
2074 BuiltModules = std::move(Other.BuiltModules);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp310 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
311 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
422 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
426 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
427 setOperationAction(ISD::EH_SJLJ_SETUP_DISPATCH, MVT::Other, Custom);
453 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
455 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
479 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
485 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
486 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custo
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp1185 bool operator < (const ValueRotInfo &Other) const {
1189 if (Repl32 < Other.Repl32)
1191 else if (Repl32 > Other.Repl32)
1193 else if (NumGroups > Other.NumGroups)
1195 else if (NumGroups < Other.NumGroups)
1197 else if (RLAmt == 0 && Other.RLAmt != 0)
1199 else if (RLAmt != 0 && Other.RLAmt == 0)
1201 else if (FirstGroupStartIdx < Other.FirstGroupStartIdx)
4597 MVT::Other, N->getOperand(0)));
4684 PPCLowering->getPointerTy(CurDAG->getDataLayout()), MVT::Other, Op
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1075 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1208 setOperationAction(ISD::TRAP, MVT::Other, Legal);
1209 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
1212 setOperationAction(ISD::VASTART, MVT::Other, Custom);
1213 setOperationAction(ISD::VAARG, MVT::Other, Expand);
1214 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
1215 setOperationAction(ISD::VAEND, MVT::Other, Expand);
1216 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
1217 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
1231 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custo
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6304 AST_MATCHER_P_OVERLOAD(Decl, equalsNode, const Decl*, Other, 0) {
6305 return &Node == Other;
6310 AST_MATCHER_P_OVERLOAD(Stmt, equalsNode, const Stmt*, Other, 1) {
6311 return &Node == Other;
6316 AST_MATCHER_P_OVERLOAD(Type, equalsNode, const Type*, Other, 2) {
6317 return &Node == Other;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h145 bool isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h256 Other = 0x03 member in class:llvm::codeview::CallingConvention::ClassOptions::FrameProcedureOptions::FunctionOptions::HfaKind
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DType.cpp57 bool Qualifiers::isStrictSupersetOf(Qualifiers Other) const {
58 return (*this != Other) &&
60 (((Mask & CVRMask) | (Other.Mask & CVRMask)) == (Mask & CVRMask)) &&
62 ((getObjCGCAttr() == Other.getObjCGCAttr()) ||
63 (hasObjCGCAttr() && !Other.hasObjCGCAttr())) &&
65 ((getAddressSpace() == Other.getAddressSpace()) ||
66 (hasAddressSpace()&& !Other.hasAddressSpace())) &&
68 ((getObjCLifetime() == Other.getObjCLifetime()) ||
69 (hasObjCLifetime() && !Other.hasObjCLifetime()));

Completed in 419 milliseconds

<<1112131415161718