Searched refs:AC (Results 1 - 25 of 170) sorted by relevance

1234567

/freebsd-11-stable/usr.bin/tip/libacu/
H A Dv831.c68 if ((AC = open(acu, O_RDWR)) < 0) {
77 close(AC);
106 close(AC);
114 close(AC);
156 printf("[abort: AC=%d]\n", AC);
163 close(AC);
182 #define pc(x) (c = x, write(AC,&c,1))
209 tcgetattr(AC, &cntrl);
214 tcsetattr(AC, TCSANO
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DTransformer.cpp50 AtomicChange AC(*Result.SourceManager,
53 if (auto Err = AC.replace(*Result.SourceManager, T.Range, T.Replacement)) {
63 AC.addHeader(Header);
66 AC.addHeader((llvm::Twine("<") + Header + ">").str());
71 Consumer(std::move(AC));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMem2Reg.cpp36 AssumptionCache &AC) {
54 PromoteMemToReg(Allocas, DT, &AC);
63 auto &AC = AM.getResult<AssumptionAnalysis>(F); local
64 if (!promoteMemoryToRegister(F, DT, AC))
89 AssumptionCache &AC = variable
91 return promoteMemoryToRegister(F, DT, AC);
35 promoteMemoryToRegister(Function &F, DominatorTree &DT, AssumptionCache &AC) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopSimplify.h63 AssumptionCache *AC, MemorySSAUpdater *MSSAU,
H A DPromoteMemToReg.h41 AssumptionCache *AC = nullptr);
H A DLoopRotationUtils.h34 AssumptionCache *AC, DominatorTree *DT, ScalarEvolution *SE,
H A DUnrollLoop.h83 AssumptionCache *AC, OptimizationRemarkEmitter *ORE,
91 AssumptionCache *AC, bool PreserveLCSSA,
101 DominatorTree *DT, AssumptionCache *AC, bool PreserveLCSSA);
106 DominatorTree *DT, AssumptionCache *AC,
126 AssumptionCache *AC);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSizeofPointer.cpp27 AnalysisDeclContext* AC; member in class:__anon878::WalkAST
31 : BR(br), Checker(checker), AC(ac) {}
65 PathDiagnosticLocation::createBegin(E, BR.getSourceManager(), AC);
66 BR.EmitBasicReport(AC->getDecl(), Checker,
H A DCastToStructChecker.cpp29 AnalysisDeclContext *AC; member in class:__anon869::CastToStructVisitor
34 : BR(B), Checker(Checker), AC(A) {}
41 ASTContext &Ctx = AC->getASTContext();
64 PathDiagnosticLocation Loc(CE, BR.getSourceManager(), AC);
66 AC->getDecl(), Checker, "Cast from non-struct type to struct type",
96 PathDiagnosticLocation Loc(CE, BR.getSourceManager(), AC);
97 BR.EmitBasicReport(AC->getDecl(), Checker, "Widening cast to struct type",
H A DIdenticalExprChecker.cpp39 AnalysisDeclContext *AC; member in class:__anon912::FindIdenticalExprVisitor
44 : BR(B), Checker(Checker), AC(A) {}
71 BR.EmitBasicReport(AC->getDecl(), Checker,
91 if (isIdenticalStmt(AC->getASTContext(), RHS, B2->getRHS())) {
99 if (isIdenticalStmt(AC->getASTContext(), RHS, LHS)) {
118 if (InnerIf && isIdenticalStmt(AC->getASTContext(), I->getCond(), InnerIf->getCond(), /*IgnoreSideEffects=*/ false)) {
119 PathDiagnosticLocation ELoc(InnerIf->getCond(), BR.getSourceManager(), AC);
120 BR.EmitBasicReport(AC->getDecl(), Checker, "Identical conditions",
140 if (isIdenticalStmt(AC->getASTContext(), Cond1, Cond2, false)) {
142 PathDiagnosticLocation ELoc(Cond2, BR.getSourceManager(), AC);
[all...]
H A DObjCContainersASTChecker.cpp30 AnalysisDeclContext* AC; member in class:__anon951::WalkAST
74 : BR(br), Checker(checker), AC(ac), ASTC(AC->getASTContext()),
143 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
144 BR.EmitBasicReport(AC->getDecl(), Checker, OsName.str(),
H A DCheckSecuritySyntaxOnly.cpp72 AnalysisDeclContext* AC; member in class:__anon761::WalkAST
82 : BR(br), AC(ac), II_setid(),
337 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
338 BR.EmitBasicReport(AC->getDecl(), filter.checkName_FloatLoopCounter,
377 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
378 BR.EmitBasicReport(AC->getDecl(), filter.checkName_bcmp,
419 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
420 BR.EmitBasicReport(AC->getDecl(), filter.checkName_bcopy,
460 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
461 BR.EmitBasicReport(AC
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DPHITransAddr.h46 AssumptionCache *AC; member in class:llvm::PHITransAddr
52 PHITransAddr(Value *addr, const DataLayout &DL, AssumptionCache *AC) argument
53 : Addr(addr), DL(DL), TLI(nullptr), AC(AC) {
H A DCodeMetrics.h84 static void collectEphemeralValues(const Loop *L, AssumptionCache *AC,
89 static void collectEphemeralValues(const Function *L, AssumptionCache *AC,
H A DDemandedBits.h42 DemandedBits(Function &F, AssumptionCache &AC, DominatorTree &DT) : argument
43 F(F), AC(AC), DT(DT) {}
72 AssumptionCache &AC; member in class:llvm::DemandedBits
H A DBasicAliasAnalysis.h60 AssumptionCache &AC; member in class:llvm::BasicAAResult
67 const TargetLibraryInfo &TLI, AssumptionCache &AC,
70 : AAResultBase(), DL(DL), F(F), TLI(TLI), AC(AC), DT(DT), LI(LI), PV(PV)
74 : AAResultBase(Arg), DL(Arg.DL), F(Arg.F), TLI(Arg.TLI), AC(Arg.AC),
78 AC(Arg.AC), DT(Arg.DT), LI(Arg.LI), PV(Arg.PV) {}
169 const DataLayout &DL, unsigned Depth, AssumptionCache *AC,
173 const DataLayout &DL, AssumptionCache *AC, DominatorTre
66 BasicAAResult(const DataLayout &DL, const Function &F, const TargetLibraryInfo &TLI, AssumptionCache &AC, DominatorTree *DT = nullptr, LoopInfo *LI = nullptr, PhiValues *PV = nullptr) argument
[all...]
H A DValueTracking.h56 AssumptionCache *AC = nullptr,
64 unsigned Depth = 0, AssumptionCache *AC = nullptr,
79 AssumptionCache *AC = nullptr,
91 AssumptionCache *AC = nullptr,
105 AssumptionCache *AC = nullptr,
119 AssumptionCache *AC = nullptr,
127 AssumptionCache *AC = nullptr,
135 AssumptionCache *AC = nullptr,
143 AssumptionCache *AC = nullptr,
159 unsigned Depth = 0, AssumptionCache *AC
[all...]
H A DLazyValueInfo.h33 AssumptionCache *AC = nullptr; member in class:llvm::LazyValueInfo
45 : AC(AC_), DL(DL_), TLI(TLI_), DT(DT_) {}
47 : AC(Arg.AC), DL(Arg.DL), TLI(Arg.TLI), DT(Arg.DT), PImpl(Arg.PImpl) {
52 AC = Arg.AC;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DAlignmentFromAssumptions.h32 bool runImpl(Function &F, AssumptionCache &AC, ScalarEvolution *SE_,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DReachableCode.h63 void FindUnreachableCode(AnalysisDeclContext &AC, Preprocessor &PP,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInstSimplifyPass.cpp105 AssumptionCache *AC = variable
110 const SimplifyQuery SQ(DL, TLI, DT, AC);
135 auto &AC = AM.getResult<AssumptionAnalysis>(F); local
138 const SimplifyQuery SQ(DL, &TLI, &DT, &AC);
H A DLoopDataPrefetch.cpp64 LoopDataPrefetch(AssumptionCache *AC, LoopInfo *LI, ScalarEvolution *SE, argument
67 : AC(AC), LI(LI), SE(SE), TTI(TTI), ORE(ORE) {}
96 AssumptionCache *AC; member in class:__anon2692::LoopDataPrefetch
161 AssumptionCache *AC = &AM.getResult<AssumptionAnalysis>(F); local
166 LoopDataPrefetch LDP(AC, LI, SE, TTI, ORE);
185 AssumptionCache *AC = local
192 LoopDataPrefetch LDP(AC, LI, SE, TTI, ORE);
221 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
H A DLoopRotation.cpp49 bool Changed = LoopRotation(&L, &AR.LI, &AR.TTI, &AR.AC, &AR.DT, &AR.SE,
96 auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); variable
108 return LoopRotation(L, LI, TTI, AC, &DT, &SE,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp144 AssumptionCache *AC = nullptr; local
147 AC = ACT->lookupAssumptionCache(Func);
149 CodeExtractor Extractor(DT, *L, false, nullptr, nullptr, AC);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCodeMetrics.cpp71 const Loop *L, AssumptionCache *AC,
76 for (auto &AssumeVH : AC->assumptions()) {
95 const Function *F, AssumptionCache *AC,
100 for (auto &AssumeVH : AC->assumptions()) {
70 collectEphemeralValues( const Loop *L, AssumptionCache *AC, SmallPtrSetImpl<const Value *> &EphValues) argument
94 collectEphemeralValues( const Function *F, AssumptionCache *AC, SmallPtrSetImpl<const Value *> &EphValues) argument

Completed in 221 milliseconds

1234567