Searched refs:MD (Results 176 - 200 of 410) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSVals.cpp72 if (const auto *MD = dyn_cast_or_null<CXXMethodDecl>(X->getDecl()))
73 return MD;
H A DSValBuilder.cpp242 if (const auto *MD = dyn_cast_or_null<CXXMethodDecl>(DD)) {
248 if (MD->isStatic())
249 return getFunctionPointer(MD);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600OpenCLImageTypeLoweringPass.cpp146 PushArgMD(KernelArgMD &MD, const MDVector &V) { argument
149 MD.ArgVector[i].push_back(V[i]);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp199 if (const MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i))) {
200 if (!MD || MD->getNumOperands() == 0)
202 S = dyn_cast<MDString>(MD->getOperand(0));
203 for (unsigned i = 1, ie = MD->getNumOperands(); i < ie; ++i)
204 Args.push_back(MD->getOperand(i));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp376 if (auto *MD = I.getMetadata(LLVMContext::MD_callees)) {
377 for (auto &Op : MD->operands()) {
654 if (auto *MD = mdconst::extract_or_null<ConstantInt>(
656 EnableSplitLTOUnit = MD->getZExtValue();
741 if (auto *MD =
743 IsThinLTO = MD->getZExtValue();
H A DTypeBasedAliasAnalysis.cpp364 static bool isStructPathTBAA(const MDNode *MD) { argument
367 return isa<MDNode>(MD->getOperand(0)) && MD->getNumOperands() >= 3;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp242 for (auto MD : MDs)
243 NF->addMetadata(MD.first, *MD.second);
1075 for (auto MD : MDs)
1076 NF->addMetadata(MD.first, *MD.second);
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp177 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
178 return canModify(cast<Decl>(MD->getDeclContext()));
642 for (const auto *MD : PDecl->methods()) {
643 if (MD->isImplicit())
645 if (MD->getImplementationControl() == ObjCMethodDecl::Optional)
647 DeclContext::lookup_result R = ImpDecl->lookup(MD->getDeclName());
654 if (Ctx.ObjCMethodsAreEqual(MD, ImpMD)) {
1697 static bool hasSuperInitCall(const ObjCMethodDecl *MD) { argument
1698 return !SuperInitChecker().TraverseStmt(MD->getBody());
1711 for (const auto *MD
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp960 llvm::Function *GetMethodDefinition(const ObjCMethodDecl *MD);
1178 for (auto MD : PD->methods()) {
1179 size_t index = (2 * size_t(MD->isOptional()))
1180 + (size_t(MD->isClassMethod()));
1181 result.Methods[index].push_back(MD);
1199 for (auto MD : list) {
1200 result.push_back(self->GetMethodVarType(MD, true));
1276 const ObjCMethodDecl *MD);
1279 const ObjCMethodDecl *MD);
1450 const ObjCMethodDecl *MD,
3872 emitMethodDescriptionConstant(ConstantArrayBuilder &builder, const ObjCMethodDecl *MD) argument
3888 emitMethodConstant(ConstantArrayBuilder &builder, const ObjCMethodDecl *MD) argument
5322 GetMethodDefinition(const ObjCMethodDecl *MD) argument
6793 emitMethodConstant(ConstantArrayBuilder &builder, const ObjCMethodDecl *MD, bool forProtocol) argument
[all...]
H A DCGClass.cpp1185 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl()); local
1186 if (!(MD && isMemcpyEquivalentSpecialMember(MD)))
2645 for (const CXXMethodDecl *MD : RD->methods()) {
2646 if (MD->isVirtual()) {
2650 if (isa<CXXDestructorDecl>(MD) && MD->isImplicit())
2669 llvm::Metadata *MD = local
2672 llvm::MetadataAsValue::get(CGM.getLLVMContext(), MD);
2778 llvm::Metadata *MD local
2835 llvm::Metadata *MD = local
2929 EmitLambdaDelegatingInvokeBody(const CXXMethodDecl *MD) argument
2959 EmitLambdaStaticInvokeBody(const CXXMethodDecl *MD) argument
[all...]
H A DCGCXXABI.h192 virtual llvm::Constant *EmitMemberFunctionPointer(const CXXMethodDecl *MD);
356 getThisArgumentTypeForMethod(const CXXMethodDecl *MD) { argument
357 return MD->getParent();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprMember.cpp163 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC))
164 contextClass = MD->getParent()->getCanonicalDecl();
1419 if (ObjCMethodDecl *MD = S.getCurMethodDecl())
1420 ClassOfMethodDecl = MD->getClassInterface();
1461 if (ObjCMethodDecl *MD = S.getCurMethodDecl()) {
1462 ObjCMethodFamily MF = MD->getMethodFamily();
1465 !S.IvarBacksCurrentMethodAccessor(IDecl, MD, IV));
1550 ObjCMethodDecl *MD = S.getCurMethodDecl(); local
1551 if (!MD) {
1561 ObjCInterfaceDecl *IFace = MD
[all...]
H A DSemaExprObjC.cpp1281 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/true))
1282 return MD;
1283 if (ObjCMethodDecl *MD = IFace->lookupPrivateMethod(Sel, /*isInstance=*/true))
1284 return MD;
1285 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/false))
1286 return MD;
1287 if (ObjCMethodDecl *MD = IFace->lookupPrivateMethod(Sel, /*isInstance=*/false))
1288 return MD;
1539 const ObjCMethodDecl *MD = cast<ObjCMethodDecl>( local
1543 assert(MD
1613 findExplicitInstancetypeDeclarer(const ObjCMethodDecl *MD, QualType instancetype) argument
1649 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurContext); local
1952 ObjCMethodDecl *MD = nullptr; local
[all...]
H A DSemaDecl.cpp551 if (const auto *MD = dyn_cast<CXXMethodDecl>(DC))
552 if (MD->getParent()->hasAnyDependentBases())
553 return MD->getParent();
1679 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
1680 if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD))
6388 if (auto *MD = dyn_cast<CXXMethodDecl>(&ND))
6389 if (MD->isVirtual()) {
6409 const auto *MD = dyn_cast<CXXMethodDecl>(FD); local
6410 if (!MD || M
8097 AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) argument
8218 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); local
8313 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); local
[all...]
/freebsd-13-stable/contrib/file/tests/
H A DMakefile.in431 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
439 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
447 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
454 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF $(DEPDIR)/test-test.Tpo -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
461 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF $(DEPDIR)/test-test.Tpo -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp1088 if (const ObjCMethodDecl *MD = OBE->getBoxingMethod()) {
1092 MD->getSelector().print(OS);
1112 if (const ObjCMethodDecl *MD = OPRE->getImplicitPropertyGetter())
1113 JOS.attribute("getter", createBareDeclRef(MD));
1114 if (const ObjCMethodDecl *MD = OPRE->getImplicitPropertySetter())
1115 JOS.attribute("setter", createBareDeclRef(MD));
1131 if (const ObjCMethodDecl *MD = OSRE->getAtIndexMethodDecl())
1132 JOS.attribute("getter", createBareDeclRef(MD));
1133 if (const ObjCMethodDecl *MD = OSRE->setAtIndexMethodDecl())
1134 JOS.attribute("setter", createBareDeclRef(MD));
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp1089 for (auto &MD : MDs)
1090 CreateMetadataSlot(MD.second);
1114 for (auto &MD : MDs)
1115 CreateMetadataSlot(MD.second);
1280 static void WriteAsOperandInternal(raw_ostream &Out, const Metadata *MD,
1600 const Metadata *MD = Node->getOperand(mi); local
1601 if (!MD)
1603 else if (auto *MDV = dyn_cast<ValueAsMetadata>(MD)) {
1609 WriteAsOperandInternal(Out, MD, TypePrinter, Machine, Context);
1653 void printMetadata(StringRef Name, const Metadata *MD,
1706 writeMetadataAsOperand(raw_ostream &Out, const Metadata *MD, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1717 printMetadata(StringRef Name, const Metadata *MD, bool ShouldSkipNull) argument
2386 WriteAsOperandInternal(raw_ostream &Out, const Metadata *MD, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context, bool FromValue) argument
4561 printMetadataImpl(raw_ostream &ROS, const Metadata &MD, ModuleSlotTracker &MST, const Module *M, bool OnlyAsOperand) argument
[all...]
/freebsd-13-stable/contrib/ntp/ntpd/
H A DMakefile.in1142 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1149 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1156 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1163 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ntpdsim_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ntpdsim-ntp_config.o -MD -MP -MF $(DEPDIR)/ntpdsim-ntp_config.Tpo -c -o ntpdsim-ntp_config.o `test -f 'ntp_config.c' || echo '$(srcdir)/'`ntp_config.c
1170 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ntpdsim_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ntpdsim-ntp_config.obj -MD -MP -MF $(DEPDIR)/ntpdsim-ntp_config.Tpo -c -o ntpdsim-ntp_config.obj `if test -f 'ntp_config.c'; then $(CYGPATH_W) 'ntp_config.c'; else $(CYGPATH_W) '$(srcdir)/ntp_config.c'; fi`
1177 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ntpdsim_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ntpdsim-ntp_io.o -MD -MP -MF $(DEPDIR)/ntpdsim-ntp_io.Tpo -c -o ntpdsim-ntp_io.o `test -f 'ntp_io.c' || echo '$(srcdir)/'`ntp_io.c
1184 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ntpdsim_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ntpdsim-ntp_io.obj -MD -MP -MF $(DEPDIR)/ntpdsim-ntp_io.Tpo -c -o ntpdsim-ntp_io.obj `if test -f 'ntp_io.c'; then $(CYGPATH_W) 'ntp_io.c'; else $(CYGPATH_W) '$(srcdir)/ntp_io.c'; fi`
1191 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ntpdsim_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ntpdsim-ntp_parser.o -MD -MP -MF $(DEPDIR)/ntpdsim-ntp_parser.Tpo -c -o ntpdsim-ntp_parser.o `test -f 'ntp_parser.c' || echo '$(srcdir)/'`ntp_parser.c
1198 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ntpdsim_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ntpdsim-ntp_parser.obj -MD -MP -MF $(DEPDIR)/ntpdsim-ntp_parser.Tpo -c -o ntpdsim-ntp_parser.obj `if test -f 'ntp_parser.c'; then $(CYGPATH_W) 'ntp_parser.c'; else $(CYGPATH_W) '$(srcdir)/ntp_parser.c'; fi`
1205 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ntpdsim_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ntpdsim-ntp_scanner.o -MD
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp1448 MacroDirective *MD = getLocalMacroDirective(II); local
1451 if (!MD) {
1475 MacroDirective *MD = getLocalMacroDirective(II); local
1478 if (!MD) {
2851 DefMacroDirective *MD = local
2868 Callbacks->MacroDefined(MacroNameTok, MD);
2888 auto MD = getMacroDefinition(II); local
2892 if (const MacroInfo *MI = MD.getMacroInfo()) {
2905 Callbacks->MacroUndefined(MacroNameTok, MD, Undef);
2944 auto MD local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp205 if (const ObjCMethodDecl *MD =
208 MD->getClassInterface()->getTypeForDecl()))
249 static void recordFixedType(const MemRegion *Region, const CXXMethodDecl *MD, argument
252 assert(MD);
255 QualType Ty = Ctx.getPointerType(Ctx.getRecordType(MD->getParent()));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DMultiplexConsumer.cpp65 serialization::PreprocessedEntityID ID, MacroDefinitionRecord *MD) {
67 Listeners[i]->MacroDefinitionRead(ID, MD);
64 MacroDefinitionRead( serialization::PreprocessedEntityID ID, MacroDefinitionRecord *MD) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexingContext.cpp259 if (auto MD = dyn_cast<ObjCMethodDecl>(D))
260 return MD->isThisDeclarationADefinition() || isa<ObjCImplDecl>(ContainerDC);
/freebsd-13-stable/contrib/libxo/tests/core/
H A DMakefile.am142 $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -o $@ $<
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp265 if (const auto *MD = llvm::dyn_cast<CXXMethodDecl>(Decl)) {
266 if (isInUSRSet(MD)) {
/freebsd-13-stable/contrib/apr-util/test/
H A DMakefile.win108 DEBUG_CFLAGS = /MD

Completed in 522 milliseconds

1234567891011>>