HomeSort by relevance Sort by last modified time
    Searched refs:SCEVUnknown (Results 1 - 12 of 12) sorted by null

  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 76 EXPECT_EQ(cast<SCEVUnknown>(M0->getOperand(1))->getValue(), V0);
77 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V1);
78 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V2);
85 EXPECT_EQ(cast<SCEVUnknown>(M0->getOperand(1))->getValue(), V0);
86 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V0);
87 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V0);
  /external/llvm/lib/Analysis/
Delinearization.cpp 99 const SCEVUnknown *BasePointer =
100 dyn_cast<SCEVUnknown>(SE->getPointerBase(AccessFn));
ScalarEvolutionAliasAnalysis.cpp 100 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
ScalarEvolution.cpp 24 // represent it as a SCEVUnknown node.
217 const SCEVUnknown *U = cast<SCEVUnknown>(this);
266 return cast<SCEVUnknown>(this)->getType();
361 void SCEVUnknown::deleted() {
362 // Clear this SCEVUnknown from various maps.
365 // Remove this SCEVUnknown from the uniquing map.
372 void SCEVUnknown::allUsesReplacedWith(Value *New) {
373 // Clear this SCEVUnknown from various maps.
376 // Remove this SCEVUnknown from the uniquing map
    [all...]
ScalarEvolutionNormalization.cpp 231 if (isa<SCEVConstant>(S) || isa<SCEVUnknown>(S))
ScalarEvolutionExpander.cpp 482 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Ops[i])) {
638 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
734 // If the operand is SCEVUnknown and not instructions, peek through
737 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(X))
746 // use a SCEVUnknown to avoid re-analyzing them.
    [all...]
DependenceAnalysis.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 481 /// SCEVUnknown - This means that we are dealing with an entirely unknown SCEV
485 class SCEVUnknown : public SCEV, private CallbackVH {
493 /// the parent's maps when the value associated with a SCEVUnknown
498 /// SCEVUnknown instances owned by a ScalarEvolution.
499 SCEVUnknown *Next;
501 SCEVUnknown(const FoldingSetNodeIDRef ID, Value *V,
502 ScalarEvolution *se, SCEVUnknown *next) :
553 return ((SC*)this)->visitUnknown((const SCEVUnknown*)S);
637 /// the SCEVUnknown components following the Map (Value -> Value).
710 const SCEV *visitUnknown(const SCEVUnknown *Expr)
    [all...]
ScalarEvolution.h 49 class SCEVUnknown;
218 friend class SCEVUnknown;
561 /// Return false iff given SCEV contains a SCEVUnknown with NULL value-
720 /// returns a SCEVUnknown pointer for well-formed pointer-type expressions,
    [all...]
ScalarEvolutionExpander.h 249 Value *visitUnknown(const SCEVUnknown *S) {
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 648 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
785 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 99 milliseconds