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

  /external/llvm/include/llvm/ADT/
EquivalenceClasses.h 58 /// ECValue - The EquivalenceClasses data structure is just a set of these.
68 class ECValue {
70 mutable const ECValue *Leader, *Next;
72 // ECValue ctor - Start out with EndOfList pointing to this node, Next is
74 ECValue(const ElemTy &Elt)
75 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {}
77 const ECValue *getLeader() const {
83 const ECValue *getEndOfList() const {
88 void setNext(const ECValue *NewNext) const {
90 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader())
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 525 Value *ECValue = SCEVE.expandCodeFor(ExitCount, CountType,
532 CountBuilder.CreateCall(MTCTRFunc, ECValue);

Completed in 331 milliseconds