Searched defs:new_head (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.cpp123 Chunk* new_head = tl->next(); local
124 set_head(new_head);
126 if (new_head == NULL) {
129 new_head->link_prev(NULL);
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.cpp120 ProtectionDomainEntry* new_head = local
126 OrderAccess::release_store_ptr(&_pd_set, new_head);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp1067 QueueNode* new_head = NULL; local
1079 new_head = prev;
1083 _queue_tail->set_next(new_head);
1085 _queue_head = new_head;
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp2208 Block* new_head = head->looping_succ(lp); local
2212 lp->set_head(new_head);
2234 // new_head
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopopts.cpp2556 LoopNode* new_head = new (C) LoopNode(last_peel, last_peel); local
2557 new_head->set_unswitch_count(head->unswitch_count()); // Preserve
2558 _igvn.register_new_node_with_optimizer(new_head);
2560 first_not_peeled->set_req(0, new_head);
2561 set_loop(new_head, loop);
2562 loop->_body.push(new_head);
2563 not_peel.set(new_head->_idx);
2564 set_idom(new_head, last_peel, dom_depth(first_not_peeled));
2565 set_idom(first_not_peeled, new_head, dom_depth(first_not_peeled));
2569 set_ctrl(n, new_head);
[all...]
H A DloopTransform.cpp530 Node* new_head = old_new[head->_idx]; local
531 _igvn.hash_delete(new_head);
532 new_head->set_req(LoopNode::LoopBackControl, C->top());
533 for (DUIterator_Fast j2max, j2 = new_head->fast_outs(j2max); j2 < j2max; j2++) {
534 Node* use = new_head->fast_out(j2);
535 if (use->in(0) == new_head && use->req() == 3 && use->is_Phi()) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp429 HeapRegion* new_head = head->get_next_dirty_cards_region(); local
430 if (head == new_head) {
432 new_head = NULL;
434 hr = (HeapRegion*)Atomic::cmpxchg_ptr(new_head, &_dirty_cards_region_list,

Completed in 96 milliseconds