Home
last modified time | relevance | path

Searched refs:ECValue (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/ADT/
DEquivalenceClasses.h69 class ECValue {
71 mutable const ECValue *Leader, *Next;
75 ECValue(const ElemTy &Elt) in ECValue() function
76 : 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() function
100 bool operator<(const ECValue &UFN) const { return Data < UFN.Data; }
[all …]
/external/llvm/lib/Target/PowerPC/
DPPCCTRLoops.cpp544 Value *ECValue = SCEVE.expandCodeFor(ExitCount, CountType, in convertToCTRLoop() local
551 CountBuilder.CreateCall(MTCTRFunc, ECValue); in convertToCTRLoop()