HomeSort by relevance Sort by last modified time
    Searched refs:HUseListNode (Results 1 - 5 of 5) sorted by null

  /art/compiler/optimizing/
ssa_phi_elimination.cc 32 HUseListNode<HInstruction>* current = it.Current();
114 HUseListNode<HInstruction>* current = it.Current();
nodes.h 461 class HUseListNode : public ArenaObject {
463 HUseListNode(T* user, size_t index, HUseListNode* tail)
466 HUseListNode* GetTail() const { return tail_; }
470 void SetTail(HUseListNode<T>* node) { tail_ = node; }
475 HUseListNode<T>* tail_;
477 DISALLOW_COPY_AND_ASSIGN(HUseListNode);
518 uses_ = new (block_->GetGraph()->GetArena()) HUseListNode<HInstruction>(user, index, uses_);
522 env_uses_ = new (block_->GetGraph()->GetArena()) HUseListNode<HEnvironment>(
528 HUseListNode<HInstruction>* GetUses() const { return uses_;
    [all...]
nodes.cc 351 HUseListNode<HInstruction>* previous = nullptr;
352 HUseListNode<HInstruction>* current = uses_;
398 HUseListNode<HInstruction>* current = it.Current();
406 HUseListNode<HEnvironment>* current = it.Current();
453 HUseListNode<HInstruction>* uses = GetUses();
  /external/chromium_org/v8/src/
hydrogen-instructions.cc 321 HUseListNode* HUseListNode::tail() {
362 HUseIterator::HUseIterator(HUseListNode* head) : next_(head) {
384 HUseListNode* HValue::RemoveUse(HValue* value, int index) {
385 HUseListNode* previous = NULL;
386 HUseListNode* current = use_list_;
404 HUseListNode* temp =
406 HUseListNode(current->value(), current->index(), NULL);
495 HUseListNode* list_node = use_list_;
514 HUseListNode* first = operand->use_list_
    [all...]
hydrogen-instructions.h 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_
    [all...]

Completed in 67 milliseconds