Searched refs:bindex (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dcoalesce.hpp107 bool copy_copy( Node *dst_copy, Node *src_copy, Block *b, uint bindex );
109 void union_helper( Node *lr1_node, Node *lr2_node, uint lr1, uint lr2, Node *src_def, Node *dst_copy, Node *src_copy, Block *b, uint bindex );
111 uint compute_separating_interferences(Node *dst_copy, Node *src_copy, Block *b, uint bindex, RegMask &rm, uint rm_size, uint reg_degree, uint lr1, uint lr2);
H A Dcoalesce.cpp607 void PhaseConservativeCoalesce::union_helper( Node *lr1_node, Node *lr2_node, uint lr1, uint lr2, Node *src_def, Node *dst_copy, Node *src_copy, Block *b, uint bindex ) {
633 // _phc.free_spillcopy(b->_nodes[bindex]);
634 assert( b->_nodes[bindex] == dst_copy, "" );
637 b->_nodes.remove(bindex);
638 if( bindex < b->_ihrp_index ) b->_ihrp_index--;
639 if( bindex < b->_fhrp_index ) b->_fhrp_index--;
652 uint PhaseConservativeCoalesce::compute_separating_interferences(Node *dst_copy, Node *src_copy, Block *b, uint bindex, RegMask &rm, uint reg_degree, uint rm_size, uint lr1, uint lr2 ) { argument
658 uint bindex2 = bindex;
754 bool PhaseConservativeCoalesce::copy_copy( Node *dst_copy, Node *src_copy, Block *b, uint bindex ) {
837 reg_degree = compute_separating_interferences(dst_copy, src_copy, b, bindex, r
[all...]
H A Dreg_split.cpp224 int bindex = b->find_node(use); local
235 insert_proj( b, bindex, spill, maxlrg++ );
270 int bindex; local
274 bindex = b->end_idx();
277 bindex = b->find_node(use);
284 insert_proj( b, bindex, spill, maxlrg++ );
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DSuballocatedByteVector.java434 int bindex=index/m_blocksize;
439 for(;bindex<maxindex;++bindex)
441 block=m_map[bindex];
445 return offset+bindex*m_blocksize;
H A DSuballocatedIntVector.java475 int bindex=index>>>m_SHIFT;
480 for(;bindex<maxindex;++bindex)
482 block=m_map[bindex];
486 return offset+bindex*m_blocksize;

Completed in 40 milliseconds