Home | History | Annotate | Download | only in src

Lines Matching refs:HUseListNode

291 class HUseListNode: public ZoneObject {
293 HUseListNode(HValue* value, int index, HUseListNode* tail)
297 HUseListNode* tail();
301 void set_tail(HUseListNode* list) { tail_ = list; }
305 tail_ = reinterpret_cast<HUseListNode*>(1);
312 HUseListNode* tail_;
336 explicit HUseIterator(HUseListNode* head);
338 HUseListNode* current_;
339 HUseListNode* next_;
905 HUseListNode* RemoveUse(HValue* value, int index);
917 HUseListNode* use_list_;