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

/openjdk10/hotspot/src/share/vm/memory/
H A DmemRegion.hpp47 size_t _word_size; member in class:VALUE_OBJ_CLASS_SPEC
50 MemRegion() : _start(NULL), _word_size(0) {};
52 _start(start), _word_size(word_size) {};
54 _start(start), _word_size(pointer_delta(end, start)) {
58 _start((HeapWord*)start), _word_size(pointer_delta(end, start)) {
62 MemRegion(const MemRegion& mr): _start(mr._start), _word_size(mr._word_size) {}
72 HeapWord* end() const { return _start + _word_size; }
73 HeapWord* last() const { return _start + _word_size - 1; }
76 void set_end(HeapWord* end) { _word_size
[all...]
H A Dmetachunk.hpp37 size_t _word_size; member in class:VALUE_OBJ_CLASS_SPEC
42 Metabase(size_t word_size) : _word_size(word_size), _next(NULL), _prev(NULL) {}
52 size_t size() const volatile { return _word_size; }
53 void set_size(size_t v) { _word_size = v; }
70 void* size_addr() const { return (void*)&_word_size; }
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dvm_operations_g1.cpp47 _result = g1h->satisfy_failed_allocation(_word_size, allocation_context(), &_pause_succeeded);
95 if (_word_size > 0) {
97 _result = g1h->attempt_allocation_at_safepoint(_word_size,
139 assert(_word_size == 0, "Concurrent Full GC/Humongous Object IM shouldn't be allocating");
149 if (_pause_succeeded && _word_size > 0) {
151 _result = g1h->attempt_allocation_at_safepoint(_word_size,
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DvmPSOperations.cpp46 _result = heap->failed_mem_allocate(_word_size);
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DvmStructs_cms.hpp41 nonstatic_field(LinearAllocBlock, _word_size, size_t) \
H A DcompactibleFreeListSpace.cpp263 _smallLinearAllocBlock._word_size = 0;
320 if (_smallLinearAllocBlock._word_size != 0) {
358 _smallLinearAllocBlock._word_size) * HeapWordSize;
365 res = MAX2(res, MIN2(_smallLinearAllocBlock._word_size,
388 p2i(_ptr), _word_size, _refillSize, _allocation_size_limit);
1246 (_smallLinearAllocBlock._word_size == fc->size()),
1249 (_smallLinearAllocBlock._word_size == fc->size()));
1342 if (blk->_word_size == 0) {
1349 assert(blk->_word_size != 0 && blk->_ptr != NULL, "consistency check");
1354 if (blk->_word_size
[all...]
H A DcompactibleFreeListSpace.hpp52 LinearAllocBlock() : _ptr(0), _word_size(0), _refillSize(0),
57 _word_size = word_size;
62 size_t _word_size; member in class:VALUE_OBJ_CLASS_SPEC
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DvmGCOperations.cpp167 _result = gch->satisfy_failed_allocation(_word_size, _tlab);
284 : VM_GC_Operation(gc_count_before, cause), _result(NULL), _word_size(word_size) {
286 if (_word_size != 0) {
287 AllocTracer::send_allocation_requiring_gc_event(_word_size * HeapWordSize, GCId::peek());
H A DvmGCOperations.hpp160 size_t _word_size; // Size of object to be allocated (in number of words) member in class:VM_CollectForAllocation
/openjdk10/hotspot/src/os/solaris/dtrace/
H A DgenerateJvmOffsets.cpp188 GEN_OFFS(MemRegion, _word_size);
/openjdk10/hotspot/src/os/bsd/dtrace/
H A DgenerateJvmOffsets.cpp193 GEN_OFFS(MemRegion, _word_size);
/openjdk10/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp518 nonstatic_field(MemRegion, _word_size, size_t) \

Completed in 83 milliseconds