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

12345

/openbsd-current/gnu/usr.bin/binutils/opcodes/
H A Dtic80-opc.c560 /* The 'PD' field at bits 10-9 in floating point instructions */
561 #define PD(x) ((x) << 9)
777 {"fadd.ddd", OP_REG(0x3E0) | PD(1) | P2(1) | P1(1), MASK_REG | PD(3) | P2(3) | P1(3), 0, {REG_0_E, REG_22_E, REG_DEST_E} },
778 {"fadd.dsd", OP_REG(0x3E0) | PD(1) | P2(0) | P1(1), MASK_REG | PD(3) | P2(3) | P1(3), 0, {REG_0_E, REG_22, REG_DEST_E} },
779 {"fadd.sdd", OP_LI(0x3E1) | PD(1) | P2(1) | P1(0), MASK_LI | PD(3) | P2(3) | P1(3), 0, {SPFI, REG_22_E, REG_DEST_E} },
780 {"fadd.sdd", OP_REG(0x3E0) | PD(1) | P2(1) | P1(0), MASK_REG | PD(
558 #define PD macro
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/opcodes/
H A Dtic80-opc.c560 /* The 'PD' field at bits 10-9 in floating point instructions */
561 #define PD(x) ((x) << 9)
777 {"fadd.ddd", OP_REG(0x3E0) | PD(1) | P2(1) | P1(1), MASK_REG | PD(3) | P2(3) | P1(3), 0, {REG_0_E, REG_22_E, REG_DEST_E} },
778 {"fadd.dsd", OP_REG(0x3E0) | PD(1) | P2(0) | P1(1), MASK_REG | PD(3) | P2(3) | P1(3), 0, {REG_0_E, REG_22, REG_DEST_E} },
779 {"fadd.sdd", OP_LI(0x3E1) | PD(1) | P2(1) | P1(0), MASK_LI | PD(3) | P2(3) | P1(3), 0, {SPFI, REG_22_E, REG_DEST_E} },
780 {"fadd.sdd", OP_REG(0x3E0) | PD(1) | P2(1) | P1(0), MASK_REG | PD(
558 #define PD macro
[all...]
/openbsd-current/gnu/llvm/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() << " ";
386 const ObjCPropertyDecl *PD = I->second; local
387 if (PD->isClassProperty())
390 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars,
396 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
397 PropertyToIvarMap[PD] = ID;
398 IvarToPopertyMap[ID] = PD;
618 const ObjCPropertyDecl *PD = PA->getExplicitProperty(); local
[all...]
/openbsd-current/regress/usr.bin/mandoc/man/
H A DMakefile3 SUBDIR = AT B BI DT EX HP IP MR MT OP PD PP RS SH SS SY TH TP TS UC UR nf blank
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DTextDiagnostics.cpp92 const PathDiagnostic *PD = *I; variable
94 ? " [" + PD->getCheckerName() + "]"
98 reportPiece(WarnID, PD->getLocation().asLocation(),
99 (PD->getShortDescription() + WarningMsg).str(),
100 PD->path.back()->getRanges(), PD->path.back()->getFixits());
103 for (const auto &Piece : PD->path) {
116 PathPieces FlatPath = PD->path.flatten(/*ShouldFlattenMacros=*/true);
H A DCheckerHelpers.cpp93 } else if (auto PD = dyn_cast_or_null<DeclStmt>(S)) {
95 assert(PD->isSingleDecl() && "We process decls one by one");
96 VD = cast<VarDecl>(PD->getSingleDecl());
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp19 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD,
23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {}
17 TargetSubtargetInfo( const Triple &TT, StringRef CPU, StringRef TuneCPU, 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
/openbsd-current/gnu/llvm/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp136 for (const PrettyDiag &PD : Active) {
138 Out << getCharForLevel(PD.Level) << " ";
139 Out << PD.Name;
140 if (!PD.Flag.empty())
141 Out << " [-W" << PD.Flag << "]";
/openbsd-current/gnu/llvm/clang/include/clang/Sema/
H A DTemplateDeduction.h107 void takeSFINAEDiagnostic(PartialDiagnosticAt &PD) { argument
109 PD.first = SuppressedDiagnostics.front().first;
110 PD.second.swap(SuppressedDiagnostics.front().second);
150 void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD) { argument
155 SuppressedDiagnostics.emplace_back(Loc, std::move(PD));
161 PartialDiagnostic PD) {
164 SuppressedDiagnostics.emplace_back(Loc, std::move(PD));
160 addSuppressedDiagnostic(SourceLocation Loc, PartialDiagnostic PD) argument
/openbsd-current/gnu/llvm/clang/include/clang/Basic/
H A DPartialDiagnostic.h135 void swap(PartialDiagnostic &PD) { argument
136 std::swap(DiagID, PD.DiagID);
137 std::swap(DiagStorage, PD.DiagStorage);
138 std::swap(Allocator, PD.Allocator);
198 const PartialDiagnostic &PD) {
199 PD.Emit(DB);
197 operator <<(const DiagnosticBuilder &DB, const PartialDiagnostic &PD) argument
/openbsd-current/gnu/llvm/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h169 bool operator!=(const PrototypeDescriptor &PD) const {
170 return !(*this == PD);
172 bool operator==(const PrototypeDescriptor &PD) const {
173 return PD.PT == PT && PD.VTM == VTM && PD.TM == TM;
175 bool operator<(const PrototypeDescriptor &PD) const {
176 return std::tie(PT, VTM, TM) < std::tie(PD.PT, PD.VTM, PD
[all...]
/openbsd-current/gnu/llvm/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp237 ObjCPropertyDecl *PD = *PI; local
238 Attrs = PD->getPropertyAttributesAsWritten();
239 TypeSourceInfo *TInfo = PD->getTypeSourceInfo();
245 ATLs.push_back(std::make_pair(ATL, PD));
302 ObjCPropertyDecl *PD = AllProps[i]; local
303 if (PD->getPropertyAttributesAsWritten() &
306 SourceLocation AtLoc = PD->getAtLoc();
309 AtProps[AtLoc].push_back(PD);
H A DTransZeroOutPropsInDealloc.cpp118 ObjCPropertyDecl *PD = PID->getPropertyDecl(); local
119 ObjCMethodDecl *setterM = PD->getSetterMethodDecl();
121 ObjCPropertyAttribute::Kind AttrKind = PD->getPropertyAttributes();
125 SynthesizedProperties[PD] = PID;
/openbsd-current/gnu/llvm/clang/lib/AST/Interp/
H A DByteCodeEmitter.cpp61 for (const ParmVarDecl *PD : FuncDecl->parameters()) {
62 PrimType Ty = Ctx.classify(PD->getType()).value_or(PT_Ptr);
63 Descriptor *Desc = P.createDescriptor(PD, Ty);
65 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.cpp140 std::optional<unsigned> Program::getOrCreateDummy(const ParmVarDecl *PD) { argument
144 QualType ElemTy = PD->getType()->castAs<PointerType>()->getPointeeType();
148 auto It = DummyParams.find(PD);
152 if (auto Idx = createGlobal(PD, Ty, /*isStatic=*/true, /*isExtern=*/true)) {
153 DummyParams[PD] = *Idx;
/openbsd-current/gnu/llvm/llvm/lib/TableGen/
H A DTGLexer.cpp628 for (const auto &PD : PreprocessorDirs) {
632 for (; I < strlen(PD.Word); ++I) {
633 if (NextChar != PD.Word[I]) {
644 tgtok::TokKind Kind = PD.Kind;
685 for (const auto &PD : PreprocessorDirs)
686 if (PD.Kind == Kind) {
688 CurPtr += strlen(PD.Word);
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.cpp47 FMA3GROUP_PACKED_WIDTHS_ALL(Name, PD, Attrs) \
88 FMA3GROUP_PACKED_AVX512_WIDTHS(Name, PD, Suf, Attrs) \
153 bool IsFMA3Prefix = (TSFlags & X86II::OpPrefixMask) == X86II::PD;
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp613 auto &PD = ProfileDataMap[Name]; local
614 PD.NumValueSites[ValueKind] =
615 std::max(PD.NumValueSites[ValueKind], (uint32_t)(Index + 1));
866 auto &PD = ProfileDataMap[NamePtr]; local
867 if (PD.RegionCounters)
868 return PD.RegionCounters;
941 PD.RegionCounters = CounterPtr;
985 NS += PD.NumValueSites[Kind];
1003 CompilerUsedVars.push_back(PD.RegionCounters);
1004 return PD
[all...]
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp193 if (OpPrefix == X86Local::PD)
207 if (OpPrefix == X86Local::PD)
221 if (OpPrefix == X86Local::PD)
235 if (OpPrefix == X86Local::PD)
250 if (OpPrefix == X86Local::PD)
264 else if (OpPrefix == X86Local::PD)
279 if (OpPrefix == X86Local::PD)
291 } else if (OpPrefix == X86Local::PD && HasVEX_L)
293 else if (OpPrefix == X86Local::PD && HasVEX_W)
295 else if (OpPrefix == X86Local::PD)
[all...]
/openbsd-current/lib/libm/src/ld128/
H A De_powl.c123 static const long double PD[] = variable
424 v = PD[0] + t * (PD[1] + t * (PD[2] + t * (PD[3] + t)));
/openbsd-current/gnu/llvm/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp369 PrototypeDescriptor PD; local
374 return PD;
419 PD.PT = static_cast<uint8_t>(PT);
549 PD.VTM = static_cast<uint8_t>(VTM);
584 PD.TM = static_cast<uint8_t>(TM);
586 return PD;
905 for (auto PD : PrototypeDescriptors) {
906 auto T = TypeCache.computeType(Type, Log2LMUL, PD);
1047 auto PD = PrototypeDescriptor::parsePrototypeDescriptor( local
1049 if (!PD)
[all...]
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGObjCGNU.cpp229 llvm::Constant *MakePropertyEncodingString(const ObjCPropertyDecl *PD, argument
235 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container);
240 NameAndAttributes += PD->getNameAsString();
243 return MakeConstantString(PD->getNameAsString());
609 const ObjCProtocolDecl *PD) override;
610 void GenerateProtocol(const ObjCProtocolDecl *PD) override;
612 virtual llvm::Constant *GenerateProtocolRef(const ObjCProtocolDecl *PD);
614 llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD) override {
615 return GenerateProtocolRef(PD);
1319 const ObjCProtocolDecl *PD) overrid
3131 GenerateProtocolRef(CodeGenFunction &CGF, const ObjCProtocolDecl *PD) argument
3139 GenerateProtocolRef(const ObjCProtocolDecl *PD) argument
3174 GenerateProtocol(const ObjCProtocolDecl *PD) argument
[all...]
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DSema.cpp1592 Sema::Diag(SourceLocation Loc, const PartialDiagnostic &PD, bool DeferHint) { argument
1593 return Diag(Loc, PD.getDiagID(), DeferHint) << PD;
1767 const PartialDiagnostic &PD = PDAt.second; local
1769 S.getDiagnostics().getDiagnosticLevel(PD.getDiagID(), Loc) >=
1772 DiagnosticBuilder Builder(S.Diags.Report(Loc, PD.getDiagID()));
1773 PD.Emit(Builder);
1949 PartialDiagnostic PD = PDiag(diag::err_target_unsupported_type);
1951 PD << D;
1953 PD << "expressio
2611 tryToRecoverWithCall(ExprResult &E, const PartialDiagnostic &PD, bool ForceComplain, bool (*IsPlausibleResult)(QualType)) argument
[all...]

Completed in 435 milliseconds

12345