OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SCEVCouldNotCompute
(Results
1 - 2
of
2
) sorted by null
/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
...]
/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
...]
Completed in 27 milliseconds