| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | PartialDiagnostic.h | 348 return PD; 354 return PD; 361 return PD; 367 PD.AddString(S); 368 return PD; 375 return PD; 389 return PD; 395 return PD; 401 return PD; 407 return PD; [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DirectIvarAssignment.cpp | 95 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD, in findPropertyBackingIvar() argument 99 ObjCIvarDecl *ID = PD->getPropertyIvarDecl(); in findPropertyBackingIvar() 106 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx)); in findPropertyBackingIvar() 111 IdentifierInfo *PropIdent = PD->getIdentifier(); in findPropertyBackingIvar() 126 for (const auto *PD : InterD->instance_properties()) { in checkASTDecl() local 128 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD, in checkASTDecl() 135 IvarToPropMap[ID] = PD; in checkASTDecl() 179 const ObjCPropertyDecl *PD = I->second; in VisitBinaryOperator() local 184 if (isAnnotatedToAllowDirectAssignment(PD) || in VisitBinaryOperator() 189 InterfD->getInstanceMethod(PD->getGetterName()); in VisitBinaryOperator() [all …]
|
| H A D | IvarInvalidationChecker.cpp | 351 os << "Property "<< PD->getName() << " "; in printIvar() 388 const ObjCPropertyDecl *PD = I->second; in visit() local 389 if (PD->isClassProperty()) in visit() 398 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl()); in visit() 399 PropertyToIvarMap[PD] = ID; in visit() 400 IvarToPopertyMap[ID] = PD; in visit() 403 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl(); in visit() 409 const ObjCMethodDecl *GetterD = PD->getGetterMethodDecl(); in visit() 620 const ObjCPropertyDecl *PD = PA->getExplicitProperty(); in checkObjCPropertyRefExpr() local 621 if (PD) { in checkObjCPropertyRefExpr() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | TemplateDeduction.h | 93 void takeSFINAEDiagnostic(PartialDiagnosticAt &PD) { in takeSFINAEDiagnostic() argument 95 PD.first = SuppressedDiagnostics.front().first; in takeSFINAEDiagnostic() 96 PD.second.swap(SuppressedDiagnostics.front().second); in takeSFINAEDiagnostic() 131 void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD) { in addSFINAEDiagnostic() argument 136 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSFINAEDiagnostic() 142 PartialDiagnostic PD) { in addSuppressedDiagnostic() argument 145 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSuppressedDiagnostic()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 699 PD.getActivePath().push_front( in generateMinimalDiagForBlockEdge() 1017 PathDiagnostic &PD, in generatePathDiagnosticsForNode() argument 1050 PD.popActivePath(); in generatePathDiagnosticsForNode() 1101 assert(!LCM[&PD.getActivePath()] || LCM[&PD.getActivePath()] == PDB.LC); in generatePathDiagnosticsForNode() 1131 PD.pushActivePath(&P->path); in generatePathDiagnosticsForNode() 1882 PathDiagnostic &PD) { in updateExecutedLinesWithDiagnosticPieces() argument 1933 PD->setEndOfPath(LastPiece); in generatePathDiagnosticForConsumer() 1978 if (!PD->path.empty()) { in generatePathDiagnosticForConsumer() 2013 return PD; in generatePathDiagnosticForConsumer() 2956 if (PD->path.empty()) { in FlushReport() [all …]
|
| H A D | CheckerHelpers.cpp | 92 } else if (auto PD = dyn_cast_or_null<DeclStmt>(S)) { in parseAssignment() local 94 assert(PD->isSingleDecl() && "We process decls one by one"); in parseAssignment() 95 VD = dyn_cast_or_null<VarDecl>(PD->getSingleDecl()); in parseAssignment()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | X86InstrMPX.td | 50 "bndmov\t{$src, $dst|$dst, $src}", []>, PD, 54 "bndmov\t{$src, $dst|$dst, $src}", []>, PD, 57 "bndmov\t{$src, $dst|$dst, $src}", []>, PD, 62 "bndmov\t{$src, $dst|$dst, $src}", []>, PD, 66 "bndmov\t{$src, $dst|$dst, $src}", []>, PD, 69 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
|
| H A D | X86InstrFormats.td | 130 def PD : Prefix<1>; 198 class PD : TB { Prefix OpPrefix = PD; } 202 class T8PD : T8 { Prefix OpPrefix = PD; } 206 class TAPD : TA { Prefix OpPrefix = PD; } 600 // S2I - SSE2 scalar instructions with PD prefix. 637 PD, Requires<[HasAVX]>; 654 // S3I - SSE3 instructions with PD prefixes. 798 class AVX512BIBase : PD { 805 class AVX512BIi8Base : PD { 821 class AVX512PDIi8Base : PD { [all …]
|
| H A D | X86InstrFMA3Info.cpp | 45 FMA3GROUP_PACKED_WIDTHS(Name, PD, Attrs) \ 81 FMA3GROUP_PACKED_AVX512_WIDTHS(Name, PD, Suf, Attrs) \ 140 (TSFlags & X86II::OpPrefixMask) == X86II::PD && in getFMA3Group()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/ |
| H A D | TransGCAttrs.cpp | 236 ObjCPropertyDecl *PD = *PI; in checkAllAtProps() local 237 Attrs = PD->getPropertyAttributesAsWritten(); in checkAllAtProps() 238 TypeSourceInfo *TInfo = PD->getTypeSourceInfo(); in checkAllAtProps() 244 ATLs.push_back(std::make_pair(ATL, PD)); in checkAllAtProps() 301 ObjCPropertyDecl *PD = AllProps[i]; in checkAllProps() local 302 if (PD->getPropertyAttributesAsWritten() & in checkAllProps() 305 SourceLocation AtLoc = PD->getAtLoc(); in checkAllProps() 309 AtProps[RawAt].push_back(PD); in checkAllProps()
|
| H A D | TransZeroOutPropsInDealloc.cpp | 119 ObjCPropertyDecl *PD = PID->getPropertyDecl(); in TraverseObjCMethodDecl() local 120 ObjCMethodDecl *setterM = PD->getSetterMethodDecl(); in TraverseObjCMethodDecl() 123 PD->getPropertyAttributes(); in TraverseObjCMethodDecl() 128 SynthesizedProperties[PD] = PID; in TraverseObjCMethodDecl()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGObjCMac.cpp | 2943 GetOrEmitProtocol(PD); in GenerateProtocol() 2993 PD = Def; in GetOrEmitProtocol() 3007 PD->protocol_begin(), PD->protocol_end())); in GetOrEmitProtocol() 3075 EmitPropertyList("OBJC_$_PROP_PROTO_LIST_" + PD->getName(), nullptr, PD, in EmitProtocolExtension() 3165 Properties.push_back(PD); in PushProtocolProperties() 3214 Properties.push_back(PD); in EmitPropertyList() 3238 for (auto PD : Properties) { in EmitPropertyList() local 6791 const ObjCProtocolDecl *PD) { in GetOrEmitProtocolRef() argument 6833 const ObjCProtocolDecl *PD) { in GetOrEmitProtocol() argument 6841 assert(PD->hasDefinition() && in GetOrEmitProtocol() [all …]
|
| H A D | CGObjCGNU.cpp | 1263 auto Name = PD->getNameAsString(); in GenerateProtocolRef() 1268 Protocol = GenerateProtocolRef(PD); in GenerateProtocolRef() 1314 PD = Def; in GenerateProtocolRef() 1327 for (const auto *PI : PD->protocols()) in GenerateProtocolRef() 2934 GenerateProtocol(PD); in GenerateProtocolRef() 2972 PD = Def; in GenerateProtocol() 2975 for (const auto *PI : PD->protocols()) in GenerateProtocol() 2987 for (const auto *I : PD->class_methods()) in GenerateProtocol() 3199 Properties.push_back(PD); in GeneratePropertyList() 3209 Properties.push_back(PD); in GeneratePropertyList() [all …]
|
| /freebsd-12.1/usr.bin/m4/ |
| H A D | NOTES | 3 PD m4 is based on the macro tool distributed with the software 8 Since both PD m4 and UN*X m4 are based on SOFTWARE TOOLS macro, 10 the two. The PD m4 was produced without ANY references to m4 34 [1] PD m4 uses a different (and simpler) stack mechanism than the one
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | X86RecognizableInstr.cpp | 169 if (OpPrefix == X86Local::PD) in insnContext() 183 if (OpPrefix == X86Local::PD) in insnContext() 199 if (OpPrefix == X86Local::PD) in insnContext() 213 if (OpPrefix == X86Local::PD) in insnContext() 229 if (OpPrefix == X86Local::PD) in insnContext() 243 else if (OpPrefix == X86Local::PD) in insnContext() 259 if (OpPrefix == X86Local::PD) in insnContext() 271 } else if (OpPrefix == X86Local::PD && HasVEX_LPrefix) in insnContext() 276 else if (OpPrefix == X86Local::PD) in insnContext() 312 else if (AdSize == X86Local::AdSize32 && OpPrefix == X86Local::PD) in insnContext() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrProfiling.cpp | 554 PerFunctionProfileData PD; in computeNumValueSiteCounts() local 555 PD.NumValueSites[ValueKind] = Index + 1; in computeNumValueSiteCounts() 556 ProfileDataMap[Name] = PD; in computeNumValueSiteCounts() 716 PerFunctionProfileData PD; in getOrCreateRegionCounters() local 720 PD = It->second; in getOrCreateRegionCounters() 753 NS += PD.NumValueSites[Kind]; in getOrCreateRegionCounters() 800 PD.RegionCounters = CounterPtr; in getOrCreateRegionCounters() 801 PD.DataVar = Data; in getOrCreateRegionCounters() 802 ProfileDataMap[NamePtr] = PD; in getOrCreateRegionCounters() 827 for (auto &PD : ProfileDataMap) { in emitVNodes() local [all …]
|
| /freebsd-12.1/lib/msun/ld128/ |
| H A D | e_powl.c | 127 static const long double PD[] = variable 428 v = PD[0] + t * (PD[1] + t * (PD[2] + t * (PD[3] + t))); in powl()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaCoroutine.cpp | 545 for (auto *PD : FD->parameters()) { in buildCoroutinePromise() local 546 if (PD->getType()->isDependentType()) in buildCoroutinePromise() 550 auto Move = Moves.find(PD); in buildCoroutinePromise() 1143 for (auto *PD : FD.parameters()) { in makeNewAndDeleteExpr() local 1144 if (PD->getType()->isDependentType()) in makeNewAndDeleteExpr() 1148 auto PDLoc = PD->getLocation(); in makeNewAndDeleteExpr() 1150 S.BuildDeclRefExpr(PD, PD->getOriginalType().getNonReferenceType(), in makeNewAndDeleteExpr() 1505 for (auto *PD : FD->parameters()) { in buildCoroutineParameterMoves() local 1506 if (PD->getType()->isDependentType()) in buildCoroutineParameterMoves() 1510 BuildDeclRefExpr(PD, PD->getType().getNonReferenceType(), in buildCoroutineParameterMoves() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 195 return PD; in findPropertyDecl() 206 !PD->isClassProperty()) || in findPropertyDecl() 208 PD->isClassProperty()) || in findPropertyDecl() 210 !PD->isClassProperty())) in findPropertyDecl() 211 return PD; in findPropertyDecl() 213 if (PD->isClassProperty()) in findPropertyDecl() 214 classProp = PD; in findPropertyDecl() 255 if (ObjCPropertyDecl *PD = in FindPropertyDeclaration() local 258 return PD; in FindPropertyDeclaration() 379 if (ObjCPropertyDecl *PD = in FindPropertyVisibleInPrimaryClass() local [all …]
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | TargetSubtargetInfo.cpp | 28 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, in TargetSubtargetInfo() argument 32 : MCSubtargetInfo(TT, CPU, FS, PF, PD, ProcSched, WPR, WL, RA, IS, OC, FP) { in TargetSubtargetInfo()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | AnalysisConsumer.cpp | 112 const PathDiagnostic *PD = *I; in FlushDiagnosticsImpl() local 113 SourceLocation WarnLoc = PD->getLocation().asLocation(); in FlushDiagnosticsImpl() 114 Diag.Report(WarnLoc, WarnID) << PD->getShortDescription() in FlushDiagnosticsImpl() 115 << PD->path.back()->getRanges(); in FlushDiagnosticsImpl() 118 for (const auto &Piece : PD->path) { in FlushDiagnosticsImpl() 131 PathPieces FlatPath = PD->path.flatten(/*ShouldFlattenMacros=*/true); in FlushDiagnosticsImpl()
|
| /freebsd-12.1/sys/gnu/dts/arm/ |
| H A D | imx6q-logicpd.dts | 3 // Copyright (C) 2019 Logic PD, Inc. 11 model = "Logic PD i.MX6QD SOM-M3";
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Attr.h | 343 inline const PartialDiagnostic &operator<<(const PartialDiagnostic &PD, 345 PD.AddTaggedVal(reinterpret_cast<intptr_t>(At), 347 return PD;
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCSubtargetInfo.cpp | 44 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, in MCSubtargetInfo() argument 48 : TargetTriple(TT), CPU(C), ProcFeatures(PF), ProcDesc(PD), in MCSubtargetInfo()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 1181 VisitObjCContainerDecl(PD); in VisitObjCProtocolDecl() 1182 mergeRedeclarable(PD, Redecl); in VisitObjCProtocolDecl() 1186 PD->allocateDefinitionData(); in VisitObjCProtocolDecl() 1188 ReadObjCDefinitionData(PD->data()); in VisitObjCProtocolDecl() 1195 PD->Data = Canon->Data; in VisitObjCProtocolDecl() 1199 PD->getCanonicalDecl()->Data = PD->Data; in VisitObjCProtocolDecl() 1202 Reader.PendingDefinitions.insert(PD); in VisitObjCProtocolDecl() 1204 PD->Data = PD->getCanonicalDecl()->Data; in VisitObjCProtocolDecl() 1328 VisitDeclaratorDecl(PD); in VisitMSPropertyDecl() 1424 VisitVarDecl(PD); in VisitImplicitParamDecl() [all …]
|