Searched refs:PA (Results 76 - 100 of 161) sorted by relevance

1234567

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp175 bool BlockFrequencyInfo::invalidate(Function &F, const PreservedAnalyses &PA, argument
179 auto PAC = PA.getChecker<BlockFrequencyAnalysis>();
H A DCallGraph.cpp68 bool CallGraph::invalidate(Module &, const PreservedAnalyses &PA, argument
72 auto PAC = PA.getChecker<CallGraphAnalysis>();
H A DMemoryDependenceAnalysis.cpp1760 bool MemoryDependenceResults::invalidate(Function &F, const PreservedAnalyses &PA, argument
1763 auto PAC = PA.getChecker<MemoryDependenceAnalysis>();
1769 if (Inv.invalidate<AAManager>(F, PA) ||
1770 Inv.invalidate<AssumptionAnalysis>(F, PA) ||
1771 Inv.invalidate<DominatorTreeAnalysis>(F, PA) ||
1772 Inv.invalidate<PhiValuesAnalysis>(F, PA))
/freebsd-13-stable/crypto/heimdal/tools/
H A Dkdc-log-analyze.pl464 } elsif (/Failed to decrypt PA-DATA -- (.+)$/) {
482 } elsif (/No PA-ENC-TIMESTAMP --/) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp423 auto *PA = new PredicateAssume(Op, II, Cmp); local
424 addInfoFor(OpsToRename, Op, PA);
431 auto *PA = new PredicateAssume(BinOp, II, BinOp); local
432 addInfoFor(OpsToRename, BinOp, PA);
909 } else if (const auto *PA = dyn_cast<PredicateAssume>(PI)) {
911 << " Comparison:" << *PA->Condition;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVectorCombine.cpp693 PreservedAnalyses PA;
694 PA.preserveSet<CFGAnalyses>();
695 PA.preserve<GlobalsAA>();
696 PA.preserve<AAManager>();
697 PA.preserve<BasicAA>();
698 return PA;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h923 void takeOneFrom(ParsedAttributes &Attrs, ParsedAttr *PA) {
924 Attrs.getPool().remove(PA);
925 Attrs.remove(PA);
926 getPool().add(PA);
927 addAtEnd(PA);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp934 PreservedAnalyses PA;
935 PA.preserve<GlobalsAA>();
936 PA.preserve<DominatorTreeAnalysis>();
937 PA.preserve<LazyValueAnalysis>();
938 return PA;
H A DGVNHoist.cpp1190 PreservedAnalyses PA;
1191 PA.preserve<DominatorTreeAnalysis>();
1192 PA.preserve<MemorySSAAnalysis>();
1193 PA.preserve<GlobalsAA>();
1194 return PA;
H A DLoopDistribute.cpp1068 PreservedAnalyses PA;
1069 PA.preserve<LoopAnalysis>();
1070 PA.preserve<DominatorTreeAnalysis>();
1071 PA.preserve<GlobalsAA>();
1072 return PA;
H A DTailRecursionElimination.cpp917 PreservedAnalyses PA;
918 PA.preserve<GlobalsAA>();
919 PA.preserve<DominatorTreeAnalysis>();
920 PA.preserve<PostDominatorTreeAnalysis>();
921 return PA;
H A DLoopSimplifyCFG.cpp711 auto PA = getLoopPassPreservedAnalyses(); local
713 PA.preserve<MemorySSAAnalysis>();
714 return PA;
H A DLoopFuse.cpp1647 PreservedAnalyses PA;
1648 PA.preserve<DominatorTreeAnalysis>();
1649 PA.preserve<PostDominatorTreeAnalysis>();
1650 PA.preserve<ScalarEvolutionAnalysis>();
1651 PA.preserve<LoopAnalysis>();
1652 return PA;
H A DMergeICmps.cpp942 PreservedAnalyses PA;
943 PA.preserve<GlobalsAA>();
944 PA.preserve<DominatorTreeAnalysis>();
945 return PA;
H A DEarlyCSE.cpp1395 PreservedAnalyses PA;
1396 PA.preserveSet<CFGAnalyses>();
1397 PA.preserve<GlobalsAA>();
1399 PA.preserve<MemorySSAAnalysis>();
1400 return PA;
H A DMemCpyOptimizer.cpp1366 PreservedAnalyses PA;
1367 PA.preserveSet<CFGAnalyses>();
1368 PA.preserve<GlobalsAA>();
1369 PA.preserve<MemoryDependenceAnalysis>();
1370 return PA;
H A DLoopLoadElimination.cpp717 PreservedAnalyses PA;
718 return PA;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profile_collector.cpp167 populateRecords(ProfileRecordArray &PRs, ProfileRecord::PathAllocator &PA,
180 auto Record = PRs.AppendEmplace(PathArray{PA}, Node);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp69 auto PA = Impl.run(M, DummyMAM); variable
70 return !PA.areAllPreserved();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBasicAliasAnalysis.h81 bool invalidate(Function &Fn, const PreservedAnalyses &PA,
H A DBranchProbabilityInfo.h79 bool invalidate(Function &, const PreservedAnalyses &PA,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDominators.h155 bool invalidate(Function &F, const PreservedAnalyses &PA,
/freebsd-13-stable/usr.bin/tip/tip/
H A Dtip.h77 EXTERN char *PA; /* parity to be generated */ variable
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp1018 TentativeParsingAction PA(*this);
1023 PA.Revert();
1026 PA.Revert();
1173 UnannotatedTentativeParsingAction PA(*this,
1203 PA.RevertAnnotations();
H A DParseStmt.cpp1712 TentativeParsingAction PA(*this);
1716 PA.Revert();
2296 TentativeParsingAction PA(*this);
2303 PA.Revert();
2307 PA.Commit();
2312 PA.Revert();
2318 PA.Revert();
2322 PA.Commit();

Completed in 146 milliseconds

1234567