Searched defs:AC (Results 1 - 25 of 82) sorted by relevance

1234

/external/clang/test/SemaCXX/
H A Dmissing-header.cpp6 static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { argument
H A Ddecltype.cpp11 typedef A const AC; typedef
16 float &fr = f2(AC().a);
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
H A Dp3.cpp34 namespace AC { namespace
40 if (AC::i)
41 AC::f();
/external/clang/test/CodeGenCXX/
H A Dmangle-alias-template.cpp27 Alloc<int> AC; local
28 h(AC);
31 h<Alloc>(AC);
/external/llvm/include/llvm/Analysis/
H A DPHITransAddr.h47 AssumptionCache *AC; member in class:llvm::PHITransAddr
53 PHITransAddr(Value *addr, const DataLayout &DL, AssumptionCache *AC) argument
54 : Addr(addr), DL(DL), TLI(nullptr), AC(AC) {
H A DDemandedBits.h41 DemandedBits(Function &F, AssumptionCache &AC, DominatorTree &DT) : argument
42 F(F), AC(AC), DT(DT), Analyzed(false) {}
54 AssumptionCache &AC; member in class:llvm::DemandedBits
H A DLazyValueInfo.h34 AssumptionCache *AC = nullptr; member in class:llvm::LazyValueInfo
45 : AC(AC_), TLI(TLI_), DT(DT_) {}
47 : AC(Arg.AC), TLI(Arg.TLI), DT(Arg.DT), PImpl(Arg.PImpl) {
52 AC = Arg.AC;
H A DBasicAliasAnalysis.h44 AssumptionCache &AC; member in class:llvm::BasicAAResult
50 AssumptionCache &AC, DominatorTree *DT = nullptr,
52 : AAResultBase(), DL(DL), TLI(TLI), AC(AC), DT(DT), LI(LI) {}
55 : AAResultBase(Arg), DL(Arg.DL), TLI(Arg.TLI), AC(Arg.AC), DT(Arg.DT),
58 : AAResultBase(std::move(Arg)), DL(Arg.DL), TLI(Arg.TLI), AC(Arg.AC),
153 const DataLayout &DL, unsigned Depth, AssumptionCache *AC,
157 const DataLayout &DL, AssumptionCache *AC, DominatorTre
49 BasicAAResult(const DataLayout &DL, const TargetLibraryInfo &TLI, AssumptionCache &AC, DominatorTree *DT = nullptr, LoopInfo *LI = nullptr) argument
[all...]
/external/llvm/include/llvm/Transforms/Scalar/
H A DSROA.h57 AssumptionCache *AC; member in class:llvm::SROA
102 SROA() : C(nullptr), DT(nullptr), AC(nullptr) {}
/external/llvm/include/llvm/Transforms/Vectorize/
H A DLoopVectorize.h85 AssumptionCache *AC; member in struct:llvm::LoopVectorizePass
H A DSLPVectorizer.h52 AssumptionCache *AC = nullptr; member in struct:llvm::SLPVectorizerPass
/external/llvm/lib/Analysis/
H A DCodeMetrics.cpp65 const Loop *L, AssumptionCache *AC,
69 for (auto &AssumeVH : AC->assumptions()) {
87 const Function *F, AssumptionCache *AC,
91 for (auto &AssumeVH : AC->assumptions()) {
64 collectEphemeralValues( const Loop *L, AssumptionCache *AC, SmallPtrSetImpl<const Value *> &EphValues) argument
86 collectEphemeralValues( const Function *F, AssumptionCache *AC, SmallPtrSetImpl<const Value *> &EphValues) argument
H A DAssumptionCache.cpp81 AssumptionCache &AC = AM.getResult<AssumptionAnalysis>(F); local
84 for (auto &VH : AC.assumptions())
H A DDemandedBits.cpp91 &AC, UserI, &DT);
97 0, &AC, UserI, &DT);
251 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); local
253 DB.emplace(F, AC, DT);
394 auto &AC = AM.getResult<AssumptionAnalysis>(F); local
396 return DemandedBits(F, AC, DT);
/external/llvm/lib/Transforms/Utils/
H A DMem2Reg.cpp31 AssumptionCache &AC) {
49 PromoteMemToReg(Allocas, DT, nullptr, &AC);
58 auto &AC = AM.getResult<AssumptionAnalysis>(F); local
59 if (!promoteMemoryToRegister(F, DT, AC))
81 AssumptionCache &AC = variable
83 return promoteMemoryToRegister(F, DT, AC);
30 promoteMemoryToRegister(Function &F, DominatorTree &DT, AssumptionCache &AC) argument
H A DSimplifyInstructions.cpp38 AssumptionCache *AC) {
56 if (Value *V = SimplifyInstruction(I, DL, TLI, DT, AC)) {
107 AssumptionCache *AC = variable
109 return runImpl(F, DT, TLI, AC);
132 auto &AC = AM.getResult<AssumptionAnalysis>(F); local
133 bool Changed = runImpl(F, DT, &TLI, &AC);
37 runImpl(Function &F, const DominatorTree *DT, const TargetLibraryInfo *TLI, AssumptionCache *AC) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSizeofPointer.cpp28 AnalysisDeclContext* AC; member in class:__anon1590::WalkAST
32 : BR(br), Checker(checker), AC(ac) {}
66 PathDiagnosticLocation::createBegin(E, BR.getSourceManager(), AC);
67 BR.EmitBasicReport(AC->getDecl(), Checker,
H A DCStringSyntaxChecker.cpp36 AnalysisDeclContext* AC; member in class:__anon1580::WalkAST
86 : Checker(checker), BR(br), AC(ac) {}
145 PathDiagnosticLocation::createBegin(LenArg, BR.getSourceManager(), AC);
H A DObjCContainersASTChecker.cpp31 AnalysisDeclContext* AC; member in class:__anon1641::WalkAST
75 : BR(br), Checker(checker), AC(ac), ASTC(AC->getASTContext()),
144 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
145 BR.EmitBasicReport(AC->getDecl(), Checker, OsName.str(),
H A DVforkChecker.cpp89 ASTContext &AC = C.getASTContext(); local
90 II_vfork = &AC.Idents.get("vfork");
113 ASTContext &AC = C.getASTContext(); local
115 VforkWhitelist.insert(&AC.Idents.get(*id));
H A DVirtualCallChecker.cpp33 AnalysisDeclContext *AC; member in class:__anon1683::WalkAST
64 : Checker(checker), BR(br), AC(ac), visitingCallExpr(nullptr) {}
191 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
197 BR.EmitBasicReport(AC->getDecl(), Checker,
206 BR.EmitBasicReport(AC->getDecl(), Checker,
/external/clang/include/clang/Analysis/Analyses/
H A DDominators.h83 void buildDominatorTree(AnalysisDeclContext &AC) { argument
84 cfg = AC.getCFG();
/external/clang/lib/Driver/
H A DAction.cpp20 const char *Action::getClassName(ActionClass AC) { argument
21 switch (AC) {
/external/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp77 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache( local
120 Value *V = SimplifyInstruction(I, DL, TLI, DT, &AC);
H A DSimplifyCFGPass.cpp132 AssumptionCache *AC,
148 if (SimplifyCFG(&*BBIt++, TTI, BonusInstThreshold, AC, &LoopHeaders)) {
159 AssumptionCache *AC, int BonusInstThreshold) {
162 EverChanged |= iterativelySimplifyCFG(F, TTI, AC, BonusInstThreshold);
176 EverChanged = iterativelySimplifyCFG(F, TTI, AC, BonusInstThreshold);
192 auto &AC = AM.getResult<AssumptionAnalysis>(F); local
194 if (!simplifyFunctionCFG(F, TTI, &AC, BonusInstThreshold))
217 AssumptionCache *AC =
221 return simplifyFunctionCFG(F, TTI, AC, BonusInstThreshold);
131 iterativelySimplifyCFG(Function &F, const TargetTransformInfo &TTI, AssumptionCache *AC, unsigned BonusInstThreshold) argument
158 simplifyFunctionCFG(Function &F, const TargetTransformInfo &TTI, AssumptionCache *AC, int BonusInstThreshold) argument

Completed in 844 milliseconds

1234