Searched refs:PD (Results 1 - 25 of 110) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h262 void swap(PartialDiagnostic &PD) { argument
263 std::swap(DiagID, PD.DiagID);
264 std::swap(DiagStorage, PD.DiagStorage);
265 std::swap(Allocator, PD.Allocator);
344 friend const PartialDiagnostic &operator<<(const PartialDiagnostic &PD, argument
346 PD.AddTaggedVal(I, DiagnosticsEngine::ak_uint);
347 return PD;
350 friend const PartialDiagnostic &operator<<(const PartialDiagnostic &PD, argument
352 PD.AddTaggedVal(I, DiagnosticsEngine::ak_sint);
353 return PD;
356 operator <<(const PartialDiagnostic &PD, const char *S) argument
363 operator <<(const PartialDiagnostic &PD, StringRef S) argument
370 operator <<(const PartialDiagnostic &PD, const IdentifierInfo *II) argument
385 operator <<(const PartialDiagnostic &PD, T *DC) argument
391 operator <<(const PartialDiagnostic &PD, SourceRange R) argument
397 operator <<(const PartialDiagnostic &PD, const CharSourceRange &R) argument
403 operator <<(const PartialDiagnostic &PD, const FixItHint &Hint) argument
410 operator <<(const DiagnosticBuilder &DB, const PartialDiagnostic &PD) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp94 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD, argument
98 ObjCIvarDecl *ID = PD->getPropertyIvarDecl();
105 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx));
110 IdentifierInfo *PropIdent = PD->getIdentifier();
125 for (const auto *PD : InterD->instance_properties()) {
127 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD,
134 IvarToPropMap[ID] = PD;
180 const ObjCPropertyDecl *PD = I->second; local
185 if (isAnnotatedToAllowDirectAssignment(PD) ||
190 InterfD->getInstanceMethod(PD
[all...]
H A DIvarInvalidationChecker.cpp348 const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl); local
349 assert(PD &&"Do we synthesize ivars for something other than properties?");
350 os << "Property "<< PD->getName() << " ";
387 const ObjCPropertyDecl *PD = I->second; local
388 if (PD->isClassProperty())
391 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars,
397 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
398 PropertyToIvarMap[PD] = ID;
399 IvarToPopertyMap[ID] = PD;
619 const ObjCPropertyDecl *PD = PA->getExplicitProperty(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp19 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD,
23 : MCSubtargetInfo(TT, CPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {
17 TargetSubtargetInfo( const Triple &TT, StringRef CPU, StringRef FS, ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplateDeduction.h102 void takeSFINAEDiagnostic(PartialDiagnosticAt &PD) { argument
104 PD.first = SuppressedDiagnostics.front().first;
105 PD.second.swap(SuppressedDiagnostics.front().second);
140 void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD) { argument
145 SuppressedDiagnostics.emplace_back(Loc, std::move(PD));
151 PartialDiagnostic PD) {
154 SuppressedDiagnostics.emplace_back(Loc, std::move(PD));
150 addSuppressedDiagnostic(SourceLocation Loc, PartialDiagnostic PD) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp91 } else if (auto PD = dyn_cast_or_null<DeclStmt>(S)) {
93 assert(PD->isSingleDecl() && "We process decls one by one");
94 VD = cast<VarDecl>(PD->getSingleDecl());
H A DBugReporter.cpp131 std::unique_ptr<PathDiagnostic> PD; member in class:__anon867::PathDiagnosticConstruct
149 return LCM.find(&PD->getActivePath())->getSecond();
184 PathPieces &getActivePath() { return PD->getActivePath(); }
185 PathPieces &getMutablePieces() { return PD->getMutablePieces(); }
1146 bool VisitedEntireCall = C.PD->isWithinCall();
1147 C.PD->popActivePath();
1212 C.PD->pushActivePath(&P->path);
1952 static void updateExecutedLinesWithDiagnosticPieces(PathDiagnostic &PD) { argument
1954 PathPieces path = PD.path.flatten(/*ShouldFlattenMacros=*/true);
1955 FilesToLineNumsMap &ExecutedLines = PD
3000 std::unique_ptr<PathDiagnostic> &PD = P.second; local
3158 resetDiagnosticLocationToMainFile(PathDiagnostic &PD) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeEmitter.cpp41 for (const ParmVarDecl *PD : F->parameters()) {
43 if (llvm::Optional<PrimType> T = Ctx.classify(PD->getType())) {
49 Descriptor *Desc = P.createDescriptor(PD, Ty);
51 Params.insert({PD, ParamOffset});
H A DState.cpp81 PartialDiagnostic PD(DiagId, getCtx().getDiagAllocator());
82 getEvalStatus().Diag->push_back(std::make_pair(Loc, PD));
H A DProgram.cpp122 llvm::Optional<unsigned> Program::getOrCreateDummy(const ParmVarDecl *PD) { argument
126 QualType ElemTy = PD->getType()->castAs<PointerType>()->getPointeeType();
130 auto It = DummyParams.find(PD);
134 if (auto Idx = createGlobal(PD, Ty, /*isStatic=*/true, /*isExtern=*/true)) {
135 DummyParams[PD] = *Idx;
H A DByteCodeExprGen.cpp265 if (auto *PD = dyn_cast<ParmVarDecl>(DE->getDecl()))
266 return dereferenceParam(LV, *T, PD, AK, Direct, Indirect);
283 const Expr *LV, PrimType T, const ParmVarDecl *PD, DerefKind AK,
286 auto It = this->Params.find(PD);
314 if (auto Idx = P.getOrCreateDummy(PD))
315 return this->emitGetPtrGlobal(*Idx, PD);
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp238 ObjCPropertyDecl *PD = *PI; local
239 Attrs = PD->getPropertyAttributesAsWritten();
240 TypeSourceInfo *TInfo = PD->getTypeSourceInfo();
246 ATLs.push_back(std::make_pair(ATL, PD));
303 ObjCPropertyDecl *PD = AllProps[i]; local
304 if (PD->getPropertyAttributesAsWritten() &
307 SourceLocation AtLoc = PD->getAtLoc();
311 AtProps[RawAt].push_back(PD);
H A DTransZeroOutPropsInDealloc.cpp118 ObjCPropertyDecl *PD = PID->getPropertyDecl(); local
119 ObjCMethodDecl *setterM = PD->getSetterMethodDecl();
122 PD->getPropertyAttributes();
127 SynthesizedProperties[PD] = PID;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h112 bool shouldEncodeData(const ProfilingData &PD);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.cpp44 FMA3GROUP_PACKED_WIDTHS(Name, PD, Attrs) \
80 FMA3GROUP_PACKED_AVX512_WIDTHS(Name, PD, Suf, Attrs) \
139 (TSFlags & X86II::OpPrefixMask) == X86II::PD &&
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAttr.h353 inline const PartialDiagnostic &operator<<(const PartialDiagnostic &PD, argument
355 PD.AddTaggedVal(reinterpret_cast<intptr_t>(At),
357 return PD;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp590 PerFunctionProfileData PD; local
591 PD.NumValueSites[ValueKind] = Index + 1;
592 ProfileDataMap[Name] = PD;
737 PerFunctionProfileData PD; local
741 PD = It->second;
800 NS += PD.NumValueSites[Kind];
833 Int16ArrayVals[Kind] = ConstantInt::get(Int16Ty, PD.NumValueSites[Kind]);
848 PD.RegionCounters = CounterPtr;
849 PD.DataVar = Data;
850 ProfileDataMap[NamePtr] = PD;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp168 if (OpPrefix == X86Local::PD)
182 if (OpPrefix == X86Local::PD)
196 if (OpPrefix == X86Local::PD)
210 if (OpPrefix == X86Local::PD)
225 if (OpPrefix == X86Local::PD)
239 else if (OpPrefix == X86Local::PD)
254 if (OpPrefix == X86Local::PD)
266 } else if (OpPrefix == X86Local::PD && HasVEX_LPrefix)
268 else if (OpPrefix == X86Local::PD && HasVEX_W)
270 else if (OpPrefix == X86Local::PD)
[all...]
/freebsd-11-stable/lib/msun/ld128/
H A De_powl.c127 static const long double PD[] = variable
428 v = PD[0] + t * (PD[1] + t * (PD[2] + t * (PD[3] + t)));
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp952 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
1031 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
1108 void GenerateProtocol(const ObjCProtocolDecl *PD) override;
1113 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
1119 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
1180 static ProtocolMethodLists get(const ObjCProtocolDecl *PD) { argument
1183 for (auto MD : PD->methods()) {
1213 llvm::Constant *emitMethodList(Self *self, const ObjCProtocolDecl *PD, argument
1215 return self->emitMethodList(PD->getObjCRuntimeNameAsString(),
1294 llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD) overrid
3015 GenerateProtocolRef(CodeGenFunction &CGF, const ObjCProtocolDecl *PD) argument
3025 GenerateProtocol(const ObjCProtocolDecl *PD) argument
3037 GetProtocolRef(const ObjCProtocolDecl *PD) argument
3075 GetOrEmitProtocol(const ObjCProtocolDecl *PD) argument
3122 GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) argument
3151 EmitProtocolExtension(const ObjCProtocolDecl *PD, const ProtocolMethodLists &methodLists) argument
5682 GetPropertyTypeString(const ObjCPropertyDecl *PD, const Decl *Container) argument
6642 GenerateProtocolRef(CodeGenFunction &CGF, const ObjCProtocolDecl *PD) argument
7000 GetOrEmitProtocolRef( const ObjCProtocolDecl *PD) argument
7042 GetOrEmitProtocol( const ObjCProtocolDecl *PD) argument
[all...]
H A DCGObjCGNU.cpp234 llvm::Constant *MakePropertyEncodingString(const ObjCPropertyDecl *PD, argument
240 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container);
245 NameAndAttributes += PD->getNameAsString();
248 return MakeConstantString(PD->getNameAsString());
617 const ObjCProtocolDecl *PD) override;
618 void GenerateProtocol(const ObjCProtocolDecl *PD) override;
1311 const ObjCProtocolDecl *PD) override {
1312 auto Name = PD->getNameAsString();
1317 Protocol = GenerateProtocolRef(PD);
1347 void GenerateProtocol(const ObjCProtocolDecl *PD) overrid
1350 GenerateProtocolRef(const ObjCProtocolDecl *PD) argument
3035 GenerateProtocolRef(CodeGenFunction &CGF, const ObjCProtocolDecl *PD) argument
3073 GenerateProtocol(const ObjCProtocolDecl *PD) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp523 for (auto *PD : FD->parameters()) {
524 if (PD->getType()->isDependentType())
528 auto Move = Moves.find(PD);
1168 for (auto *PD : FD.parameters()) {
1169 if (PD->getType()->isDependentType())
1173 auto PDLoc = PD->getLocation();
1175 S.BuildDeclRefExpr(PD, PD->getOriginalType().getNonReferenceType(),
1533 for (auto *PD : FD->parameters()) {
1534 if (PD
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DTemplateName.cpp267 const PartialDiagnostic&clang::operator<<(const PartialDiagnostic &PD, argument
278 return PD << NameStr;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp140 const PathDiagnostic *PD = *I; variable
141 reportPiece(WarnID, PD->getLocation().asLocation(),
142 PD->getShortDescription(), PD->path.back()->getRanges(),
143 PD->path.back()->getFixits());
146 for (const auto &Piece : PD->path) {
158 PathPieces FlatPath = PD->path.flatten(/*ShouldFlattenMacros=*/true);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp259 for (auto PD : D->parameters()) {
261 VisitType(PD->getType());
467 const ObjCProtocolDecl *PD = cast<ObjCProtocolDecl>(D); local
468 GenObjCProtocol(PD->getName(), GetExternalSourceContainer(PD));
485 if (ObjCPropertyDecl *PD = D->getPropertyDecl()) {
486 VisitObjCPropertyDecl(PD);

Completed in 221 milliseconds

12345