HomeSort by: relevance | last modified time | path
    Searched defs:AA (Results 1 - 25 of 107) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
MemCpyOptimizer.h 45 AAResults *AA = nullptr;
58 AAResults *AA, AssumptionCache *AC, DominatorTree *DT,
JumpThreading.h 82 AAResults *AA;
103 AAResults *AA, DomTreeUpdater *DTU, bool HasProfileData,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysis.h 52 AAResults *AA;
70 void setAA(AAResults *aa) { AA = aa; }
72 AAResults *getAA() const { return AA; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Vectorize/
SLPVectorizer.h 67 AAResults *AA = nullptr;
LoopVectorize.h 149 AAResults *AA;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
FlattenCFGPass.cpp 40 AliasAnalysis *AA;
56 static bool iterativelyFlattenCFG(Function &F, AliasAnalysis *AA) {
74 if (FlattenCFG(BB, AA))
83 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
86 while (iterativelyFlattenCFG(F, AA)) {
Sink.cpp 35 static bool isSafeToMove(Instruction *Inst, AliasAnalysis &AA,
46 if (isModSet(AA.getModRefInfo(S, Loc)))
61 if (isModSet(AA.getModRefInfo(S, Call)))
109 DominatorTree &DT, LoopInfo &LI, AAResults &AA) {
118 if (!isSafeToMove(Inst, AA, Stores))
180 AAResults &AA) {
208 if (SinkInstruction(Inst, Stores, DT, LI, AA)) {
220 LoopInfo &LI, AAResults &AA) {
228 MadeChange |= ProcessBlock(I, DT, LI, AA);
239 auto &AA = AM.getResult<AAManager>(F)
    [all...]
  /src/sys/dev/wscons/
mra.c 58 #define AA(p, s, i) (*((const int *)(((const char *)(p)) + (s) * (i))))
59 #define X1(i) AA(x1, x1s, i)
60 #define X2(i) AA(x2, x2s, i)
61 #define Y(i) AA(y, ys, i)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopAnalysisManager.h 53 AAResults &AA;
MemoryDependenceAnalysis.h 307 /// The AA tags associated with dereferences of the pointer.
358 /// Current AA implementation, just a cache.
359 AAResults &AA;
373 MemoryDependenceResults(AAResults &AA, AssumptionCache &AC,
376 : AA(AA), AC(AC), TLI(TLI), DT(DT), PV(PV),
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
DFAPacketizer.h 116 AAResults *AA;
130 AAResults *AA);
LiveIntervals.h 59 AAResults *AA;
216 return AA;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 66 /// AA - AAResults for making memory reference queries.
67 AAResults *AA;
70 ScheduleDAGVLIW(MachineFunction &mf, AAResults *aa,
72 : ScheduleDAGSDNodes(mf), AvailableQueue(availqueue), AA(aa) {
98 BuildSchedGraph(AA);
274 return new ScheduleDAGVLIW(*IS->MF, IS->AA, new ResourcePriorityQueue(IS));
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64LoadStoreOptimizer.cpp 116 AliasAnalysis *AA;
1224 AliasAnalysis *AA) {
1226 if (MIa.mayAlias(AA, *MIb, /*UseTBAA*/ false))
1286 if (MI.mayStore() && LoadMI.mayAlias(AA, MI, /*UseTBAA*/ false))
1697 !mayAlias(MI, MemInsns, AA)) {
1710 !mayAlias(FirstMI, MemInsns, AA)) {
2274 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
  /src/external/apache2/llvm/dist/llvm/tools/opt/
NewPMDriver.cpp 75 AAPipeline("aa-pipeline",
362 // a custom pipeline of AA passes with it.
363 AAManager AA;
365 if (auto Err = PB.parseAAPipeline(AA, AAPipeline)) {
371 // For compatibility with the legacy PM AA pipeline.
372 // AAResultsWrapperPass by default provides basic-aa in the legacy PM
373 // unless -disable-basic-aa is specified.
374 // TODO: remove this once tests implicitly requiring basic-aa use -passes= and
375 // -aa-pipeline=basic-aa
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
md4.c 74 uint32_t AA, BB, CC, DD;
76 AA = A;
147 A += AA;
md5.c 76 uint32_t AA, BB, CC, DD;
78 AA = A;
171 A += AA;
sha.c 77 temp = cshift(AA, 5) + f(BB,CC,DD) + EE + data[t] + k; \
81 BB = AA; \
82 AA = temp; \
88 uint32_t AA, BB, CC, DD, EE;
92 AA = A;
195 A += AA;
sha256.c 99 uint32_t AA, BB, CC, DD, EE, FF, GG, HH;
103 AA = A;
122 T2 = Sigma0(AA) + Maj(AA,BB,CC);
130 BB = AA;
131 AA = T1 + T2;
134 A += AA;
sha512.c 123 uint64_t AA, BB, CC, DD, EE, FF, GG, HH;
127 AA = A;
146 T2 = Sigma0(AA) + Maj(AA,BB,CC);
154 BB = AA;
155 AA = T1 + T2;
158 A += AA;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
DFAPacketizer.cpp 107 AAResults *AA;
113 AAResults *AA);
131 AAResults *AA)
132 : ScheduleDAGInstrs(MF, &MLI), AA(AA) {
144 buildSchedGraph(AA);
149 MachineLoopInfo &mli, AAResults *aa)
150 : MF(mf), TII(mf.getSubtarget().getInstrInfo()), AA(aa) {
153 VLIWScheduler = new DefaultVLIWScheduler(MF, mli, AA);
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
compile-cplus-anonymous.cc 20 char aa; member in union:__anon20956::__anon20958
44 A () : e (AA)
51 enum {AA = 10, BB, CC, DD} e;
compile-cplus-member.cc 26 typedef enum {AA = 40, AB, AC, AD} ANON_E;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
compile-cplus-anonymous.cc 20 char aa; member in union:__anon600::__anon602
44 A () : e (AA)
51 enum {AA = 10, BB, CC, DD} e;
compile-cplus-member.cc 26 typedef enum {AA = 40, AB, AC, AD} ANON_E;

Completed in 39 milliseconds

1 2 3 4 5