Searched refs:INode (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.hpp1406 struct INode { struct in class:Node_Stack
1410 INode *_inode_top; // tos, stack grows up
1411 INode *_inode_max; // End of _inodes == _inodes + _max
1412 INode *_inodes; // Array storage for the stack
1419 _inodes = NEW_ARENA_ARRAY( _a, INode, max );
1426 _inodes = NEW_ARENA_ARRAY( _a, INode, max );
1438 INode *top = _inode_top; // optimization
1462 uint size_max() const { return (uint)pointer_delta(_inode_max, _inodes, sizeof(INode)); } // Max size
1463 uint size() const { return (uint)pointer_delta((_inode_top+1), _inodes, sizeof(INode)); } // Current size
H A Dnode.cpp2063 size_t old_top = pointer_delta(_inode_top,_inodes,sizeof(INode)); // save _top
2064 size_t old_max = pointer_delta(_inode_max,_inodes,sizeof(INode));
2066 _inodes = REALLOC_ARENA_ARRAY(_a, INode, _inodes, old_max, max);

Completed in 108 milliseconds