Searched refs:AR (Results 1 - 25 of 324) sorted by last modified time

1234567891011>>

/macosx-10.10/llvmCore-3425.0.34/utils/TableGen/
H A DCodeGenRegisters.cpp372 CodeGenRegister *AR = ExplicitAliases[i]; local
374 if (AR->SubRegsComplete)
378 unsigned Unit = RegBank.newRegUnit(this, AR);
380 AR->RegUnits.push_back(Unit);
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-shlib/
H A DMakefile120 $(Verb) $(AR) rc $(ToolDir)/libstdc++.dll.a
/macosx-10.10/llvmCore-3425.0.34/projects/sample/
H A Dconfigure722 AR
6056 if test -n "$AR"; then
6057 ac_cv_prog_AR="$AR" # Let the user override the test.
6076 AR=$ac_cv_prog_AR
6077 if test -n "$AR"; then
6078 { echo "$as_me:$LINENO: result: $AR" >&5
6079 echo "${ECHO_T}$AR" >&6; }
6088 ac_ct_AR=$AR
6126 AR="false"
6138 AR
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp1370 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(Phi)); local
1371 if (!AR || AR->getLoop() != L || !AR->isAffine())
1374 // AR may be a pointer type, while BECount is an integer type.
1375 // AR may be wider than BECount. With eq/ne tests overflow is immaterial.
1376 // AR may not be a narrower type, or we may never exit.
1377 uint64_t PhiWidth = SE->getTypeSizeInBits(AR->getType());
1381 const SCEV *Step = dyn_cast<SCEVConstant>(AR->getStepRecurrence(*SE));
1403 const SCEV *Init = AR
1432 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(IndVar)); local
1758 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(BackedgeTakenCount); local
[all...]
H A DLoopStrengthReduce.cpp282 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
283 if (!AR->getStart()->isZero()) {
284 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
285 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
286 AR->getStepRecurrence(SE),
287 // FIXME: AR->getNoWrapFlags()
288 AR->getLoop(), SCEV::FlagAnyWrap),
427 static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) { argument
429 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
430 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideT
653 isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) argument
1884 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV); local
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp300 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S); local
301 if (AR && AR->getLoop() == L)
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DPass.cpp99 void Pass::setResolver(AnalysisResolver *AR) { argument
101 Resolver = AR;
H A DPassManager.cpp503 AnalysisResolver *AR = AnalysisPass->getResolver(); local
504 assert(AR && "Expected analysis resolver to exist.");
505 unsigned APDepth = AR->getPMDataManager().getDepth();
643 AnalysisResolver *AR = new AnalysisResolver(*DM); local
644 P->setResolver(AR);
956 AnalysisResolver *AR = new AnalysisResolver(*this); local
957 P->setResolver(AR);
1072 AnalysisResolver *AR = P->getResolver(); local
1073 assert(AR && "Analysis Resolver is not set");
1074 AR
1352 AnalysisResolver *AR = new AnalysisResolver(*FPM); local
1423 AnalysisResolver *AR = FP->getResolver(); local
[all...]
/macosx-10.10/llvmCore-3425.0.34/projects/sample/autoconf/
H A Dltmain.sh293 $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"
294 $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $?
295 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
/macosx-10.10/llvmCore-3425.0.34/lib/Analysis/
H A DIVUsers.cpp52 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
55 if (AR->getLoop() == L)
56 return AR->isAffine() ||
58 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR);
62 return isInteresting(AR->getStart(), I, L, SE, LI) &&
63 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI);
303 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
304 if (AR->getLoop() == L)
305 return AR;
[all...]
H A DScalarEvolution.cpp159 const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(this); local
160 OS << "{" << *AR->getOperand(0);
161 for (unsigned i = 1, e = AR->getNumOperands(); i != e; ++i)
162 OS << ",+," << *AR->getOperand(i);
164 if (AR->getNoWrapFlags(FlagNUW))
166 if (AR->getNoWrapFlags(FlagNSW))
168 if (AR->getNoWrapFlags(FlagNW) &&
169 !AR->getNoWrapFlags((NoWrapFlags)(FlagNUW | FlagNSW)))
171 WriteAsOperand(OS, AR->getLoop()->getHeader(), /*PrintType=*/false);
935 if (const SCEVAddRecExpr *AR
1077 getPreStartForSignExtend(const SCEVAddRecExpr *AR, Type *Ty, ScalarEvolution *SE) argument
1139 getSignExtendAddRecStart(const SCEVAddRecExpr *AR, Type *Ty, ScalarEvolution *SE) argument
[all...]
H A DScalarEvolutionAliasAnalysis.cpp91 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
94 return GetBaseValue(AR->getStart());
H A DScalarEvolutionExpander.cpp654 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
655 L = AR->getLoop();
H A DScalarEvolutionNormalization.cpp107 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
110 const Loop *L = AR->getLoop();
114 for (SCEVNAryExpr::op_iterator I = AR->op_begin(), E = AR->op_end();
124 TransformSubExpr(AR->getStepRecurrence(SE),
141 TransformSubExpr(AR->getStepRecurrence(SE),
/macosx-10.10/llvmCore-3425.0.34/include/llvm/
H A DPass.h133 void setResolver(AnalysisResolver *AR);
/macosx-10.10/llvmCore-3425.0.34/
H A Dconfigure728 AR
6271 if test -n "$AR"; then
6272 ac_cv_prog_AR="$AR" # Let the user override the test.
6291 AR=$ac_cv_prog_AR
6292 if test -n "$AR"; then
6293 { echo "$as_me:$LINENO: result: $AR" >&5
6294 echo "${ECHO_T}$AR" >&6; }
6303 ac_ct_AR=$AR
6341 AR="false"
6353 AR
[all...]
/macosx-10.10/llvmCore-3425.0.34/autoconf/
H A Dltmain.sh293 $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"
294 $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $?
295 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
/macosx-10.10/cups-408/cups/
H A Dconfigure753 AR
3687 case $AR in
3689 ac_cv_path_AR="$AR" # Let the user override the test with a path.
3710 AR=$ac_cv_path_AR
3711 if test -n "$AR"; then
3712 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
3713 $as_echo "$AR" >&6; }
4094 if test "x$AR" = x; then
/macosx-10.10/cups-408/cups/scheduler/
H A DMakefile486 $(AR) $(ARFLAGS) $@ $(LIBOBJS)
/macosx-10.10/perl-103/5.16/
H A DMakefile20 Extra_Environment = HTMLDIR='$(Install_HTML)' AR='$(TOPSRCROOT)/fix/ar.sh'
/macosx-10.10/perl-103/5.18/
H A DMakefile20 Extra_Environment = HTMLDIR='$(Install_HTML)' AR='$(TOPSRCROOT)/fix/ar.sh'
/macosx-10.10/OpenLDAP-499.27/
H A DMakefile22 Extra_Environment += AR=${SRCROOT}/ar.sh
/macosx-10.10/curl-83.1.2/curl/
H A Dconfigure1046 AR
3398 if test -z "$AR"; then
3407 case $AR in
3409 ac_cv_path_AR="$AR" # Let the user override the test with a path.
3431 AR=$ac_cv_path_AR
3432 if test -n "$AR"; then
3433 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
3434 $as_echo "$AR" >&6; }
3443 ac_pt_AR=$AR
3485 AR
[all...]
/macosx-10.10/curl-83.1.2/curl/lib/
H A DMakefile.Watcom34 AR = wlib
241 $(AR) -q -b -c -pa $^@ @$(LIB_ARG)
H A DMakefile.m3266 AR = $(CROSSPREFIX)ar
275 $(AR) cru $@ $(libcurl_a_OBJECTS)

Completed in 321 milliseconds

1234567891011>>