Home
last modified time | relevance | path

Searched refs:PD (Results 1 – 25 of 159) sorted by relevance

1234567

/llvm-project-15.0.7/lld/test/ELF/
H A Dppc32-long-thunk.s25 # PD-NEXT: bl 0x2028
29 # PD: <__LongThunk_high>:
32 # PD-NEXT: mtctr 12
33 # PD-NEXT: bctr
36 # PD: <__LongThunk_>:
39 # PD-NEXT: mtctr 12
40 # PD-NEXT: bctr
74 # PD: 02002008 <high>:
77 # PD: <__LongThunk_>:
80 # PD-NEXT: mtctr 12
[all …]
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp94 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD, in findPropertyBackingIvar() argument
98 ObjCIvarDecl *ID = PD->getPropertyIvarDecl(); in findPropertyBackingIvar()
105 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx)); in findPropertyBackingIvar()
110 IdentifierInfo *PropIdent = PD->getIdentifier(); in findPropertyBackingIvar()
125 for (const auto *PD : InterD->instance_properties()) { in checkASTDecl() local
127 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD, in checkASTDecl()
134 IvarToPropMap[ID] = PD; in checkASTDecl()
180 const ObjCPropertyDecl *PD = I->second; in VisitBinaryOperator() local
185 if (isAnnotatedToAllowDirectAssignment(PD) || in VisitBinaryOperator()
190 InterfD->getInstanceMethod(PD->getGetterName()); in VisitBinaryOperator()
[all …]
H A DIvarInvalidationChecker.cpp350 os << "Property "<< PD->getName() << " "; in printIvar()
387 const ObjCPropertyDecl *PD = I->second; in visit() local
388 if (PD->isClassProperty()) in visit()
397 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl()); in visit()
398 PropertyToIvarMap[PD] = ID; in visit()
399 IvarToPopertyMap[ID] = PD; in visit()
402 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl(); in visit()
408 const ObjCMethodDecl *GetterD = PD->getGetterMethodDecl(); in visit()
619 const ObjCPropertyDecl *PD = PA->getExplicitProperty(); in checkObjCPropertyRefExpr() local
620 if (PD) { in checkObjCPropertyRefExpr()
[all …]
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DTextDiagnostics.cpp92 const PathDiagnostic *PD = *I; in FlushDiagnosticsImpl() local
94 ? " [" + PD->getCheckerName() + "]" in FlushDiagnosticsImpl()
98 reportPiece(WarnID, PD->getLocation().asLocation(), in FlushDiagnosticsImpl()
99 (PD->getShortDescription() + WarningMsg).str(), in FlushDiagnosticsImpl()
100 PD->path.back()->getRanges(), PD->path.back()->getFixits()); in FlushDiagnosticsImpl()
103 for (const auto &Piece : PD->path) { in FlushDiagnosticsImpl()
116 PathPieces FlatPath = PD->path.flatten(/*ShouldFlattenMacros=*/true); in FlushDiagnosticsImpl()
/llvm-project-15.0.7/clang/unittests/StaticAnalyzer/
H A DCheckerRegistration.h30 for (const auto *PD : Diags) { in FlushDiagnosticsImpl() local
31 Output << PD->getCheckerName() << ": "; in FlushDiagnosticsImpl()
32 Output << PD->getShortDescription() << '\n'; in FlushDiagnosticsImpl()
46 for (const auto *PD : Diags) { in FlushDiagnosticsImpl() local
47 Output << PD->getCheckerName() << ": "; in FlushDiagnosticsImpl()
50 PD->path.flatten(/*ShouldFlattenMacros*/ true)) { in FlushDiagnosticsImpl()
56 if (Piece->getString() == PD->getShortDescription()) in FlushDiagnosticsImpl()
61 Output << PD->getShortDescription() << '\n'; in FlushDiagnosticsImpl()
/llvm-project-15.0.7/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp5-cxx0x.cpp22 class PD { class
24 ~PD(); // expected-note 5{{here}}
33 PD pd();
113 DD operator+(PD &a, PD &b);
118 DD operator,(int a, PD b);
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DTemplateDeduction.h102 void takeSFINAEDiagnostic(PartialDiagnosticAt &PD) { in takeSFINAEDiagnostic() argument
104 PD.first = SuppressedDiagnostics.front().first; in takeSFINAEDiagnostic()
105 PD.second.swap(SuppressedDiagnostics.front().second); in takeSFINAEDiagnostic()
140 void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD) { in addSFINAEDiagnostic() argument
145 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSFINAEDiagnostic()
151 PartialDiagnostic PD) { in addSuppressedDiagnostic() argument
154 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSuppressedDiagnostic()
/llvm-project-15.0.7/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h110 bool operator!=(const PrototypeDescriptor &PD) const {
111 return !(*this == PD);
113 bool operator==(const PrototypeDescriptor &PD) const {
114 return PD.PT == PT && PD.VTM == VTM && PD.TM == TM;
116 bool operator<(const PrototypeDescriptor &PD) const {
117 return std::tie(PT, VTM, TM) < std::tie(PD.PT, PD.VTM, PD.TM);
/llvm-project-15.0.7/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp136 for (const PrettyDiag &PD : Active) { in run() local
138 Out << getCharForLevel(PD.Level) << " "; in run()
139 Out << PD.Name; in run()
140 if (!PD.Flag.empty()) in run()
141 Out << " [-W" << PD.Flag << "]"; in run()
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/
H A DObjCMemberwiseInitializer.cpp85 MethodParameter(const ObjCPropertyDecl &PD) { in MethodParameter()
86 Name = PD.getName(); in MethodParameter()
87 Type = getTypeStr(PD.getType(), PD, PD.getPropertyAttributes()); in MethodParameter()
88 if (const auto *ID = PD.getPropertyIvarDecl()) in MethodParameter()
96 if (const auto *PD = dyn_cast<ObjCPropertyDecl>(&D)) in parameterFor() local
97 if (PD->isInstanceProperty()) in parameterFor()
98 return MethodParameter(*PD); in parameterFor()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86InstrTDX.td21 "seamcall", []>, PD;
25 "seamret", []>, PD;
29 "seamops", []>, PD;
37 "tdcall", []>, PD;
H A DX86InstrFormats.td141 def PD : Prefix<1>;
216 class T_MAP6PD : T_MAP6 { Prefix OpPrefix = PD; }
221 class PD : TB { Prefix OpPrefix = PD; }
225 class T8PD : T8 { Prefix OpPrefix = PD; }
229 class TAPD : TA { Prefix OpPrefix = PD; }
670 PD, Requires<[HasAVX]>;
687 // S3I - SSE3 instructions with PD prefixes.
832 class AVX512BIBase : PD {
839 class AVX512BIi8Base : PD {
855 class AVX512PDIi8Base : PD {
[all …]
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DPartialDiagnostic.h135 void swap(PartialDiagnostic &PD) { in swap() argument
136 std::swap(DiagID, PD.DiagID); in swap()
137 std::swap(DiagStorage, PD.DiagStorage); in swap()
138 std::swap(Allocator, PD.Allocator); in swap()
198 const PartialDiagnostic &PD) {
199 PD.Emit(DB);
/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp237 ObjCPropertyDecl *PD = *PI; in checkAllAtProps() local
238 Attrs = PD->getPropertyAttributesAsWritten(); in checkAllAtProps()
239 TypeSourceInfo *TInfo = PD->getTypeSourceInfo(); in checkAllAtProps()
245 ATLs.push_back(std::make_pair(ATL, PD)); in checkAllAtProps()
302 ObjCPropertyDecl *PD = AllProps[i]; in checkAllProps() local
303 if (PD->getPropertyAttributesAsWritten() & in checkAllProps()
306 SourceLocation AtLoc = PD->getAtLoc(); in checkAllProps()
309 AtProps[AtLoc].push_back(PD); in checkAllProps()
H A DTransZeroOutPropsInDealloc.cpp118 ObjCPropertyDecl *PD = PID->getPropertyDecl(); in TraverseObjCMethodDecl() local
119 ObjCMethodDecl *setterM = PD->getSetterMethodDecl(); in TraverseObjCMethodDecl()
121 ObjCPropertyAttribute::Kind AttrKind = PD->getPropertyAttributes(); in TraverseObjCMethodDecl()
125 SynthesizedProperties[PD] = PID; in TraverseObjCMethodDecl()
/llvm-project-15.0.7/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp369 PrototypeDescriptor PD; in parsePrototypeDescriptor() local
374 return PD; in parsePrototypeDescriptor()
419 PD.PT = static_cast<uint8_t>(PT); in parsePrototypeDescriptor()
549 PD.VTM = static_cast<uint8_t>(VTM); in parsePrototypeDescriptor()
584 PD.TM = static_cast<uint8_t>(TM); in parsePrototypeDescriptor()
586 return PD; in parsePrototypeDescriptor()
905 for (auto PD : PrototypeDescriptors) { in getSuffixStr() local
906 auto T = RVVType::computeType(Type, Log2LMUL, PD); in getSuffixStr()
965 auto PD = PrototypeDescriptor::parsePrototypeDescriptor( in parsePrototypes() local
967 if (!PD) in parsePrototypes()
[all …]
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjCMac.cpp2980 GetOrEmitProtocol(PD); in GenerateProtocol()
3031 PD = Def; in GetOrEmitProtocol()
3045 PD->protocol_begin(), PD->protocol_end())); in GetOrEmitProtocol()
3113 EmitPropertyList("OBJC_$_PROP_PROTO_LIST_" + PD->getName(), nullptr, PD, in EmitProtocolExtension()
3201 Properties.push_back(PD); in PushProtocolProperties()
3255 if (PD->isDirectProperty()) in EmitPropertyList()
3257 Properties.push_back(PD); in EmitPropertyList()
3281 for (auto PD : Properties) { in EmitPropertyList() local
6998 const ObjCProtocolDecl *PD) { in GetOrEmitProtocolRef() argument
7042 const ObjCProtocolDecl *PD) { in GetOrEmitProtocol() argument
[all …]
H A DCGObjCGNU.cpp615 return GenerateProtocolRef(PD); in GetOrEmitProtocol()
1320 auto Name = PD->getNameAsString(); in GenerateProtocolRef()
1372 PD = Def; in GenerateProtocolRef()
1386 GetRuntimeProtocolList(PD->protocol_begin(), PD->protocol_end()); in GenerateProtocolRef()
3142 GenerateProtocol(PD); in GenerateProtocolRef()
3175 if (PD->isNonRuntimeProtocol()) in GenerateProtocol()
3182 PD = Def; in GenerateProtocol()
3334 for (const auto *PD : RuntimeProtos) in GenerateCategoryProtocolList() local
3412 Properties.push_back(PD); in GeneratePropertyList()
3422 Properties.push_back(PD); in GeneratePropertyList()
[all …]
/llvm-project-15.0.7/clang/lib/AST/Interp/
H A DByteCodeEmitter.cpp42 for (const ParmVarDecl *PD : F->parameters()) { in compileFunc() local
44 if (llvm::Optional<PrimType> T = Ctx.classify(PD->getType())) { in compileFunc()
50 Descriptor *Desc = P.createDescriptor(PD, Ty); in compileFunc()
52 Params.insert({PD, ParamOffset}); in compileFunc()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/darwin/
H A DDispatchOnceNonstaticCheck.cpp40 if (const auto *PD = dyn_cast<ParmVarDecl>(VD)) { in check() local
43 diag(PD->getTypeSpecStartLoc(), in check()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp19 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, in TargetSubtargetInfo() argument
23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {} in TargetSubtargetInfo()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp606 auto &PD = ProfileDataMap[Name]; in computeNumValueSiteCounts() local
607 PD.NumValueSites[ValueKind] = in computeNumValueSiteCounts()
859 auto &PD = ProfileDataMap[NamePtr]; in getOrCreateRegionCounters() local
860 if (PD.RegionCounters) in getOrCreateRegionCounters()
861 return PD.RegionCounters; in getOrCreateRegionCounters()
929 PD.RegionCounters = CounterPtr; in getOrCreateRegionCounters()
973 NS += PD.NumValueSites[Kind]; in getOrCreateRegionCounters()
992 return PD.RegionCounters; in getOrCreateRegionCounters()
1050 PD.DataVar = Data; in getOrCreateRegionCounters()
1061 return PD.RegionCounters; in getOrCreateRegionCounters()
[all …]
/llvm-project-15.0.7/clang/lib/Sema/
H A DSema.cpp1565 return Diag(Loc, PD.getDiagID(), DeferHint) << PD; in Diag()
1745 PD.Emit(Builder); in emitDeferredDiags()
1923 PD << D; in checkTypeSupport()
1953 PD << D; in checkTypeSupport()
1955 PD << "expression"; in checkTypeSupport()
1979 PD << D; in checkTypeSupport()
1981 PD << "expression"; in checkTypeSupport()
1983 if (Diag(Loc, PD, FD) in checkTypeSupport()
1998 PD << D; in checkTypeSupport()
2000 PD << "expression"; in checkTypeSupport()
[all …]
/llvm-project-15.0.7/llvm/test/TableGen/
H A DPaste.td10 def Vx#NAME#PD : Instr<1>;
12 def Vy#NAME#PD : Instr<3>;
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp193 if (OpPrefix == X86Local::PD) in insnContext()
207 if (OpPrefix == X86Local::PD) in insnContext()
221 if (OpPrefix == X86Local::PD) in insnContext()
235 if (OpPrefix == X86Local::PD) in insnContext()
250 if (OpPrefix == X86Local::PD) in insnContext()
264 else if (OpPrefix == X86Local::PD) in insnContext()
279 if (OpPrefix == X86Local::PD) in insnContext()
291 } else if (OpPrefix == X86Local::PD && HasVEX_L) in insnContext()
293 else if (OpPrefix == X86Local::PD && HasVEX_W) in insnContext()
295 else if (OpPrefix == X86Local::PD) in insnContext()
[all …]

1234567