Home
last modified time | relevance | path

Searched refs:BAA (Results 1 – 25 of 41) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp111 MemIntrinsic *MemSrc, BatchAAResults &BAA);
634 BatchAAResults BAA(*AA, EEA); in processStoreOfLoad() local
652 if (isModSet(BAA.getModRefInfo(&I, LoadLoc))) { in processStoreOfLoad()
708 MSSA->getWalker()->getClobberingMemoryAccess(LI, BAA))) in processStoreOfLoad()
717 std::min(SI->getAlign(), LI->getAlign()), BAA, GetCall); in processStoreOfLoad()
731 DL.getTypeStoreSize(T), BAA)) { in processStoreOfLoad()
846 BatchAAResults &BAA, in performCallSlotOptzn() argument
907 if (accessedBetween(BAA, DestLoc, MSSA->getMemoryAccess(C), in performCallSlotOptzn()
1030 if (isModOrRefSet(BAA.getModRefInfo(&I, SrcLoc)) || I.isTerminator()) in performCallSlotOptzn()
1053 ModRefInfo MR = BAA.getModRefInfo(C, DestWithSrcSize); in performCallSlotOptzn()
[all …]
H A DLoopVersioningLICM.cpp226 BatchAAResults BAA(*AA); in legalLoopMemoryAccesses() local
227 AliasSetTracker AST(BAA); in legalLoopMemoryAccesses()
H A DLICM.cpp1143 BatchAAResults &BAA, in getClobberingMemoryAccess() argument
1151 MSSA.getSkipSelfWalker()->getClobberingMemoryAccess(MA, BAA); in getClobberingMemoryAccess()
2302 BatchAAResults BAA(*AA); in noConflictingReadWrites() local
2303 auto *Source = getClobberingMemoryAccess(*MSSA, BAA, Flags, IMD); in noConflictingReadWrites()
2319 auto *MD = getClobberingMemoryAccess(*MSSA, BAA, Flags, in noConflictingReadWrites()
2341 ModRefInfo MRI = BAA.getModRefInfo(CI, MemoryLocation::get(SI)); in noConflictingReadWrites()
2350 ModRefInfo MRI = BAA.getModRefInfo(CI, SCI); in noConflictingReadWrites()
2375 BatchAAResults BAA(MSSA->getAA()); in pointerInvalidatedByLoop() local
2376 MemoryAccess *Source = getClobberingMemoryAccess(*MSSA, BAA, Flags, MU); in pointerInvalidatedByLoop()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h74 Align cpyAlign, BatchAAResults &BAA,
77 BatchAAResults &BAA);
79 BatchAAResults &BAA);
81 BatchAAResults &BAA);
89 TypeSize Size, BatchAAResults &BAA);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp121 BatchAAResults BAA; member in __anon72856b230111::MemorySSAWalkerAnnotatedWriter
125 : MSSA(M), Walker(M->getWalker()), BAA(M->getAA()) {} in MemorySSAWalkerAnnotatedWriter()
136 MemoryAccess *Clobber = Walker->getClobberingMemoryAccess(MA, BAA); in emitInstructionAnnot()
930 MemoryAccess *findClobber(BatchAAResults &BAA, MemoryAccess *Start, in findClobber() argument
932 AA = &BAA; in findClobber()
962 checkClobberSanity(Current, Result, Q.StartingLoc, MSSA, Q, BAA); in findClobber()
1022 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *MA, BatchAAResults &BAA, in getClobberingMemoryAccess() argument
1024 return Walker->getClobberingMemoryAccessBase(MA, BAA, UWL, false); in getClobberingMemoryAccess()
1028 BatchAAResults &BAA, unsigned &UWL) { in getClobberingMemoryAccess() argument
1029 return Walker->getClobberingMemoryAccessBase(MA, Loc, BAA, UWL); in getClobberingMemoryAccess()
[all …]
H A DLoopAccessAnalysis.cpp764 : TheLoop(TheLoop), BAA(*AA), AST(BAA), LI(LI), DepCands(DA), PSE(PSE), in AccessAnalysis()
767 BAA.enableCrossIterationMode(); in AccessAnalysis()
880 BatchAAResults BAA; member in __anonaf4eb2f30111::AccessAnalysis
H A DDependenceAnalysis.cpp750 BatchAAResults BAA(*AA); in underlyingObjectsAlias() local
751 BAA.enableCrossIterationMode(); in underlyingObjectsAlias()
753 if (BAA.isNoAlias(LocAS, LocBS)) in underlyingObjectsAlias()
/freebsd/contrib/llvm-project/llvm/include/llvm/
H A DLinkAllPasses.h157 llvm::BatchAAResults BAA(AA); in ForcePassLinking()
158 llvm::AliasSetTracker X(BAA); in ForcePassLinking()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSA.h860 void buildMemorySSA(BatchAAResults &BAA, IterT Blocks);
1081 BatchAAResults BAA(MSSA->getAA());
1082 return getClobberingMemoryAccess(I, BAA);
1086 BatchAAResults BAA(MSSA->getAA());
1087 return getClobberingMemoryAccess(MA, BAA);
1092 BatchAAResults BAA(MSSA->getAA());
1093 return getClobberingMemoryAccess(MA, Loc, BAA);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp253 BatchAAResults &BAA, in getMatchingValue() argument
265 MSSA->getWalker()->getClobberingMemoryAccess(LI, BAA); in getMatchingValue()
273 BatchAAResults &BAA, function_ref<MemorySSA *()> GetMSSA) { in loadCSE() argument
310 getMatchingValue(LV, Load, CurrentGeneration, BAA, GetMSSA)) { in loadCSE()
362 BatchAAResults BAA(*AA); in simplifyLoopAfterUnroll() local
363 loadCSE(L, *DT, *SE, *LI, BAA, [L, AA, DT, &MSSA]() -> MemorySSA * { in simplifyLoopAfterUnroll()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h330 BatchAAResults BAA; variable
380 Topo(SUnits, &ExitSU), AA(AA), BAA(*AA) { in SwingSchedulerDAG()
384 BAA.enableCrossIterationMode(); in SwingSchedulerDAG()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp305 BatchAAResults *BAA; member in __anon140376110111::LoopCarriedOrderDepsTracker
331 LoopCarriedOrderDepsTracker(SwingSchedulerDAG *SSD, BatchAAResults *BAA,
999 BatchAAResults &BAA, const TargetInstrInfo *TII, in hasLoopCarriedMemDep() argument
1043 if (BAA.isNoAlias( in hasLoopCarriedMemDep()
1053 if (!BAA.isNoAlias(MemoryLocation::getBeforeOrAfter(SrcObj, Src.AATags), in hasLoopCarriedMemDep()
1068 SwingSchedulerDAG *SSD, BatchAAResults *BAA, const TargetInstrInfo *TII, in LoopCarriedOrderDepsTracker() argument
1070 : DAG(SSD), BAA(BAA), SUnits(DAG->SUnits), N(SUnits.size()), in LoopCarriedOrderDepsTracker()
1110 if (hasLoopCarriedMemDep(Src, Dst, *BAA, TII, TRI, DAG, PerformCheapCheck)) in addDependenciesBetweenSUs()
1171 LoopCarriedOrderDepsTracker LCODTracker(this, &BAA, TII, TRI); in addLoopCarriedDependences()
H A DMachineInstr.cpp1561 BatchAAResults BAA(*AA); in mayAlias() local
1562 return mayAlias(&BAA, Other, UseTBAA); in mayAlias()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp3700 } else if (const auto *BAA = getAttr<BuiltinAliasAttr>()) { in getBuiltinID() local
3701 BuiltinID = BAA->getBuiltinName()->getBuiltinID(); in getBuiltinID()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp5923 if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) { in BuildJobsForActionNoCache() local
5925 StringRef ArchName = BAA->getArchName(); in BuildJobsForActionNoCache()
5934 return BuildJobsForAction(C, *BAA->input_begin(), TC, ArchName, AtTopLevel, in BuildJobsForActionNoCache()
/freebsd/share/ctypedef/
H A Dzh_CN.eucCN.src1986 <CJK_UNIFIED_IDEOGRAPH-5BAA>;/
5371 <CJK_UNIFIED_IDEOGRAPH-5BAA>;/
8978 <CJK_UNIFIED_IDEOGRAPH-5BAA>;/
H A Dja_JP.eucJP.src5383 <CJK_UNIFIED_IDEOGRAPH-6BAA>;/
7710 <CJK_UNIFIED_IDEOGRAPH-7BAA>;/
12309 <CJK_UNIFIED_IDEOGRAPH-9BAA>;/
18430 <CJK_UNIFIED_IDEOGRAPH-6BAA>;/
20757 <CJK_UNIFIED_IDEOGRAPH-7BAA>;/
25356 <CJK_UNIFIED_IDEOGRAPH-9BAA>;/
31535 <CJK_UNIFIED_IDEOGRAPH-6BAA>;/
33862 <CJK_UNIFIED_IDEOGRAPH-7BAA>;/
38461 <CJK_UNIFIED_IDEOGRAPH-9BAA>;/
/freebsd/tools/tools/locale/etc/final-maps/
H A Dmap.eucCN3916 <CJK_UNIFIED_IDEOGRAPH-5BAA> \xCF\xDC
4893 <CJK_UNIFIED_IDEOGRAPH-8BAA> \xDA\xA8
6371 <CJK_UNIFIED_IDEOGRAPH-6BAA> \xE9\xEC
7311 <CJK_UNIFIED_IDEOGRAPH-7BAA> \xF3\xEC
H A Dmap.GB23123916 <CJK_UNIFIED_IDEOGRAPH-5BAA> \xCF\xDC
4893 <CJK_UNIFIED_IDEOGRAPH-8BAA> \xDA\xA8
6371 <CJK_UNIFIED_IDEOGRAPH-6BAA> \xE9\xEC
7311 <CJK_UNIFIED_IDEOGRAPH-7BAA> \xF3\xEC
H A Dwidths.txt4853 <CJK_UNIFIED_IDEOGRAPH-3BAA> 2
8949 <CJK_UNIFIED_IDEOGRAPH-4BAA> 2
13045 <CJK_UNIFIED_IDEOGRAPH-5BAA> 2
17141 <CJK_UNIFIED_IDEOGRAPH-6BAA> 2
21237 <CJK_UNIFIED_IDEOGRAPH-7BAA> 2
25333 <CJK_UNIFIED_IDEOGRAPH-8BAA> 2
29429 <CJK_UNIFIED_IDEOGRAPH-9BAA> 2
47434 <TANGUT_IDEOGRAPH-17BAA> 2
51530 <KHITAN_SMALL_SCRIPT_CHARACTER-18BAA> 2
57285 <CJK_UNIFIED_IDEOGRAPH-20BAA> 2
[all …]
H A Dmap.SJIS3389 <CJK_UNIFIED_IDEOGRAPH-7BAA> \x92\x5c
4190 <CJK_UNIFIED_IDEOGRAPH-9BAA> \x96\x8e
5852 <CJK_UNIFIED_IDEOGRAPH-6BAA> \x9f\x6f
/freebsd/share/colldef/
H A Dzh_CN.GB2312.src13096 <CJK_UNIFIED_IDEOGRAPH-7BAA> <X9234>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-7BAA>
16657 <CJK_UNIFIED_IDEOGRAPH-8BAA> <XE5B8>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-8BAA>
17650 <CJK_UNIFIED_IDEOGRAPH-5BAA> "<XFADC><XA300>";<X05>;"<X05><XC0>";<CJK_UNIFIED…
18176 <CJK_UNIFIED_IDEOGRAPH-6BAA> "<XFAEA><XCB00>";<X05>;"<X05><XC0>";<CJK_UNIFIED…
H A Dzh_CN.eucCN.src13096 <CJK_UNIFIED_IDEOGRAPH-7BAA> <X9234>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-7BAA>
16657 <CJK_UNIFIED_IDEOGRAPH-8BAA> <XE5B8>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-8BAA>
17650 <CJK_UNIFIED_IDEOGRAPH-5BAA> "<XFADC><XA300>";<X05>;"<X05><XC0>";<CJK_UNIFIED…
18176 <CJK_UNIFIED_IDEOGRAPH-6BAA> "<XFAEA><XCB00>";<X05>;"<X05><XC0>";<CJK_UNIFIED…
/freebsd/crypto/krb5/src/lib/krb5/unicode/
H A DUnicodeData.txt1372 0628;ARABIC LETTER BEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA;;;;
1440 067B;ARABIC LETTER BEEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA WITH TWO DOTS VERTICAL BELOW;;;;
1445 0680;ARABIC LETTER BEHEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA WITH FOUR DOTS BELOW;;;;
1645 0784;THAANA LETTER BAA;Lo;0;AL;;;;;N;;;;;
2140 0BAA;TAMIL LETTER PA;Lo;0;L;;;;;N;;;;;
3328 1263;ETHIOPIC SYLLABLE BAA;Lo;0;L;;;;;N;;;;;
11295 FE8F;ARABIC LETTER BEH ISOLATED FORM;Lo;0;AL;<isolated> 0628;;;;N;GLYPH FOR ISOLATE ARABIC BAA;;;;
11296 FE90;ARABIC LETTER BEH FINAL FORM;Lo;0;AL;<final> 0628;;;;N;GLYPH FOR FINAL ARABIC BAA;;;;
11297 FE91;ARABIC LETTER BEH INITIAL FORM;Lo;0;AL;<initial> 0628;;;;N;GLYPH FOR INITIAL ARABIC BAA;;;;
11298 FE92;ARABIC LETTER BEH MEDIAL FORM;Lo;0;AL;<medial> 0628;;;;N;GLYPH FOR MEDIAL ARABIC BAA;;;;
/freebsd/crypto/heimdal/lib/wind/
H A DUnicodeData.txt1424 0628;ARABIC LETTER BEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA;;;;
1495 067B;ARABIC LETTER BEEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA WITH TWO DOTS VERTICAL BELOW;;;;
1500 0680;ARABIC LETTER BEHEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA WITH FOUR DOTS BELOW;;;;
1709 0784;THAANA LETTER BAA;Lo;0;AL;;;;;N;;;;;
2215 0BAA;TAMIL LETTER PA;Lo;0;L;;;;;N;;;;;
3413 1263;ETHIOPIC SYLLABLE BAA;Lo;0;L;;;;;N;;;;;
11747 FE8F;ARABIC LETTER BEH ISOLATED FORM;Lo;0;AL;<isolated> 0628;;;;N;GLYPH FOR ISOLATE ARABIC BAA;;;;
11748 FE90;ARABIC LETTER BEH FINAL FORM;Lo;0;AL;<final> 0628;;;;N;GLYPH FOR FINAL ARABIC BAA;;;;
11749 FE91;ARABIC LETTER BEH INITIAL FORM;Lo;0;AL;<initial> 0628;;;;N;GLYPH FOR INITIAL ARABIC BAA;;;;
11750 FE92;ARABIC LETTER BEH MEDIAL FORM;Lo;0;AL;<medial> 0628;;;;N;GLYPH FOR MEDIAL ARABIC BAA;;;;

12