Searched defs:AA (Results 76 - 95 of 95) sorted by relevance

1234

/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp86 AliasAnalysis *AA; member in class:__anon25794::RegisterCoalescer
756 if (!TII->isTriviallyReMaterializable(DefMI, AA))
759 if (!DefMI->isSafeToMove(TII, AA, SawStore))
2214 AA = &getAnalysis<AliasAnalysis>();
H A DScheduleDAGInstrs.cpp47 cl::desc("Enable use of AA during MI GAD construction"));
462 static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) { argument
465 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
512 static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI, argument
531 // To this point analysis is generic. From here on we do need AA.
532 if (!AA)
541 // The following interface to AA is fashioned after DAGCombiner::isAlias
553 // FIXME: Even before we go to AA we can reason locally about some
564 AliasAnalysis::AliasResult AAResult = AA->alias(
576 iterateChainSucc(AliasAnalysis *AA, cons argument
621 adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI, SUnit *SU, SUnit *ExitSU, std::set<SUnit *> &CheckList, unsigned LatencyToLoad) argument
652 addChainDependency(AliasAnalysis *AA, const MachineFrameInfo *MFI, SUnit *SUa, SUnit *SUb, std::set<SUnit *> &RejectList, unsigned TrueMemOrderLatency = 0, bool isNormalMemory = false) argument
734 buildSchedGraph(AliasAnalysis *AA, RegPressureTracker *RPTracker, PressureDiffs *PDiffs) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h497 AliasAnalysis *AA; member in class:llvm::SelectionDAGBuilder
H A DDAGCombiner.cpp110 // AA - Used for DAG load/store alias analysis.
111 AliasAnalysis &AA; member in class:__anon25798::DAGCombiner
353 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {
11565 AA.alias(AliasAnalysis::Location(Op0->getMemOperand()->getValue(),
11742 void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA, argument
11746 DAGCombiner(*this, AA, OptLevel).Run(Level);
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp133 AA = &getAnalysis<AliasAnalysis>();
360 void DependenceAnalysis::Constraint::setLine(const SCEV *AA, argument
365 A = AA;
632 AliasAnalysis::AliasResult underlyingObjectsAlias(AliasAnalysis *AA, argument
637 return AA->alias(AObj, AA->getTypeStoreSize(AObj->getType()),
638 BObj, AA->getTypeStoreSize(BObj->getType()));
3300 switch (underlyingObjectsAlias(AA, DstPtr, SrcPtr)) {
3745 assert(underlyingObjectsAlias(AA, DstPtr, SrcPtr) ==
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp109 AliasAnalysis *AA; member in class:__anon26280::ValueTable
130 void setAliasAnalysis(AliasAnalysis* A) { AA = A; }
131 AliasAnalysis *getAliasAnalysis() const { return AA; }
279 if (AA->doesNotAccessMemory(C)) {
285 } else if (AA->onlyReadsMemory(C)) {
958 // a must alias. AA must have gotten confused.
973 // anything to the load. In this case, they really don't alias at all, AA
1302 AliasAnalysis *AA = gvn.getAliasAnalysis(); local
1305 AA->copyValue(LI, NewPHIs[i]);
1314 AA
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp206 AA = &P->getAnalysis<AliasAnalysis>();
220 AliasAnalysis *AA; member in struct:__anon26367::BBVectorize
442 AA = &getAnalysis<AliasAnalysis>();
844 (void) SimplifyInstructionsInBlock(&BB, DL, AA->getTargetLibraryInfo());
1213 if (W->aliasesUnknownInst(J, *AA)) {
1250 AliasSetTracker WriteSet(*AA);
1478 AliasSetTracker WriteSet(*AA);
2817 AA->replaceWithNewValue(I, K);
2818 AA->replaceWithNewValue(J, K);
2875 AliasSetTracker WriteSet(*AA);
[all...]
H A DSLPVectorizer.cpp395 : F(Func), SE(Se), DL(Dl), TTI(Tti), TLI(TLi), AA(Aa), LI(Li), DT(Dt),
462 /// \returns the AA location that is being access by the instruction.
585 AliasAnalysis *AA; member in class:__anon26372::BoUpSLP
1425 return AA->getLocation(SI);
1427 return AA->getLocation(LI);
1507 if (!A.Ptr || !B.Ptr || AA->alias(A, B))
2146 AliasAnalysis *AA; member in struct:__anon26372::SLPVectorizer
2159 AA = &getAnalysis<AliasAnalysis>();
2184 BoUpSLP R(&F, SE, DL, TTI, TLI, AA, LI, DT);
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttinterp.c993 /* AA */ PACK( 1, 0 ),
1039 /* INS_$AA */ PACK( 0, 0 ),
1272 "AA",
1318 "INS_$AA",
4194 /* AA[]: Adjust Angle */
7963 /* AA */ Ins_AA,
8293 FT_Short AA, BB; local
8296 AA = (FT_Short)( ( opcode & 1 ) << 14 );
8297 BB = (FT_Short)( AA ^ 0x4000 );
8301 CUR.GS.projVector.x = AA;
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp254 const AliasAttr *AA = D->getAttr<AliasAttr>(); local
261 Diags.Report(AA->getLocation(), diag::err_cyclic_alias);
264 Diags.Report(AA->getLocation(), diag::err_alias_to_undefined);
288 Diags.Report(AA->getLocation(), diag::warn_alias_to_weak_alias)
1125 const AnnotateAttr *AA,
1128 llvm::Constant *AnnoGV = EmitAnnotationString(AA->getAnnotation()),
1180 const AliasAttr *AA = VD->getAttr<AliasAttr>(); local
1181 assert(AA && "No alias?");
1186 llvm::GlobalValue *Entry = GetGlobalValue(AA->getAliasee());
1194 Aliasee = GetOrCreateLLVMFunction(AA
1124 EmitAnnotateAttr(llvm::GlobalValue *GV, const AnnotateAttr *AA, SourceLocation L) argument
2340 const AliasAttr *AA = D->getAttr<AliasAttr>(); local
[all...]
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2764 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr); local
2765 AA->setPackExpansion(IsPackExpansion);
2766 D->addAttr(AA);
2799 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true, local
2801 AA->setPackExpansion(IsPackExpansion);
2802 D->addAttr(AA);
2809 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS, local
2811 AA->setPackExpansion(IsPackExpansion);
2812 D->addAttr(AA);
/external/freetype/src/truetype/
H A Dttinterp.c990 /* AA */ PACK( 1, 0 ),
1036 /* INS_$AA */ PACK( 0, 0 ),
1269 "AA",
1315 "INS_$AA",
4305 /* AA[]: Adjust Angle */
8067 /* AA */ Ins_AA,
8397 FT_Short AA, BB; local
8400 AA = (FT_Short)( ( opcode & 1 ) << 14 );
8401 BB = (FT_Short)( AA ^ 0x4000 );
8405 CUR.GS.projVector.x = AA;
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttinterp.c993 /* AA */ PACK( 1, 0 ),
1039 /* INS_$AA */ PACK( 0, 0 ),
1272 "AA",
1318 "INS_$AA",
4194 /* AA[]: Adjust Angle */
7967 /* AA */ Ins_AA,
8297 FT_Short AA, BB; local
8300 AA = (FT_Short)( ( opcode & 1 ) << 14 );
8301 BB = (FT_Short)( AA ^ 0x4000 );
8305 CUR.GS.projVector.x = AA;
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_ppc_defs.c3271 static UChar* mkFormI ( UChar* p, UInt LI, UInt AA, UInt LK )
3275 vassert(AA < 0x2);
3277 theInstr = ((18<<26) | (LI<<2) | (AA<<1) | (LK));
3284 UInt BD, UInt AA, UInt LK )
3290 vassert(AA < 0x2);
3293 (BD<<2) | (AA<<1) | (LK));
3283 mkFormB( UChar* p, UInt BO, UInt BI, UInt BD, UInt AA, UInt LK ) argument
/external/clang/tools/libclang/
H A DCIndex.cpp3502 const AnnotateAttr *AA = cast<AnnotateAttr>(cxcursor::getCursorAttr(C)); local
3503 return cxstring::createDup(AA->getAnnotation());
3507 const AsmLabelAttr *AA = cast<AsmLabelAttr>(cxcursor::getCursorAttr(C)); local
3508 return cxstring::createDup(AA->getLabel());
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 703 milliseconds

1234