Searched refs:_blocks (Results 1 - 14 of 14) sorted by relevance

/openjdk9/hotspot/src/share/vm/opto/
H A DindexSet.cpp174 // Allocate a new BitBlock and put it into the position in the _blocks array
180 _blocks[bi] = block;
190 BitBlock *block = _blocks[i];
290 _blocks = _preallocated_block_list;
292 _blocks =
296 BitBlock *block = set->_blocks[i];
320 _blocks = _preallocated_block_list;
322 _blocks = (IndexSet::BitBlock**) arena()->Amalloc_4(sizeof(IndexSet::BitBlock**) * _max_blocks);
330 // Prepare an IndexSet for use. If it needs to allocate its _blocks array, it does
344 _blocks
[all...]
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.hpp54 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[
377 Block_List _blocks; member in class:PhaseCFG
[all...]
H A Dblock.cpp46 _blocks = (Block**)_arena->Amalloc( _size * sizeof(Block*) );
47 _blocks[0] = NULL;
51 _blocks = (Block**)_arena->Arealloc( _blocks, old*sizeof(Block*),_size*sizeof(Block*));
52 Copy::zero_to_bytes( &_blocks[old], (_size-old)*sizeof(Block*) );
57 Copy::conjoint_words_to_lower((HeapWord*)&_blocks[i+1], (HeapWord*)&_blocks[i], ((_cnt-i-1)*sizeof(Block*)));
63 Copy::conjoint_words_to_higher((HeapWord*)&_blocks[i], (HeapWord*)&_blocks[i+1], ((_cnt-i-1)*sizeof(Block*)));
64 _blocks[
[all...]
H A Ddomgraph.cpp65 _blocks.map(number_of_blocks(), 0);
92 _blocks._cnt = number_of_blocks();
277 // Build a reverse post-order in the CFG _blocks array
280 _blocks.map(stack_top->_rpo, stack_top);
H A Dparse.hpp325 Block* _blocks; // Array of basic-block structs. member in class:Parse
326 int _block_count; // Number of elements in _blocks.
406 return &_blocks[rpo];
H A Dparse1.cpp409 debug_only(_blocks = (Block*)-1);
1237 _blocks = NEW_RESOURCE_ARRAY(Block, _block_count);
/openjdk9/hotspot/src/share/vm/shark/
H A DsharkFunction.hpp67 SharkTopLevelBlock** _blocks; member in class:SharkFunction
80 return _blocks[i];
H A DsharkFunction.cpp66 _blocks = NEW_RESOURCE_ARRAY(SharkTopLevelBlock*, block_count());
73 // _blocks[i] = new SharkTopLevelBlock(this, b);
74 _blocks[b->pre_order()] = new SharkTopLevelBlock(this, b);
/openjdk9/hotspot/src/share/vm/ci/
H A DciMethodBlocks.cpp56 _blocks->append(new_block);
90 _blocks->append(nb);
258 _blocks = new(_arena) GrowableArray<ciBlock *>(_arena, block_estimate, 0, NULL);
265 _blocks->append(b);
330 for (int i = 0; i < _blocks->length(); i++)
331 _blocks->at(i)->clear_processed();
339 for (int i = 0; i < _blocks->length(); i++) {
340 tty->print(" B%d: ", i); _blocks->at(i)->dump();
H A DciMethodBlocks.hpp41 GrowableArray<ciBlock *> *_blocks; member in class:ciMethodBlocks
51 ciBlock *block(int index) { return _blocks->at(index); }
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp1260 BlockList* _blocks; member in class:PredecessorValidator
1270 _blocks = new BlockList();
1275 assert(hir->code()->length() == _blocks->length(), "must match");
1276 for (i = 0; i < _blocks->length(); i++) {
1277 assert(hir->code()->contains(_blocks->at(i)), "should be in both lists");
1281 for (i = 0; i < _blocks->length(); i++) {
1282 BlockBegin* block = _blocks->at(i);
1308 _blocks->append(block);
H A Dc1_GraphBuilder.cpp49 BlockList _blocks; // internal list of all blocks member in class:VALUE_OBJ_CLASS_SPEC
101 , _blocks(16)
158 _blocks.append(block);
362 _next_block_number = _blocks.length();
460 _blocks.sort(compare_depth_first);
462 for (int i = 0; i < _blocks.length(); i++) {
463 BlockBegin* cur = _blocks.at(i);
/openjdk9/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp1200 c2_nonstatic_field(PhaseCFG, _blocks, Block_List) \
1229 c2_nonstatic_field(Block_Array, _blocks, Block**) \

Completed in 213 milliseconds