/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopRotation.cpp | 40 LoopStandardAnalysisResults &AR, in run() argument 44 const SimplifyQuery SQ = getBestSimplifyQuery(AR, DL); in run() 47 if (AR.MSSA) in run() 48 MSSAU = MemorySSAUpdater(AR.MSSA); in run() 49 bool Changed = LoopRotation(&L, &AR.LI, &AR.TTI, &AR.AC, &AR.DT, &AR.SE, in run() 56 if (AR.MSSA && VerifyMemorySSA) in run() 57 AR.MSSA->verifyMemorySSA(); in run() 60 if (AR.MSSA) in run()
|
D | LoopInstSimplify.cpp | 225 LoopStandardAnalysisResults &AR, in run() argument 228 if (AR.MSSA) { in run() 229 MSSAU = MemorySSAUpdater(AR.MSSA); in run() 231 AR.MSSA->verifyMemorySSA(); in run() 233 if (!simplifyLoopInst(L, AR.DT, AR.LI, AR.AC, AR.TLI, in run() 239 if (AR.MSSA) in run()
|
D | LoopPassManager.cpp | 26 LoopStandardAnalysisResults &AR, LPMUpdater &U) { in run() argument 34 PassInstrumentation PI = AM.getResult<PassInstrumentationAnalysis>(L, AR); in run() 44 PreservedAnalyses PassPA = Pass->run(L, AM, AR, U); in run() 61 assert(L.isRecursivelyLCSSAForm(AR.DT, AR.LI) && in run()
|
D | LoopStrengthReduce.cpp | 408 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) in DoInitialMatch() local 409 if (!AR->getStart()->isZero() && AR->isAffine()) { in DoInitialMatch() 410 DoInitialMatch(AR->getStart(), L, Good, Bad, SE); in DoInitialMatch() 411 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0), in DoInitialMatch() 412 AR->getStepRecurrence(SE), in DoInitialMatch() 414 AR->getLoop(), SCEV::FlagAnyWrap), in DoInitialMatch() 631 static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) { in isAddRecSExtable() argument 633 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1); in isAddRecSExtable() 634 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy)); in isAddRecSExtable() 691 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) { in getExactSDiv() local [all …]
|
D | LoopDeletion.cpp | 210 LoopStandardAnalysisResults &AR, in run() argument 216 auto Result = deleteLoopIfDead(&L, AR.DT, AR.SE, AR.LI); in run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | IVUsers.cpp | 41 LoopStandardAnalysisResults &AR) { in run() argument 42 return IVUsers(&L, &AR.AC, &AR.LI, &AR.DT, &AR.SE); in run() 63 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in isInteresting() local 66 if (AR->getLoop() == L) in isInteresting() 67 return AR->isAffine() || in isInteresting() 69 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); in isInteresting() 73 return isInteresting(AR->getStart(), I, L, SE, LI) && in isInteresting() 74 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); in isInteresting() 256 auto NormalizePred = [&](const SCEVAddRecExpr *AR) { in AddUsersImpl() argument 257 auto *L = AR->getLoop(); in AddUsersImpl() [all …]
|
D | LoopCacheAnalysis.cpp | 77 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(&AccessFn); in isOneDimensionalArray() local 78 if (!AR || !AR->isAffine()) in isOneDimensionalArray() 81 assert(AR->getLoop() && "AR should have a loop"); in isOneDimensionalArray() 84 const SCEV *Start = AR->getStart(); in isOneDimensionalArray() 85 const SCEV *Step = AR->getStepRecurrence(SE); in isOneDimensionalArray() 93 return AR->getStepRecurrence(SE) == &ElemSize; in isOneDimensionalArray() 406 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LastSubscript); in getLastCoefficient() local 407 return AR->getStepRecurrence(SE); in getLastCoefficient() 412 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(&Subscript); in isCoeffForLoopZeroOrInvariant() local 413 return (AR != nullptr) ? AR->getLoop() != &L in isCoeffForLoopZeroOrInvariant() [all …]
|
D | ScalarEvolutionNormalization.cpp | 47 NormalizeDenormalizeRewriter::visitAddRecExpr(const SCEVAddRecExpr *AR) { in visitAddRecExpr() argument 50 transform(AR->operands(), std::back_inserter(Operands), in visitAddRecExpr() 53 if (!Pred(AR)) in visitAddRecExpr() 54 return SE.getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagAnyWrap); in visitAddRecExpr() 93 return SE.getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagAnyWrap); in visitAddRecExpr() 99 auto Pred = [&](const SCEVAddRecExpr *AR) { in normalizeForPostIncUse() argument 100 return Loops.count(AR->getLoop()); in normalizeForPostIncUse() 113 auto Pred = [&](const SCEVAddRecExpr *AR) { in denormalizeForPostIncUse() argument 114 return Loops.count(AR->getLoop()); in denormalizeForPostIncUse()
|
D | AliasAnalysisEvaluator.cpp | 44 static void PrintResults(AliasResult AR, bool P, const Value *V1, in PrintResults() argument 56 errs() << " " << AR << ":\t" << o1 << ", " << o2 << "\n"; in PrintResults() 76 static inline void PrintLoadStoreResults(AliasResult AR, bool P, in PrintLoadStoreResults() argument 80 errs() << " " << AR << ": " << *V1 << " <-> " << *V2 << '\n'; in PrintLoadStoreResults() 154 AliasResult AR = AA.alias(*I1, I1Size, *I2, I2Size); in runInternal() local 155 switch (AR) { in runInternal() 157 PrintResults(AR, PrintNoAlias, *I1, *I2, F.getParent()); in runInternal() 161 PrintResults(AR, PrintMayAlias, *I1, *I2, F.getParent()); in runInternal() 165 PrintResults(AR, PrintPartialAlias, *I1, *I2, F.getParent()); in runInternal() 169 PrintResults(AR, PrintMustAlias, *I1, *I2, F.getParent()); in runInternal() [all …]
|
D | AliasAnalysis.cpp | 411 raw_ostream &llvm::operator<<(raw_ostream &OS, AliasResult AR) { in operator <<() argument 412 switch (AR) { in operator <<() 448 AliasResult AR = alias(MemoryLocation::get(L), Loc, AAQI); in getModRefInfo() local 449 if (AR == NoAlias) in getModRefInfo() 451 if (AR == MustAlias) in getModRefInfo() 471 AliasResult AR = alias(MemoryLocation::get(S), Loc, AAQI); in getModRefInfo() local 474 if (AR == NoAlias) in getModRefInfo() 483 if (AR == MustAlias) in getModRefInfo() 516 AliasResult AR = alias(MemoryLocation::get(V), Loc, AAQI); in getModRefInfo() local 519 if (AR == NoAlias) in getModRefInfo() [all …]
|
D | IVDescriptors.cpp | 936 const SCEVAddRecExpr *AR, in getCastsForInductionPHI() argument 941 assert(PSE.getSCEV(PN) == AR && "Unexpected phi node SCEV expression"); in getCastsForInductionPHI() 942 const Loop *L = AR->getLoop(); in getCastsForInductionPHI() 988 if (AddRec && PSE.areAddRecsEqualWithPreds(AddRec, AR)) in getCastsForInductionPHI() 1024 const auto *AR = dyn_cast<SCEVAddRecExpr>(PhiScev); in isInductionPHI() local 1027 if (Assume && !AR) in isInductionPHI() 1028 AR = PSE.getAsAddRec(Phi); in isInductionPHI() 1030 if (!AR) { in isInductionPHI() 1042 if (PhiScev != AR && SymbolicPhi) { in isInductionPHI() 1044 if (getCastsForInductionPHI(PSE, SymbolicPhi, AR, Casts)) in isInductionPHI() [all …]
|
D | DDG.cpp | 270 LoopStandardAnalysisResults &AR) { in run() argument 272 DependenceInfo DI(F, &AR.AA, &AR.SE, &AR.LI); in run() 273 return std::make_unique<DataDependenceGraph>(L, AR.LI, DI); in run() 278 LoopStandardAnalysisResults &AR, in run() argument 281 OS << *AM.getResult<DDGAnalysis>(L, AR); in run()
|
D | LoopAccessAnalysis.cpp | 204 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Sc); in insert() local 205 assert(AR && "Invalid addrec expression"); in insert() 208 ScStart = AR->getStart(); in insert() 209 ScEnd = AR->evaluateAtIteration(Ex, *SE); in insert() 210 const SCEV *Step = AR->getStepRecurrence(*SE); in insert() 222 ScEnd = SE->getUMaxExpr(AR->getStart(), ScEnd); in insert() 629 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(PtrScev); in hasComputableBounds() local 631 if (!AR && Assume) in hasComputableBounds() 632 AR = PSE.getAsAddRec(Ptr); in hasComputableBounds() 634 if (!AR) in hasComputableBounds() [all …]
|
D | ScalarEvolution.cpp | 272 const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(this); in print() local 273 OS << "{" << *AR->getOperand(0); in print() 274 for (unsigned i = 1, e = AR->getNumOperands(); i != e; ++i) in print() 275 OS << ",+," << *AR->getOperand(i); in print() 277 if (AR->hasNoUnsignedWrap()) in print() 279 if (AR->hasNoSignedWrap()) in print() 281 if (AR->hasNoSelfWrap() && in print() 282 !AR->getNoWrapFlags((NoWrapFlags)(FlagNUW | FlagNSW))) in print() 284 AR->getLoop()->getHeader()->printAsOperand(OS, /*PrintType=*/false); in print() 1444 static const SCEV *getPreStartForExtend(const SCEVAddRecExpr *AR, Type *Ty, in getPreStartForExtend() argument [all …]
|
D | MemorySSA.cpp | 254 Optional<AliasResult> AR; member 268 Optional<AliasResult> AR; in instructionClobbersQuery() local 282 AR = AA.alias(MemoryLocation(II->getArgOperand(1)), UseLoc); in instructionClobbersQuery() 283 return {AR != NoAlias, AR}; in instructionClobbersQuery() 301 AR = isMustSet(I) ? MustAlias : MayAlias; in instructionClobbersQuery() 302 return {isModOrRefSet(I), AR}; in instructionClobbersQuery() 310 AR = isMustSet(I) ? MustAlias : MayAlias; in instructionClobbersQuery() 311 return {isModSet(I), AR}; in instructionClobbersQuery() 346 Optional<AliasResult> AR = MayAlias; member 546 Optional<AliasResult> AR; member [all …]
|
D | LoopUnrollAnalyzer.cpp | 37 auto *AR = dyn_cast<SCEVAddRecExpr>(S); in simplifyInstWithSCEV() local 38 if (!AR || AR->getLoop() != L) in simplifyInstWithSCEV() 41 const SCEV *ValueAtIteration = AR->evaluateAtIteration(IterationNumber, SE); in simplifyInstWithSCEV()
|
/third_party/ltp/include/mk/ |
D | lib.mk | 69 $(if $(AR),$(AR),ar) -rc "$@" $^ 73 @$(if $(AR),$(AR),ar) -rc "$@" $^
|
/third_party/elfutils/src/ |
D | make-debug-archive.in | 16 AR=${AR:-@AR@} 129 (cd "$outdir" && $LS | $XARGS $AR cq "$new_archive") &&
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonVExtract.cpp | 107 Register AR = in runOnMachineFunction() local 126 unsigned FiOpc = AR != 0 ? Hexagon::PS_fia : Hexagon::PS_fi; in runOnMachineFunction() 128 if (AR) in runOnMachineFunction() 129 MIB.addReg(AR); in runOnMachineFunction() 181 if (AR) { in runOnMachineFunction() 183 MachineInstr *AlignaI = MRI.getVRegDef(AR); in runOnMachineFunction()
|
/third_party/ltp/testcases/kernel/mce-test/tsrc/ |
D | tcases.c | 30 R(AR), 37 #define AR MCI_STATUS_AR macro 72 TEST(VAL|UC|PCC|EN|S|AR, PANIC); in test() 78 TEST(VAL|UC|EN|S|AR, PANIC); in test()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/build/ |
D | Makefile | 3 AR = arm-himix410-linux-ar macro 8 AR = ../../../../prebuilts/gcc/linux-x86/arm/arm-linux-ohoseabi-gcc/bin/arm-linux-ohoseabi-ar macro 16 AR := $(COMPILER_DIR)/bin/llvm-ar macro 54 $(AR) -crs $@ objs/*.o
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/build/ |
D | Makefile | 3 AR = arm-himix410-linux-ar macro 8 AR = ../../../../prebuilts/gcc/linux-x86/arm/arm-linux-ohoseabi-gcc/bin/arm-linux-ohoseabi-ar macro 16 AR := $(COMPILER_DIR)/bin/llvm-ar macro 54 $(AR) -crs $@ objs/*.o
|
/third_party/zlib/ |
D | configure | 50 AR=${AR-"${CROSS_PREFIX}ar"} 51 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log 53 AR=${AR-"ar"} 54 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log 256 AR="libtool" 258 AR="/usr/bin/libtool" 298 AR="cc" 839 echo AR = $AR >> configure.log 880 /^AR *=/s#=.*#=$AR# 911 /^AR *=/s#=.*#=$AR#
|
/third_party/zlib/win32/ |
D | Makefile.bor | 17 AR = tlib 85 $(AR) $(ZLIB_LIB) $(OBJP1) 86 $(AR) $(ZLIB_LIB) $(OBJP2) 87 $(AR) $(ZLIB_LIB) $(OBJPA)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ImplicitNullChecks.cpp | 317 for (MCRegAliasIterator AR(Reg, TRI, /*IncludeSelf*/ true); AR.isValid(); in AnyAliasLiveIn() local 318 ++AR) in AnyAliasLiveIn() 319 if (MBB->isLiveIn(*AR)) in AnyAliasLiveIn() 381 AliasResult AR = areMemoryOpsAliased(MI, PrevMI); in isSuitableMemoryOp() local 382 if (AR == AR_WillAliasEverything) in isSuitableMemoryOp() 384 if (AR == AR_MayAlias) in isSuitableMemoryOp()
|