comparison src/share/vm/opto/node.hpp @ 276:aa8f54688692

Merge
author trims
date Sun, 10 Aug 2008 21:31:42 -0700
parents 02a35ad4adf8
children cc80376deb0c
comparison
equal deleted inserted replaced
240:585535ec8a14 276:aa8f54688692
1397 return _inodes[i].node; 1397 return _inodes[i].node;
1398 } 1398 }
1399 uint index() const { 1399 uint index() const {
1400 return _inode_top->indx; 1400 return _inode_top->indx;
1401 } 1401 }
1402 uint index_at(uint i) const {
1403 assert(_inodes + i <= _inode_top, "in range");
1404 return _inodes[i].indx;
1405 }
1402 void set_node(Node *n) { 1406 void set_node(Node *n) {
1403 _inode_top->node = n; 1407 _inode_top->node = n;
1404 } 1408 }
1405 void set_index(uint i) { 1409 void set_index(uint i) {
1406 _inode_top->indx = i; 1410 _inode_top->indx = i;