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

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkFunction.hpp67 SharkTopLevelBlock** _blocks; member in class:SharkFunction
80 return _blocks[i];
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodBlocks.hpp41 GrowableArray<ciBlock *> *_blocks; member in class:ciMethodBlocks
51 ciBlock *block(int index) { return _blocks->at(index); }
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp193 BitBlock **_blocks; member in class:IndexSet
236 return _blocks[get_block_index(element)];
245 _blocks[index] = block;
267 BitBlock *block = _blocks[i];
429 IndexSet::BitBlock **_blocks; member in class:VALUE_OBJ_CLASS_SPEC
H A Dblock.hpp52 Block **_blocks; member in class:Block_Array
60 _blocks = NEW_ARENA_ARRAY( a, Block *, OptoBlockListSize );
62 _blocks[i] = NULL;
66 { return (i<Max()) ? _blocks[i] : (Block*)NULL; }
68 { assert( i < Max(), "oob" ); return _blocks[i]; }
70 void map( uint i, Block *n ) { if( i>=Max() ) grow(i); _blocks[i] = n; }
81 Block *pop() { return _blocks[--_cnt]; }
82 Block *rpop() { Block *b = _blocks[0]; _blocks[0]=_blocks[
382 Block_List _blocks; // List of basic blocks member in class:PhaseCFG
[all...]
H A Dparse.hpp326 Block* _blocks; // Array of basic-block structs. member in class:Parse
327 int _block_count; // Number of elements in _blocks.
392 return &_blocks[rpo];
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp1173 BlockList* _blocks; member in class:PredecessorValidator
1183 _blocks = new BlockList();
1188 assert(hir->code()->length() == _blocks->length(), "must match");
1189 for (i = 0; i < _blocks->length(); i++) {
1190 assert(hir->code()->contains(_blocks->at(i)), "should be in both lists");
1194 for (i = 0; i < _blocks->length(); i++) {
1195 BlockBegin* block = _blocks->at(i);
1221 _blocks->append(block);
H A Dc1_GraphBuilder.cpp46 BlockList _blocks; // internal list of all blocks member in class:VALUE_OBJ_CLASS_SPEC
98 , _blocks(16)
155 _blocks.append(block);
359 _next_block_number = _blocks.length();
453 _blocks.sort(compare_depth_first);
455 for (int i = 0; i < _blocks.length(); i++) {
456 BlockBegin* cur = _blocks.at(i);

Completed in 424 milliseconds