/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/ |
H A D | PipelinePrinter.cpp | 56 if (PO.RegisterFileSize) in getJSONSimulationParameters() 57 SimParameters.try_emplace("-register-file-size", PO.RegisterFileSize); in getJSONSimulationParameters() 59 if (!PO.AssumeNoAlias) in getJSONSimulationParameters() 60 SimParameters.try_emplace("-noalias", PO.AssumeNoAlias); in getJSONSimulationParameters() 62 if (PO.DecodersThroughput) in getJSONSimulationParameters() 63 SimParameters.try_emplace("-decoder-throughput", PO.DecodersThroughput); in getJSONSimulationParameters() 65 if (PO.MicroOpQueueSize) in getJSONSimulationParameters() 66 SimParameters.try_emplace("-micro-op-queue-size", PO.MicroOpQueueSize); in getJSONSimulationParameters() 68 if (PO.DispatchWidth) in getJSONSimulationParameters() 69 SimParameters.try_emplace("-dispatch", PO.DispatchWidth); in getJSONSimulationParameters() [all …]
|
H A D | PipelinePrinter.h | 45 const PipelineOptions &PO; variable 55 const MCSubtargetInfo &STI, const PipelineOptions &PO) in PipelinePrinter() argument 56 : P(Pipe), Region(R), RegionIdx(Idx), STI(STI), PO(PO) {} in PipelinePrinter()
|
H A D | llvm-mca.cpp | 581 mca::PipelineOptions PO(MicroOpQueue, DecoderThroughput, DispatchWidth, in main() local 673 mca::PipelinePrinter Printer(*P, *Region, RegionIdx, *STI, PO); in main() 717 auto P = MCA.createDefaultPipeline(PO, S, *CB); in main() 719 mca::PipelinePrinter Printer(*P, *Region, RegionIdx, *STI, PO); in main()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MemDerefPrinter.cpp | 32 Value *PO = LI->getPointerOperand(); in run() local 33 if (isDereferenceablePointer(PO, LI->getType(), DL)) in run() 34 Deref.push_back(PO); in run() 35 if (isDereferenceableAndAlignedPointer(PO, LI->getType(), LI->getAlign(), in run() 37 DerefAndAligned.insert(PO); in run()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMBasicBlockInfo.h | 91 unsigned PO = Offset + Size; member 94 return PO; 96 return PO + UnknownPadding(PA, internalKnownBits());
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | TransZeroOutPropsInDealloc.cpp | 153 if (PseudoObjectExpr *PO = dyn_cast<PseudoObjectExpr>(E)) in isZeroingPropIvar() local 154 return isZeroingPropIvar(PO); in isZeroingPropIvar() 190 bool isZeroingPropIvar(PseudoObjectExpr *PO) { in isZeroingPropIvar() argument 191 BinaryOperator *BO = dyn_cast<BinaryOperator>(PO->getSyntacticForm()); in isZeroingPropIvar()
|
/freebsd/sys/dev/hwpmc/ |
H A D | hwpmc_logging.c | 113 #define _PMCLOG_RESERVE_SAFE(PO, TYPE, LEN, ACTION, TSC) do { \ argument 118 if ((_le = pmclog_reserve((PO), _len)) == NULL) { \ 127 #define _PMCLOG_RESERVE(PO, TYPE, LEN, ACTION) do { \ argument 135 if ((_le = pmclog_reserve((PO), _len)) == NULL) { \ 166 #define PMCLOG_DESPATCH_SAFE(PO) \ argument 167 pmclog_release((PO)); \ 170 #define PMCLOG_DESPATCH_SCHED_LOCK(PO) \ argument 171 pmclog_release_flags((PO), 0); \ 174 #define PMCLOG_DESPATCH(PO) \ argument 175 pmclog_release((PO)); \ [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeRecord.h | 289 PointerOptions PO, uint8_t Size) in PointerRecord() argument 291 Attrs(calcAttrs(PK, PM, PO, Size)) {} in PointerRecord() 294 PointerOptions PO, uint8_t Size, const MemberPointerInfo &MPI) in PointerRecord() argument 296 Attrs(calcAttrs(PK, PM, PO, Size)), MemberInfo(MPI) {} in PointerRecord() 352 void setAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in setAttrs() argument 354 Attrs = calcAttrs(PK, PM, PO, Size); in setAttrs() 358 static uint32_t calcAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in calcAttrs() argument 362 A |= static_cast<uint32_t>(PO); in calcAttrs()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Overload.h | 1077 getRewriteKind(const FunctionDecl *FD, OverloadCandidateParamOrder PO) { in getRewriteKind() 1081 if (PO == OverloadCandidateParamOrder::Reversed) in getRewriteKind() 1169 bool isNewCandidate(Decl *F, OverloadCandidateParamOrder PO = 1172 Key |= static_cast<uintptr_t>(PO);
|
/freebsd/contrib/libxo/tests/gettext/ |
H A D | ldns.pot | 11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | USRGeneration.cpp | 662 PrintingPolicy PO(Ctx.getLangOpts()); in printQualifier() local 663 PO.SuppressTagKeyword = true; in printQualifier() 664 PO.SuppressUnwrittenScope = true; in printQualifier() 665 PO.ConstantArraySizeAsWritten = false; in printQualifier() 666 PO.AnonymousTagLocations = false; in printQualifier() 667 NNS->print(Out, PO); in printQualifier()
|
/freebsd/contrib/libxo/tests/gettext/po/pig_latin/ |
H A D | ldns.po | 10 "PO-Revision-Date: 2015-07-01 18:47-0500\n"
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | BranchRelaxation.cpp | 69 const unsigned PO = Offset + Size; in postOffset() 73 return alignTo(PO, Alignment); in postOffset() 77 return alignTo(PO, Alignment) + Alignment.value() - ParentAlign.value(); in postOffset() 68 const unsigned PO = Offset + Size; postOffset() local
|
/freebsd/contrib/dialog/po/ |
H A D | et.po | 9 "PO-Revision-Date: 2001-09-08 00:05+0200\n"
|
H A D | mg.po | 10 "PO-Revision-Date: 2004-11-21 17:33+0100\n"
|
H A D | th.po | 10 "PO-Revision-Date: 2007-11-22 19:23+0700\n"
|
H A D | cy.po | 9 "PO-Revision-Date: 2004-03-30 23:00+0100\n"
|
H A D | uk.po | 11 "PO-Revision-Date: 2004-02-12 20:17+0200\n"
|
H A D | ar.po | 11 "PO-Revision-Date: 2004-07-21 00:22+0300\n"
|
H A D | dialog.pot | 10 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
H A D | ja.po | 12 "PO-Revision-Date: 2008-07-24 00:12+0900\n"
|
H A D | bg.po | 12 "PO-Revision-Date: 2004-09-13 09:02+0300\n"
|
H A D | el.po | 11 "PO-Revision-Date: 2012-03-18 00:54+0100\n"
|
H A D | fa.po | 11 "PO-Revision-Date: 2013-08-03 17:04+0330\n"
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 1906 PointerOptions PO) { in lowerTypePointer() 1911 if (PointeeTI.isSimple() && PO == PointerOptions::None && in lowerTypePointer() 1937 PO |= PointerOptions::Const; in translatePtrToMemberRep() 1939 PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8); in translatePtrToMemberRep() 1977 PointerOptions PO) { 1992 PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI); in lowerTypeModifier() 2012 PointerOptions PO = PointerOptions::None; in lowerTypeModifier() 2020 PO |= PointerOptions::Const; in lowerTypeModifier() 2024 PO |= PointerOptions::Volatile; in lowerTypeModifier() 2029 PO | in lowerTypeModifier() 1888 lowerTypePointer(const DIDerivedType * Ty,PointerOptions PO) lowerTypePointer() argument 1959 lowerTypeMemberPointer(const DIDerivedType * Ty,PointerOptions PO) lowerTypeMemberPointer() argument 1994 PointerOptions PO = PointerOptions::None; lowerTypeModifier() local 2656 PointerOptions PO = PointerOptions::None; getVBPTypeIndex() local [all...] |