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 59 /// ECValue - The EquivalenceClasses data structure is just a set of these.
69 class ECValue {
71 mutable const ECValue *Leader, *Next;
73 // ECValue ctor - Start out with EndOfList pointing to this node, Next is
75 ECValue(const ElemTy &Elt)
76 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {}
78 const ECValue *getLeader() const {
84 const ECValue *getEndOfList() const {
89 void setNext(const ECValue *NewNext) const {
91 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader())
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 560 Value *ECValue =
567 CountBuilder.CreateCall(MTCTRFunc, ECValue);

Completed in 123 milliseconds