Searched refs:ECValue (Results 1 – 2 of 2) sorted by relevance
69 class ECValue {71 mutable const ECValue *Leader, *Next;75 ECValue(const ElemTy &Elt) in ECValue() function76 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} in ECValue()78 const ECValue *getLeader() const { in getLeader()84 const ECValue *getEndOfList() const { in getEndOfList()89 void setNext(const ECValue *NewNext) const { in setNext()91 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader()); in setNext()94 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1), in ECValue() function100 bool operator<(const ECValue &UFN) const { return Data < UFN.Data; }[all …]
544 Value *ECValue = SCEVE.expandCodeFor(ExitCount, CountType, in convertToCTRLoop() local551 CountBuilder.CreateCall(MTCTRFunc, ECValue); in convertToCTRLoop()