Searched refs:nidx (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.hpp201 uint lookup( uint nidx ) const {
202 return _lidxs[nidx];
204 uint operator[] (uint nidx) const { return lookup(nidx); }
206 void map( uint nidx, uint lidx ) { argument
207 assert( nidx < _cnt, "oob" );
208 _lidxs[nidx] = lidx;
210 void extend( uint nidx, uint lidx );
H A Dblock.hpp485 uint lookup( uint nidx ) const {
486 return _indices[nidx];
488 uint operator[] (uint nidx) const { return lookup(nidx); }
H A Dmatcher.cpp870 int nidx = C->get_alias_index(nat); local
873 if (nidx == Compile::AliasIdxTop && midx >= Compile::AliasIdxRaw) {
879 nidx = C->get_alias_index(n1at);
884 if (nidx == Compile::AliasIdxTop && midx == Compile::AliasIdxRaw) {
889 nidx = Compile::AliasIdxRaw;
894 if (nidx == Compile::AliasIdxRaw && midx == Compile::AliasIdxTop) {
902 if (nidx == Compile::AliasIdxTop && midx == Compile::AliasIdxBot) {
909 nidx = Compile::AliasIdxBot;
914 if (nidx == Compile::AliasIdxBot && midx == Compile::AliasIdxTop) {
922 nidx
[all...]
H A Dcoalesce.cpp495 uint nidx = _phc.n2lidx(inp); local
496 LRG &lrg = lrgs(nidx);
510 if( _phc._live->live(b->_succs[k])->member( nidx ) )
H A Difg.cpp213 uint nidx; local
214 while((nidx = elements.next()) != 0) {
215 LRG &lrgn = lrgs(nidx);
H A Dchaitin.cpp133 void LRG_List::extend( uint nidx, uint lidx ) { argument
135 if( nidx >= _max ) {
137 while( size <= nidx ) size <<=1;
141 while( _cnt <= nidx )
143 _lidxs[nidx] = lidx;
H A DphaseX.cpp504 void PhaseTransform::dump_new( uint nidx ) const {
506 if( _nodes[i] && _nodes[i]->_idx == nidx ) {
512 tty->print_cr("Node %d not found in the new indices", nidx);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java607 int nidx =
611 if (nidx == -1) {
616 for (int j = nidx + 1; j < idx; j++) {
619 idx = nidx;

Completed in 64 milliseconds