Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dhydrogen-instructions.cc321 HUseListNode* HUseListNode::tail() { in tail()
362 HUseIterator::HUseIterator(HUseListNode* head) : next_(head) { in HUseIterator()
384 HUseListNode* HValue::RemoveUse(HValue* value, int index) { in RemoveUse()
385 HUseListNode* previous = NULL; in RemoveUse()
386 HUseListNode* current = use_list_; in RemoveUse()
404 HUseListNode* temp = in RemoveUse()
406 HUseListNode(current->value(), current->index(), NULL); in RemoveUse()
495 HUseListNode* list_node = use_list_; in ReplaceAllUsesWith()
514 HUseListNode* first = operand->use_list_; in Kill()
581 HUseListNode* removed = NULL; in RegisterUse()
[all …]
Dhydrogen-instructions.h291 class HUseListNode: public ZoneObject {
293 HUseListNode(HValue* value, int index, HUseListNode* tail) in HUseListNode() function
297 HUseListNode* tail();
301 void set_tail(HUseListNode* list) { tail_ = list; } in set_tail()
305 tail_ = reinterpret_cast<HUseListNode*>(1); in Zap()
312 HUseListNode* tail_;
336 explicit HUseIterator(HUseListNode* head);
338 HUseListNode* current_;
339 HUseListNode* next_;
905 HUseListNode* RemoveUse(HValue* value, int index);
[all …]