Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:lie

119     PointerIntPair<IndexListEntry*, 2, unsigned> lie;
122 : lie(entry, slot) {}
127 assert(!lie.getPointer()->isPoisoned() &&
130 return lie.getPointer();
139 return static_cast<Slot>(lie.getInt());
150 SlotIndex() : lie(nullptr, 0) {}
153 SlotIndex(const SlotIndex &li, Slot s) : lie(li.listEntry(), unsigned(s)) {
154 assert(lie.getPointer() != nullptr &&
161 return lie.getPointer();
175 return lie == other.lie;
179 return lie != other.lie;
207 return A.lie.getPointer() == B.lie.getPointer();