Searched refs:_chunk (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DresourceArea.hpp94 Chunk *_chunk; // saved arena chunk member in class:ResourceMark
100 _chunk = _area->_chunk;
121 _area(r), _chunk(r->_chunk), _hwm(r->_hwm), _max(r->_max) {
130 if( _chunk->next() ) { // Delete later chunks
135 _chunk->next_chop();
139 _area->_chunk = _chunk; // Roll back arena to saved chunk
191 Chunk *_chunk; // save member in class:DeoptResourceMark
[all...]
H A Dallocation.cpp378 _first = _chunk = new (AllocFailStrategy::EXIT_OOM, init_size) Chunk(init_size);
379 _hwm = _chunk->bottom(); // Save the cached hwm, max
380 _max = _chunk->top();
386 _first = _chunk = new (AllocFailStrategy::EXIT_OOM, Chunk::init_size) Chunk(Chunk::init_size);
387 _hwm = _chunk->bottom(); // Save the cached hwm, max
388 _max = _chunk->top();
395 copy->_chunk = _chunk;
474 size_t sum = _chunk->length() - (_max-_hwm); // Size leftover in this Chunk
476 while( k != _chunk) { // Whils
[all...]
H A DresourceArea.cpp82 Arena::free_malloced_objects(_chunk, _hwm, _max, _area->_hwm);
86 Arena::free_malloced_objects(_chunk, _hwm, _max, _area->_hwm);
H A Dallocation.hpp290 Chunk *_chunk; // current chunk member in class:Arena
421 _first = _chunk = NULL;
/openjdk7/hotspot/src/share/vm/adlc/
H A Darena.cpp60 _first = _chunk = new (init_size) Chunk(init_size);
61 _hwm = _chunk->bottom(); // Save the cached hwm, max
62 _max = _chunk->top();
67 _first = _chunk = new (Chunk::init_size) Chunk(Chunk::init_size);
68 _hwm = _chunk->bottom(); // Save the cached hwm, max
69 _max = _chunk->top();
74 : _chunk(a->_chunk), _hwm(a->_hwm), _max(a->_max), _first(a->_first) {
81 size_t sum = _chunk->_len - (_max-_hwm); // Size leftover in this Chunk
83 while( k != _chunk) { // Whils
[all...]
H A Darena.hpp101 Chunk *_chunk; // current chunk member in class:Arena
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.inline.hpp81 if( _chunk->next() ) {
86 _chunk->next_chop();
91 area->_chunk = _chunk;
H A Dhandles.cpp86 handles_visited += chunk_oops_do(f, _chunk, _hwm);
89 while(k != _chunk) {
111 _chunk = _area->_chunk;
135 Chunk *c = _chunk->next();
155 if( _chunk->next() ) {
160 _chunk->next_chop();
165 area->_chunk = _chunk;
H A Dhandles.hpp312 Chunk *_chunk; // saved arena chunk member in class:HandleMark
H A DvmStructs.cpp996 nonstatic_field(Arena, _chunk, Chunk*) \
/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.cpp45 address VtableStub::_chunk = NULL; member in class:VtableStub
59 if (_chunk == NULL || _chunk + real_size > _chunk_end) {
65 _chunk = blob->content_begin();
66 _chunk_end = _chunk + bytes;
67 Forte::register_stub("vtable stub", _chunk, _chunk_end);
72 JvmtiExport::post_dynamic_code_generated_while_holding_locks("vtable stub", _chunk, _chunk_end);
76 assert(_chunk + real_size <= _chunk_end, "bad allocation");
77 void* res = _chunk;
78 _chunk
[all...]
H A DvtableStubs.hpp38 static address _chunk; // For allocation member in class:VtableStub
87 uintptr_t off = (uintptr_t)( _chunk + sizeof(VtableStub) ) % pd_code_alignment();
88 if (off != 0) _chunk += pd_code_alignment() - off;

Completed in 41 milliseconds