Home
last modified time | relevance | path

Searched defs:AA (Results 1 – 25 of 193) sorted by relevance

12345678

/llvm-project/clang/test/CodeGen/
H A Ddecl-in-prototype.c3 const int AA = 5; variable
6 int f1(enum {AA,BB} E) { in f1()
12 int f2(enum {AA=7,BB} E) { in f2()
18 int f(void (*g)(void), enum {AA,BB} h) { in f()
/llvm-project/clang/test/CXX/temp/temp.constr/temp.constr.constr/
H A Dnon-function-templates.cpp45 struct AA struct
48 struct B struct
73 return AA<T>::getB<T[2]>(); // expected-error{{no matching function for call to 'getB'}} in foo2() argument
/llvm-project/clang/test/Index/
H A Dgetcursor-preamble.h2 struct AA { struct
3 int x;
H A Dcomment-objc-parameterized-classes.m23 @interface AA : A<id, NSObject *> interface
/llvm-project/llvm/lib/Transforms/Scalar/
H A DSink.cpp30 static bool isSafeToMove(Instruction *Inst, AliasAnalysis &AA, in isSafeToMove() argument
104 DominatorTree &DT, LoopInfo &LI, AAResults &AA) { in SinkInstruction() argument
176 AAResults &AA) { in ProcessBlock() argument
213 LoopInfo &LI, AAResults &AA) { in iterativelySinkInstructions() argument
232 auto &AA in run() local
253 auto &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); runOnFunction() local
[all...]
H A DFlattenCFGPass.cpp40 AliasAnalysis *AA; member
45 bool iterativelyFlattenCFG(Function &F, AliasAnalysis *AA) { in iterativelyFlattenCFG()
99 AliasAnalysis *AA = &AM.getResult<AAManager>(F); in run() local
H A DMergedLoadStoreMotion.cpp97 AliasAnalysis *AA = nullptr; global() member in __anon92e8c7dd0111::MergedLoadStoreMotion
362 run(Function & F,AliasAnalysis & AA) run() argument
383 auto &AA = AM.getResult<AAManager>(F); run() local
/llvm-project/clang/test/SemaObjC/
H A Dgetter-setter-defined-in-category-of-parent.m11 @interface MyParent(AA) { category
14 @implementation MyParent (AA) category
/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteKernelArguments.cpp35 AliasAnalysis *AA; member in __anon075394a10111::AMDGPUPromoteKernelArguments
154 AliasAnalysis &AA) { in run() argument
190 AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); in runOnFunction() local
211 AliasAnalysis &AA = AM.getResult<AAManager>(F); in run() local
[all...]
/llvm-project/clang/test/Sema/
H A Ddecl-in-prototype.c5 const int AA = 5; variable
7 int f1(enum {AA,BB} E) { // expected-warning {{will not be visible outside of this function}} in f1()
13 int f2(enum {AA=7,BB} E) { // expected-warning {{will not be visible outside of this function}} in f2()
51 void enum_in_fun_in_fun(void (*fp)(enum { AA, BB } e)) { // expected-warning {{will not be visible}} in enum_in_fun_in_fun()
/llvm-project/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp3.cpp3 template <class T> struct AA { struct
/llvm-project/clang/test/SemaCXX/
H A Dinvalid-if-constexpr.cpp9 int AA() { return true;} // expected-note {{'AA' declared here}} in AA() function
H A Drecovery-expr-type.cpp54 struct AA { struct
56 static constexpr int getB() { // expected-note{{candidate template ignored}} in getB()
59 static constexpr int foo2() { in foo2()
/llvm-project/clang/test/CodeGenCXX/
H A Dvirtual-base-cast.cpp7 struct AA { int a; virtual int aa(); }; struct
H A Ddependent-template-alias.cpp12 using AA = A<I>; typedef
/llvm-project/llvm/lib/Analysis/
H A DObjCARCAnalysisUtils.cpp29 AAResults &AA) { in IsPotentialRetainableObjPtr()
H A DAliasAnalysis.cpp124 for (const auto &AA : AAs) { in alias() local
159 for (const auto &AA : AAs) { in getModRefInfoMask() local
173 for (const auto &AA : AAs) { in getArgModRefInfo() local
216 for (const auto &AA : AAs) { in getModRefInfo() local
269 for (const auto &AA : AAs) { getModRefInfo() local
376 for (const auto &AA : AAs) { getMemoryEffects() local
395 for (const auto &AA : AAs) { getMemoryEffects() local
[all...]
/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroElide.cpp69 AAResults &AA; member in __anon5f9dc3d10111::CoroIdElider
105 static bool operandReferences(CallInst *CI, AllocaInst *Frame, AAResults &AA) { in operandReferences()
119 static void removeTailCallAttribute(AllocaInst *Frame, AAResults &AA) { in removeTailCallAttribute()
185 AAResults &AA, DominatorTree &DT, in CoroIdElider()
477 AAResults &AA = AM.getResult<AAManager>(F); in run() local
/llvm-project/bolt/lib/Passes/
H A DStackReachingUses.cpp79 ErrorOr<const ArgAccesses &> AA = FA.getArgAccessesFor(Inst); in preflight() local
120 ErrorOr<const ArgAccesses &> AA = FA.getArgAccessesFor(Point); in computeNext() local
/llvm-project/llvm/unittests/Analysis/
H A DAliasAnalysisTest.cpp46 AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); in runOnFunction() local
191 auto &AA = getAAResults(*F); in TEST_F() local
247 auto &AA = getAAResults(*F); in TEST_F() local
290 auto &AA = getAAResults(*F); in TEST_F() local
327 auto &AA = getAAResults(*F); in TEST_F() local
357 auto &AA = getAAResults(*F); in TEST_F() local
/llvm-project/clang/test/CXX/temp/temp.res/temp.local/
H A Dp8.cpp56 int AA, BB; // none of the below lookups should ever consider these global() variable
59 using AA = void; global() typedef
70 using AA = void; global() typedef
121 f(AA) f() argument
133 h(AA) h() argument
[all...]
/llvm-project/clang/test/CXX/temp/temp.constr/temp.constr.decl/
H A Dfunc-template-decl.cpp37 struct AA { struct
H A Dclass-template-decl.cpp47 struct AA { struct
/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/
H A DAllocationActions.cpp20 for (auto &AA : AAs) { in runFinalizeActions() local
/llvm-project/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp36 AliasAnalysis *AA; member in __anon697135bf0111::FlattenCFGOpt
56 FlattenCFGOpt(AliasAnalysis *AA) : AA(AA) {} in FlattenCFGOpt()
533 bool llvm::FlattenCFG(BasicBlock *BB, AAResults *AA) { in FlattenCFG()

12345678