| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | StreamUtil.cpp | 81 IndexedModuleDescriptor IMD; in discoverStreamPurposes() 82 IMD.Modi = I; in discoverStreamPurposes() local 83 IMD.Descriptor = Modules.getModuleDescriptor(I); in discoverStreamPurposes() 84 uint16_t SN = IMD.Descriptor.getModuleStreamIndex(); in discoverStreamPurposes() 86 ModStreams[SN] = IMD; in discoverStreamPurposes()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 445 ObjCMethodDecl *IMD = in ActOnStartOfObjCMethodDef() local 448 if (IMD) { in ActOnStartOfObjCMethodDef() 452 dyn_cast<ObjCContainerDecl>(IMD->getDeclContext()); in ActOnStartOfObjCMethodDef() 466 DiagnoseObjCImplementedDeprecations(SemaRef, IMD, MDecl->getLocation()); in ActOnStartOfObjCMethodDef() 4687 auto diagClash = [&](const ObjCMethodDecl *IMD) { in checkObjCDirectMethodClashes() argument 4688 if (diagnosed || IMD->isImplicit()) in checkObjCDirectMethodClashes() 4690 if (Method->isDirectMethod() || IMD->isDirectMethod()) { in checkObjCDirectMethodClashes() 4692 << Method->isDirectMethod() << /* method */ 0 << IMD->isDirectMethod() in checkObjCDirectMethodClashes() 4694 S.Diag(IMD->getLocation(), diag::note_previous_declaration); in checkObjCDirectMethodClashes() 4712 if (auto *IMD = IDecl->getMethod(Sel, isInstance)) in checkObjCDirectMethodClashes() local [all …]
|
| H A D | SemaObjCProperty.cpp | 1830 ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(), in IvarBacksCurrentMethodAccessor() local 1832 if (!IMD || !IMD->isPropertyAccessor()) in IvarBacksCurrentMethodAccessor() 1838 if ((Property->getGetterName() == IMD->getSelector() || in IvarBacksCurrentMethodAccessor() 1839 Property->getSetterName() == IMD->getSelector()) && in IvarBacksCurrentMethodAccessor() 1847 if ((Property->getGetterName() == IMD->getSelector() || in IvarBacksCurrentMethodAccessor() 1848 Property->getSetterName() == IMD->getSelector()) && in IvarBacksCurrentMethodAccessor() 2328 if (auto *IMD = IFD->getInstanceMethod(MD->getSelector())) { in DiagnoseMissingDesignatedInitOverrides() local 2329 Ignore = IMD->isUnavailable(); in DiagnoseMissingDesignatedInitOverrides() 2333 if (auto *IMD = Ext->getInstanceMethod(MD->getSelector())) { in DiagnoseMissingDesignatedInitOverrides() local 2334 Ignore = IMD->isUnavailable(); in DiagnoseMissingDesignatedInitOverrides()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | VectorUtils.cpp | 1096 MDNode *IMD = IJ->getMetadata(Kind); in propagateMetadata() local 1100 MD = MMRAMetadata::combine(Inst->getContext(), MD, IMD); in propagateMetadata() 1104 MD = MDNode::getMostGenericTBAA(MD, IMD); in propagateMetadata() 1107 MD = MDNode::getMostGenericAliasScope(MD, IMD); in propagateMetadata() 1110 MD = MDNode::getMostGenericFPMath(MD, IMD); in propagateMetadata() 1115 MD = MDNode::intersect(MD, IMD); in propagateMetadata()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 319 ObjCImplementationDecl *IMD, 917 ObjCImplementationDecl *IMD, in RewritePropertyImplDecl() argument 932 startGetterSetterLoc = IMD ? IMD->getEndLoc() : CID->getEndLoc(); in RewritePropertyImplDecl() 940 assert(IMD && OID && "Synthesized ivars must be attached to @implementation"); in RewritePropertyImplDecl() 943 if (mustSynthesizeSetterGetterMethod(IMD, PD, true /*getter*/)) { in RewritePropertyImplDecl() 1001 !mustSynthesizeSetterGetterMethod(IMD, PD, false /*setter*/)) in RewritePropertyImplDecl() 1333 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID); in RewriteImplementationDecl() local 1335 assert((IMD || CID) && "Unknown implementation type"); in RewriteImplementationDecl() 1337 if (IMD) { in RewriteImplementationDecl() 1338 if (IMD->getIvarRBraceLoc().isValid()) { in RewriteImplementationDecl() [all …]
|
| H A D | RewriteObjC.cpp | 266 ObjCImplementationDecl *IMD, 766 ObjCImplementationDecl *IMD, in RewritePropertyImplDecl() argument 1166 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID); in RewriteImplementationDecl() local 1168 assert((IMD || CID) && "Unknown ImplementationDecl"); in RewriteImplementationDecl() 1170 InsertText(IMD ? IMD->getBeginLoc() : CID->getBeginLoc(), "// "); in RewriteImplementationDecl() 1172 for (auto *OMD : IMD ? IMD->instance_methods() : CID->instance_methods()) { in RewriteImplementationDecl() 1185 for (auto *OMD : IMD ? IMD->class_methods() : CID->class_methods()) { in RewriteImplementationDecl() 1197 for (auto *I : IMD ? IMD->property_impls() : CID->property_impls()) in RewriteImplementationDecl() 1198 RewritePropertyImplDecl(I, IMD, CID); in RewriteImplementationDecl() 1200 InsertText(IMD ? IMD->getEndLoc() : CID->getEndLoc(), "// "); in RewriteImplementationDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 1213 if (auto *IMD = dyn_cast<ObjCImplDecl>(getDeclContext())) in getClassInterface() local 1214 return IMD->getClassInterface(); in getClassInterface() 1223 if (auto *IMD = dyn_cast<ObjCCategoryImplDecl>(getDeclContext())) in getCategory() local 1224 return IMD->getCategoryDecl(); in getCategory() 1324 } else if (const auto *IMD = in collectOverriddenMethodsSlow() local 1326 const ObjCInterfaceDecl *ID = IMD->getClassInterface(); in collectOverriddenMethodsSlow()
|
| H A D | ASTContext.cpp | 517 if (const auto *IMD = dyn_cast<ObjCImplDecl>(DC)) { in addRedeclaredMethods() local 518 const ObjCInterfaceDecl *ID = IMD->getClassInterface(); in addRedeclaredMethods() 3158 if (const auto *IMD = dyn_cast<ObjCImplDecl>(ND->getDeclContext())) in getObjContainingInterface() local 3159 return IMD->getClassInterface(); in getObjContainingInterface()
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | xenix | 60 # - static executables for Xenix V2.x from Motorola 6800 files in IMD tar archive: 61 # https://github.com/pski/model2archive/blob/master/Software/Xenix/Xenix_Games/GAMES1.IMD
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LICM.cpp | 2301 auto *IMD = MSSA->getMemoryAccess(I); in noConflictingReadWrites() local 2303 auto *Source = getClobberingMemoryAccess(*MSSA, BAA, Flags, IMD); in noConflictingReadWrites() 2327 if (!Flags.getIsSink() && !MSSA->dominates(IMD, MU)) in noConflictingReadWrites()
|