Home
last modified time | relevance | path

Searched refs:AR (Results 1 – 25 of 1015) sorted by relevance

12345678910>>...41

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dstore-private.ll8 ; EG: MOV {{[\* ]*}}{{T[0-9]+\.[XYZW]}}, T(0 + AR.x).X+,
10 ; EG: MOV {{[\* ]*}}T(0 + AR.x).X+,
13 ; CM: MOV {{[\* ]*}}{{T[0-9]+\.[XYZW]}}, T(0 + AR.x).X+,
15 ; CM: MOV {{[\* ]*}}T(0 + AR.x).X+,
28 ; EG: MOVA_INT * AR.x (MASKED)
29 ; EG: MOV [[OLD:T[0-9]\.[XYZW]]], {{.*}}AR.x
44 ; EG: MOVA_INT * AR.x (MASKED), [[ADDRESS]]
45 ; EG: MOV * T(0 + AR.x).X+, [[RES]]
59 ; EG: MOVA_INT * AR.x (MASKED)
60 ; EG: MOV [[OLD:T[0-9]\.[XYZW]]], {{.*}}AR.x
[all …]
/external/llvm/test/Object/
Dnm-universal-binary.test12 RUN: | FileCheck %s -check-prefix CHECK-AR
14 RUN: | FileCheck %s -check-prefix CHECK-64-AR
16 RUN: | FileCheck %s -check-prefix CHECK-AR-i386
18 RUN: | FileCheck %s -check-prefix CHECK-AR-o
40 CHECK-AR: macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64):
41 CHECK-AR: 0000000000000068 s EH_frame0
42 CHECK-AR: 000000000000003b s L_.str
43 CHECK-AR: 0000000000000000 T _main
44 CHECK-AR: 0000000000000080 S _main.eh
45 CHECK-AR: U _printf
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/
Dnm-universal-binary.test12 RUN: | FileCheck %s -check-prefix CHECK-AR
14 RUN: | FileCheck %s -check-prefix CHECK-64-AR
16 RUN: | FileCheck %s -check-prefix CHECK-AR-i386
18 RUN: | FileCheck %s -check-prefix CHECK-AR-o
40 CHECK-AR: macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64):
41 CHECK-AR: 0000000000000068 s EH_frame0
42 CHECK-AR: 000000000000003b s L_.str
43 CHECK-AR: 0000000000000000 T _main
44 CHECK-AR: 0000000000000080 S _main.eh
45 CHECK-AR: U _printf
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Scalar/
DLoopPassManagerTest.cpp257 LoopStandardAnalysisResults &AR, LPMUpdater &) { in getLoopAnalysisResult() argument
258 (void)AM.getResult<MockLoopAnalysisHandle::Analysis>(L, AR); in getLoopAnalysisResult()
684 LoopStandardAnalysisResults &AR) { in TEST_F() argument
685 (void)AM.getResult<AnalysisB>(L, AR); in TEST_F()
724 LoopStandardAnalysisResults &AR, LPMUpdater &) { in TEST_F() argument
725 (void)AM.getResult<AnalysisA>(L, AR); in TEST_F()
734 LoopStandardAnalysisResults &AR, LPMUpdater &) { in TEST_F() argument
735 (void)AM.getResult<AnalysisA>(L, AR); in TEST_F()
741 LoopStandardAnalysisResults &AR, LPMUpdater &) { in TEST_F() argument
742 (void)AM.getResult<AnalysisA>(L, AR); in TEST_F()
[all …]
/external/clang/unittests/AST/
DCommentParser.cpp122 ::testing::AssertionResult AR = GetChildAt(C, Idx, TC); in HasTextAt()
123 if (!AR) in HasTextAt()
124 return AR; in HasTextAt()
143 ::testing::AssertionResult AR = GetChildAt(C, Idx, TC); in HasTextWithNewlineAt()
144 if (!AR) in HasTextWithNewlineAt()
145 return AR; in HasTextWithNewlineAt()
166 ::testing::AssertionResult AR = GetChildAt(C, Idx, BCC); in HasBlockCommandAt()
167 if (!AR) in HasBlockCommandAt()
168 return AR; in HasBlockCommandAt()
191 ::testing::AssertionResult AR = GetChildAt(C, Idx, PCC); in HasParamCommandAt()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DIVUsers.cpp41 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 …]
DScalarEvolutionNormalization.cpp48 NormalizeDenormalizeRewriter::visitAddRecExpr(const SCEVAddRecExpr *AR) { in visitAddRecExpr() argument
51 transform(AR->operands(), std::back_inserter(Operands), in visitAddRecExpr()
54 if (!Pred(AR)) in visitAddRecExpr()
55 return SE.getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagAnyWrap); in visitAddRecExpr()
94 return SE.getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagAnyWrap); in visitAddRecExpr()
100 auto Pred = [&](const SCEVAddRecExpr *AR) { in normalizeForPostIncUse() argument
101 return Loops.count(AR->getLoop()); in normalizeForPostIncUse()
114 auto Pred = [&](const SCEVAddRecExpr *AR) { in denormalizeForPostIncUse() argument
115 return Loops.count(AR->getLoop()); in denormalizeForPostIncUse()
DAliasAnalysisEvaluator.cpp44 static void PrintResults(AliasResult AR, bool P, const Value *V1, in PrintResults() argument
56 errs() << " " << AR << ":\t" << o1 << ", " << o2 << "\n"; in PrintResults()
77 static inline void PrintLoadStoreResults(AliasResult AR, bool P, in PrintLoadStoreResults() argument
81 errs() << " " << AR << ": " << *V1 << " <-> " << *V2 << '\n'; in PrintLoadStoreResults()
153 AliasResult AR = AA.alias(*I1, I1Size, *I2, I2Size); in runInternal() local
154 switch (AR) { in runInternal()
156 PrintResults(AR, PrintNoAlias, *I1, *I2, F.getParent()); in runInternal()
160 PrintResults(AR, PrintMayAlias, *I1, *I2, F.getParent()); in runInternal()
164 PrintResults(AR, PrintPartialAlias, *I1, *I2, F.getParent()); in runInternal()
168 PrintResults(AR, PrintMustAlias, *I1, *I2, F.getParent()); in runInternal()
[all …]
DAliasAnalysis.cpp375 raw_ostream &llvm::operator<<(raw_ostream &OS, AliasResult AR) { in operator <<() argument
376 switch (AR) { in operator <<()
406 AliasResult AR = alias(MemoryLocation::get(L), Loc); in getModRefInfo() local
407 if (AR == NoAlias) in getModRefInfo()
409 if (AR == MustAlias) in getModRefInfo()
423 AliasResult AR = alias(MemoryLocation::get(S), Loc); in getModRefInfo() local
426 if (AR == NoAlias) in getModRefInfo()
435 if (AR == MustAlias) in getModRefInfo()
454 AliasResult AR = alias(MemoryLocation::get(V), Loc); in getModRefInfo() local
457 if (AR == NoAlias) in getModRefInfo()
[all …]
/external/ImageMagick/config/
Dar-lib95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
121 AR=$1
135 AR="$AR $1"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
260 $AR -NOLOGO -OUT:"$archive" "$orig_archive" "$@" || exit $?
262 $AR -NOLOGO -OUT:"$archive" "$@" || exit $?
269 $AR -NOLOGO -LIST "$archive" || exit $?
/external/libnetfilter_conntrack/build-aux/
Dar-lib95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
121 AR=$1
135 AR="$AR $1"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
260 $AR -NOLOGO -OUT:"$archive" "$orig_archive" "$@" || exit $?
262 $AR -NOLOGO -OUT:"$archive" "$@" || exit $?
269 $AR -NOLOGO -LIST "$archive" || exit $?
/external/pcre/dist2/
Dar-lib95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
121 AR=$1
135 AR="$AR $1"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
260 $AR -NOLOGO -OUT:"$archive" "$orig_archive" "$@" || exit $?
262 $AR -NOLOGO -OUT:"$archive" "$@" || exit $?
269 $AR -NOLOGO -LIST "$archive" || exit $?
/external/swiftshader/third_party/LLVM/lib/Analysis/
DIVUsers.cpp51 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in isInteresting() local
54 if (AR->getLoop() == L) in isInteresting()
55 return AR->isAffine() || in isInteresting()
57 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); in isInteresting()
61 return isInteresting(AR->getStart(), I, L, SE, LI) && in isInteresting()
62 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); in isInteresting()
242 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in findAddRecForLoop() local
243 if (AR->getLoop() == L) in findAddRecForLoop()
244 return AR; in findAddRecForLoop()
245 return findAddRecForLoop(AR->getStart(), L); in findAddRecForLoop()
[all …]
/external/u-boot/arch/mips/dts/
Dcomtrend,ar-5315u.dts11 model = "Comtrend AR-5315u";
33 label = "AR-5315u:green:wps";
39 label = "AR-5315u:green:power";
45 label = "AR-5315u:green:usb";
51 label = "AR-5315u:green:inet";
57 label = "AR-5315u:red:inet";
63 label = "AR-5315u:green:dsl";
69 label = "AR-5315u:red:power";
Dcomtrend,ar-5387un.dts11 model = "Comtrend AR-5387un";
32 label = "AR-5387un:red:inet";
37 label = "AR-5387un:red:power";
42 label = "AR-5387un:green:inet";
47 label = "AR-5387un:green:power";
53 label = "AR-5387un:green:dsl";
/external/llvm/lib/Analysis/
DIVUsers.cpp56 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in isInteresting() local
59 if (AR->getLoop() == L) in isInteresting()
60 return AR->isAffine() || in isInteresting()
62 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); in isInteresting()
66 return isInteresting(AR->getStart(), I, L, SE, LI) && in isInteresting()
67 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); in isInteresting()
338 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in findAddRecForLoop() local
339 if (AR->getLoop() == L) in findAddRecForLoop()
340 return AR; in findAddRecForLoop()
341 return findAddRecForLoop(AR->getStart(), L); in findAddRecForLoop()
[all …]
DScalarEvolutionNormalization.cpp107 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in TransformImpl() local
110 const Loop *L = AR->getLoop(); in TransformImpl()
114 for (SCEVNAryExpr::op_iterator I = AR->op_begin(), E = AR->op_end(); in TransformImpl()
132 if (AR->isAffine() && in TransformImpl()
135 TransformSubExpr(AR->getStepRecurrence(SE), in TransformImpl()
166 TransformSubExpr(AR->getStepRecurrence(SE), in TransformImpl()
181 TransformSubExpr(AR->getStepRecurrence(SE), in TransformImpl()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopRotation.cpp37 LoopStandardAnalysisResults &AR, in run() argument
41 const SimplifyQuery SQ = getBestSimplifyQuery(AR, DL); in run()
43 bool Changed = LoopRotation(&L, &AR.LI, &AR.TTI, &AR.AC, &AR.DT, &AR.SE, SQ, in run()
DLoopUnrollAndJamPass.cpp425 LoopStandardAnalysisResults &AR, in run() argument
428 AM.getResult<FunctionAnalysisManagerLoopProxy>(L, AR).getManager(); in run()
438 DependenceInfo DI(F, &AR.AA, &AR.SE, &AR.LI); in run()
441 &L, AR.DT, &AR.LI, AR.SE, AR.TTI, AR.AC, DI, *ORE, OptLevel); in run()
DLoopPassManager.cpp27 LoopStandardAnalysisResults &AR, LPMUpdater &U) { in run() argument
37 PreservedAnalyses PassPA = Pass->run(L, AM, AR, U); in run()
48 assert(L.isRecursivelyLCSSAForm(AR.DT, AR.LI) && in run()
DLoopSimplifyCFG.cpp70 LoopStandardAnalysisResults &AR, in run() argument
72 if (!simplifyLoopCFG(L, AR.DT, AR.LI, AR.SE)) in run()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DArrayRefTest.cpp85 ArrayRef<char> AR(nullptr, std::numeric_limits<ptrdiff_t>::max()); in TEST() local
88 EXPECT_EQ(1U, AR.drop_back(AR.size() - 1).size()); in TEST()
91 EXPECT_EQ(1U, AR.drop_front(AR.size() - 1).size()); in TEST()
94 EXPECT_EQ(1U, AR.slice(AR.size() - 1).size()); in TEST()
95 EXPECT_EQ(AR.size() - 1, AR.slice(1, AR.size() - 1).size()); in TEST()
/external/llvm/unittests/ADT/
DArrayRefTest.cpp114 ArrayRef<char> AR((const char *)0x10000, SIZE_MAX - 0x10000); in TEST() local
115 EXPECT_EQ(1U, AR.slice(AR.size() - 1).size()); in TEST()
116 EXPECT_EQ(AR.size() - 1, AR.slice(1, AR.size() - 1).size()); in TEST()
/external/elfutils/src/
Dmake-debug-archive.in16 AR=${AR:-@AR@}
129 (cd "$outdir" && $LS | $XARGS $AR cq "$new_archive") &&
/external/vixl/tools/
Dcross_build_gcc.sh35 export AR=$1ar
45 if [ ! -x "`which $AR`" ]; then
46 echo "Error: $AR does not exist or is not executable."

12345678910>>...41