Searched refs:oopSize (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DageTable.cpp100 desired_survivor_size*oopSize, result, MaxTenuringThreshold);
110 age, sizes[age]*oopSize, total*oopSize);
114 _perf_sizes[age]->set_value(sizes[age]*oopSize);
124 desired_survivor_size*oopSize); variable
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.cpp72 size += round_to(cb->total_relocation_size(), oopSize);
75 size += round_to(cb->total_content_size(), oopSize);
76 size += round_to(cb->total_oop_size(), oopSize);
83 assert(size == round_to(size, oopSize), "unaligned size");
84 assert(locs_size == round_to(locs_size, oopSize), "unaligned size");
85 assert(header_size == round_to(header_size, oopSize), "unaligned size");
119 assert(size == round_to(size, oopSize), "unaligned size");
120 assert(header_size == round_to(header_size, oopSize), "unaligned size");
126 _relocation_size = round_to(cb->total_relocation_size(), oopSize);
129 _data_offset = _content_offset + round_to(cb->total_content_size(), oopSize);
[all...]
H A DexceptionHandlerTable.hpp117 int size_in_bytes() const { return round_to(_length * sizeof(HandlerTableEntry), oopSize); }
H A Dnmethod.cpp355 // adjust pcs_size so that it is a multiple of both oopSize and
357 // of oopSize, then 2*sizeof(PcDesc) is)
359 int nsize = round_to(pcs_size, oopSize);
363 assert((nsize % oopSize) == 0, "correct alignment");
583 + round_to(dependencies->size_in_bytes() , oopSize)
584 + round_to(handler_table->size_in_bytes(), oopSize)
585 + round_to(nul_chk_table->size_in_bytes(), oopSize)
586 + round_to(debug_info->data_size() , oopSize);
662 _scopes_data_offset = _oops_offset + round_to(code_buffer->total_oop_size(), oopSize);
744 _scopes_data_offset = _oops_offset + round_to(code_buffer->total_oop_size(), oopSize);
[all...]
H A DrelocInfo.cpp218 code_size = round_to(code_size, oopSize);
219 locs_size = round_to(locs_size, oopSize);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsatbQueue.cpp78 i -= oopSize;
91 new_index -= oopSize;
105 size_t entries_calc = (sz - _index) / oopSize;
108 size_t retained_calc = (sz - new_index) / oopSize;
139 size_t all_entries = sz / oopSize;
140 size_t retained_entries = (sz - _index) / oopSize;
162 for (size_t i = index; i < sz; i += oopSize) {
189 for (size_t i = _index; i < _sz; i += oopSize) {
H A DptrQueue.cpp56 for (size_t i = 0; i < _index; i += oopSize) {
68 assert((ind % oopSize) == 0, "Invariant.");
69 return ind / oopSize;
73 return byte_ind * oopSize;
85 _index -= oopSize;
278 _sz = sz * oopSize;
H A DptrQueue.hpp125 assert((ind % oopSize) == 0, "Invariant.");
126 return ind / oopSize;
130 return byte_ind * oopSize;
H A DdirtyCardQueue.cpp65 for (size_t i = index; i < sz; i += oopSize) {
298 for (size_t i = 0; i < t->dirty_card_queue().get_index(); i += oopSize) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.hpp262 oop* handle = (oop*) (UseMallocOnly ? internal_malloc_4(oopSize) : Amalloc_4(oopSize));
264 oop* handle = (oop*) Amalloc_4(oopSize);
280 size_t used() const { return Arena::used() / oopSize; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DObjectHeap.java157 oopSize = VM.getVM().getOopSize();
177 private long oopSize; field in class:ObjectHeap
187 public long getOopSize() { return oopSize; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java105 private int oopSize; field in class:VM
329 oopSize = db.lookupIntConstant("oopSize").intValue();
482 return oopSize;
/openjdk7/hotspot/src/share/vm/services/
H A DclassLoadingService.cpp193 return class_size * oopSize;
H A DheapDumper.cpp792 case JVM_SIGNATURE_ARRAY : size += oopSize; break;
1127 write_header(writer, HPROF_FRAME, 4*oopSize + 2*sizeof(u4));
1157 DumperSupport::write_header(writer(), HPROF_UTF8, oopSize + len);
1542 u4 remaining = 2*oopSize + 2*sizeof(u4);
1740 writer()->write_u4(oopSize);
1841 DumperSupport::write_header(writer(), HPROF_TRACE, 3*sizeof(u4) + depth*oopSize); local
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.cpp169 heapOopSize = oopSize;
H A DglobalDefinitions.hpp81 const int oopSize = sizeof(char*); // Full-width oop variable
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebuggerBase.java57 protected long oopSize; field in class:DebuggerBase
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A Dsa.js79 var oopSize = sa.vm.oopSize;
/openjdk7/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp2723 tty->print_cr("%d classes (%d bytes)", nclasses, class_size * oopSize);
2725 (method_size + debug_size) * oopSize, method_size * oopSize, debug_size * oopSize);
2726 tty->print_cr("%d methoddata (%d bytes)", nmethoddata, methoddata_size * oopSize);
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.cpp1314 fixed = no_klasses * oopSize; // vtable length
1316 filler = oopSize * (no_klasses - no_instance_klasses) * (sizeof(instanceKlass) - sizeof(arrayKlass) - 1);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_Runtime1_sparc.cpp854 __ sub(tmp, oopSize, tmp);
953 __ sub(tmp3, oopSize, tmp3);
H A Dassembler_sparc.cpp4344 __ sub(L0, oopSize, L0);
4559 __ sub(L0, oopSize, L0);
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.cpp625 assert(round_to(dest.total_content_size(), oopSize) == dest_blob->content_size(), "sanity");
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp1975 HeapWord* to_zero = (HeapWord*) result + sizeof(oopDesc) / oopSize;
1976 obj_size -= sizeof(oopDesc) / oopSize;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86_32.cpp3323 __ shrl(rdx, LogBytesPerLong); // divide by 2*oopSize and set carry flag if odd
3339 __ movptr(Address(rax, rdx, Address::times_8, sizeof(oopDesc) - 1*oopSize), rcx);
3340 NOT_LP64(__ movptr(Address(rax, rdx, Address::times_8, sizeof(oopDesc) - 2*oopSize), rcx));

Completed in 134 milliseconds

12