OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:scevcouldnotcompute
(Results
1 - 11
of
11
) sorted by null
/external/llvm/test/Analysis/ScalarEvolution/
2011-03-09-ExactNoMaxBECount.ll
2
; PR9424: Attempt to use a
SCEVCouldNotCompute
object!
/external/llvm/include/llvm/Analysis/
ScalarEvolution.h
156
///
SCEVCouldNotCompute
- An object of this class is returned by queries that
161
struct
SCEVCouldNotCompute
: public SCEV {
162
SCEVCouldNotCompute
();
241
SCEVCouldNotCompute
CouldNotCompute;
268
/// information, or whether it's all
SCEVCouldNotCompute
values.
270
return !isa<
SCEVCouldNotCompute
>(Exact) ||
271
!isa<
SCEVCouldNotCompute
>(Max);
308
/// count of the loop that is known, or a
SCEVCouldNotCompute
.
320
/// computed information, or whether it's all
SCEVCouldNotCompute
323
return ExitNotTaken.ExitingBlock || !isa<
SCEVCouldNotCompute
>(Max)
[
all
...]
ScalarEvolutionExpressions.h
339
/// iteration count can't be computed, an instance of
SCEVCouldNotCompute
is
473
return ((SC*)this)->visitCouldNotCompute((const
SCEVCouldNotCompute
*)S);
479
RetVal visitCouldNotCompute(const
SCEVCouldNotCompute
*S) {
480
llvm_unreachable("Invalid use of
SCEVCouldNotCompute
!");
537
llvm_unreachable("Attempt to use a
SCEVCouldNotCompute
object!");
624
virtual const SCEV *visitCouldNotCompute(const
SCEVCouldNotCompute
*Expr) {
/external/llvm/test/Transforms/LoopVectorize/
infiniteloop.ll
14
; // return
SCEVCouldNotCompute
.
/external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp
249
if (isa<
SCEVCouldNotCompute
>(BECount) || !BECount->getType()->isIntegerTy())
255
if (isa<
SCEVCouldNotCompute
>(TripCountSC))
/external/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp
170
if (isa<
SCEVCouldNotCompute
>(S))
IndVarSimplify.cpp
[
all
...]
LoopIdiomRecognize.cpp
658
if (isa<
SCEVCouldNotCompute
>(BECount)) return false;
[
all
...]
LoopStrengthReduce.cpp
[
all
...]
/external/llvm/lib/Analysis/
ScalarEvolution.cpp
269
llvm_unreachable("Attempt to use a
SCEVCouldNotCompute
object!");
307
SCEVCouldNotCompute
::
SCEVCouldNotCompute
() :
310
bool
SCEVCouldNotCompute
::classof(const SCEV *S) {
810
if (isa<
SCEVCouldNotCompute
>(Coeff))
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp
417
if (isa<
SCEVCouldNotCompute
>(EC))
Completed in 610 milliseconds