Searched refs:round_to (Results 1 - 25 of 69) sorted by relevance

123

/openjdk9/hotspot/src/cpu/sparc/vm/
H A DabstractInterpreter_sparc.cpp74 round_to(frame::interpreter_frame_vm_local_words,WordsPerLong);
77 round_to(callee_extra_locals * Interpreter::stackElementWords, WordsPerLong);
79 return (round_to((max_stack_words
90 int call_stub_size = round_to(7 + frame::memory_parameter_word_sp_offset,
113 assert(monitor_size == round_to(monitor_size, WordsPerLong), "must align");
139 int rounded_cls = round_to((callee_locals - callee_params), WordsPerLong);
140 assert(rounded_cls == round_to(rounded_cls, WordsPerLong), "must align");
174 int rounded_vm_local_words = round_to(frame::interpreter_frame_vm_local_words,WordsPerLong);
176 assert(monitor_size == round_to(monitor_size, WordsPerLong), "must align");
206 int computed_sp_adjustment = (delta > 0) ? round_to(delt
[all...]
H A Dframe_sparc.inline.hpp137 int rounded_vm_local_words = round_to(frame::interpreter_frame_vm_local_words, WordsPerLong);
151 return round_to(BasicObjectLock::size(), WordsPerLong);
H A DsharedRuntime_sparc.cpp80 // can't use round_to because it doesn't produce compile time constant
122 int frame_size = round_to(additional_frame_words + register_save_size, 16);
437 slot = round_to(slot, 2); // align
447 slot = round_to(slot, 2); // align
464 if (round_to(flt_reg, 2) + 1 < flt_reg_max) {
465 flt_reg = round_to(flt_reg, 2); // align
470 slot = round_to(slot, 2); // align
696 const int extraspace = round_to(arg_size + varargs_area, 2*wordSize);
918 int comp_words_on_stack = round_to(comp_args_on_stack*VMRegImpl::stack_slot_size, wordSize)>>LogBytesPerWord;
920 comp_words_on_stack = round_to(comp_words_on_stac
[all...]
H A DtemplateInterpreterGenerator_sparc.cpp792 int rounded_vm_local_words = round_to( frame::interpreter_frame_vm_local_words, WordsPerLong );
822 __ round_to( Gframe_size, WordsPerLong );
837 __ round_to(Glocals_size, WordsPerLong);
846 __ round_to(Gframe_size, WordsPerLong);
/openjdk9/hotspot/src/share/vm/code/
H A DicBuffer.hpp58 static int code_size_to_size(int code_size) { return round_to(sizeof(ICStub), CodeEntryAlignment) + code_size; }
65 address code_begin() const { return (address)this + round_to(sizeof(ICStub), CodeEntryAlignment); }
87 ICStub* stub = (ICStub*) (destination_address - round_to(sizeof(ICStub), CodeEntryAlignment));
H A DcodeBlob.cpp62 size += round_to(cb->total_relocation_size(), oopSize);
65 size += round_to(cb->total_content_size(), oopSize);
66 size += round_to(cb->total_oop_size(), oopSize);
67 size += round_to(cb->total_metadata_size(), oopSize);
89 assert(layout.size() == round_to(layout.size(), oopSize), "unaligned size");
90 assert(layout.header_size() == round_to(layout.header_size(), oopSize), "unaligned size");
91 assert(layout.relocation_size() == round_to(layout.relocation_size(), oopSize), "unaligned size");
116 assert(_size == round_to(_size, oopSize), "unaligned size");
117 assert(_header_size == round_to(_header_size, oopSize), "unaligned size");
133 assert(locs_size == round_to(locs_siz
[all...]
H A DexceptionHandlerTable.hpp117 int size_in_bytes() const { return round_to(_length * sizeof(HandlerTableEntry), oopSize); }
H A Dstubs.cpp67 intptr_t size = round_to(buffer_size, 2*BytesPerWord);
114 int requested_size = round_to(stub_code_size_to_size(requested_code_size), CodeEntryAlignment);
152 int committed_size = round_to(stub_code_size_to_size(committed_code_size), CodeEntryAlignment);
H A DcodeBlob.hpp266 assert(_relocation_size == round_to(_relocation_size, oopSize), "unaligned size");
282 _relocation_size(round_to(cb->total_relocation_size(), oopSize)),
285 _data_offset(_content_offset + round_to(cb->total_content_size(), oopSize))
287 assert(_relocation_size == round_to(_relocation_size, oopSize), "unaligned size");
H A Dnmethod.cpp370 int nsize = round_to(pcs_size, oopSize);
489 + round_to(dependencies->size_in_bytes() , oopSize)
490 + round_to(handler_table->size_in_bytes(), oopSize)
491 + round_to(nul_chk_table->size_in_bytes(), oopSize)
492 + round_to(debug_info->data_size() , oopSize);
577 _metadata_offset = _oops_offset + round_to(code_buffer->total_oop_size(), oopSize);
578 scopes_data_offset = _metadata_offset + round_to(code_buffer->total_metadata_size(), wordSize);
732 _metadata_offset = _oops_offset + round_to(code_buffer->total_oop_size(), oopSize);
733 int scopes_data_offset = _metadata_offset + round_to(code_buffer->total_metadata_size(), wordSize);
735 _scopes_pcs_offset = scopes_data_offset + round_to(debug_inf
[all...]
H A DvtableStubs.cpp54 const int real_size = round_to(code_size + sizeof(VtableStub), wordSize);
/openjdk9/hotspot/src/share/vm/interpreter/
H A Dinterpreter.hpp62 static int code_size_to_size(int code_size) { return round_to(sizeof(InterpreterCodelet), CodeEntryAlignment) + code_size; }
65 address code_begin() const { return (address)this + round_to(sizeof(InterpreterCodelet), CodeEntryAlignment); }
/openjdk9/hotspot/src/share/vm/gc/parallel/
H A DgenerationSizer.cpp58 size_t new_alignment = round_to(page_sz, _gen_alignment);
H A DmutableNUMASpace.cpp99 HeapWord *crossing_start = (HeapWord*)round_to(cur_top, os::vm_page_size());
100 HeapWord *crossing_end = (HeapWord*)round_to(cur_top + touched_words, os::vm_page_size());
105 HeapWord *end = MIN2((HeapWord*)round_to(cur_top + touched_words, page_size()), s->end());
290 HeapWord *start = (HeapWord*)round_to((intptr_t)mr.start(), page_size());
309 HeapWord *start = (HeapWord*)round_to((intptr_t)mr.start(), page_size());
478 HeapWord* p = (HeapWord*)round_to((intptr_t) intersection.start(), alignment());
543 p = (HeapWord*)round_to((intptr_t) end, alignment());
574 HeapWord* rounded_bottom = (HeapWord*)round_to((intptr_t) bottom(), page_size());
582 rounded_bottom = (HeapWord*)round_to((intptr_t) bottom(), page_size());
915 char *start = (char*)round_to((intptr_
[all...]
H A DmutableSpace.cpp47 HeapWord *start = (HeapWord*)round_to((intptr_t) mr.start(), page_size);
/openjdk9/hotspot/src/share/vm/runtime/
H A Dicache.cpp102 call_flush_stub(start, round_to(nbytes, ICache::line_size) >>
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.cpp190 _framesize = round_to(in_bytes(sp_offset_for_monitor_base(0)) +
273 int offset = round_to(first_available_sp_in_frame + _reserved_argument_area_size, sizeof(double)) +
279 int end_of_spills = round_to(first_available_sp_in_frame + _reserved_argument_area_size, sizeof(double)) +
281 int offset = (int) round_to(end_of_spills, HeapWordSize) + index * sizeof(BasicObjectLock);
/openjdk9/hotspot/src/share/vm/utilities/
H A Dcopy.hpp207 size_t count = (size_t)round_to(byte_count, HeapWordSize) >> LogHeapWordSize;
221 size_t count = (size_t)round_to(byte_count, HeapWordSize) >> LogHeapWordSize;
329 if ((size_t)round_to(byte_count, unit_size) != byte_count) {
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DabstractInterpreter_aarch64.cpp124 size = round_to(size, 2);
/openjdk9/hotspot/src/cpu/ppc/vm/
H A Dframe_ppc.inline.hpp196 return round_to(BasicObjectLock::size(), // number of stack slots
H A DsharedRuntime_ppc.cpp224 const int frame_size_in_bytes = round_to(register_save_size, frame::alignment_in_bytes)
661 return round_to(stk, 2);
848 return round_to(stk, 2);
876 round_to(total_args_passed * wordSize, frame::alignment_in_bytes);
1025 comp_words_on_stack = round_to(comp_args_on_stack*VMRegImpl::stack_slot_size, wordSize)>>LogBytesPerWord;
1027 comp_words_on_stack = round_to(comp_words_on_stack, 2);
1921 total_save_slots = double_slots * 2 + round_to(single_slots, 2); // round to even
1948 stack_slots = round_to(stack_slots, // 7)
2207 round_to(total_c_args * wordSize, frame::alignment_in_bytes);
2573 return round_to((callee_local
[all...]
/openjdk9/hotspot/src/share/vm/memory/
H A Dvirtualspace.cpp653 _lower_high_boundary = (char*) round_to((intptr_t) low_boundary(), middle_alignment());
815 char* aligned_lower_new_high = (char*) round_to((intptr_t) unaligned_lower_new_high, lower_alignment());
816 char* aligned_middle_new_high = (char*) round_to((intptr_t) unaligned_middle_new_high, middle_alignment());
817 char* aligned_upper_new_high = (char*) round_to((intptr_t) unaligned_upper_new_high, upper_alignment());
902 (char*) round_to((intptr_t) unaligned_upper_new_high, upper_alignment());
904 (char*) round_to((intptr_t) unaligned_middle_new_high, middle_alignment());
906 (char*) round_to((intptr_t) unaligned_lower_new_high, lower_alignment());
/openjdk9/hotspot/src/share/vm/gc/cms/
H A DconcurrentMarkSweepGeneration.inline.hpp448 MemRegion mr2(mr.start(), (HeapWord*)round_to((intptr_t)mr.end(),
457 MemRegion mr2(mr.start(), (HeapWord*)round_to((intptr_t)mr.end(),
/openjdk9/hotspot/src/cpu/s390/vm/
H A Dframe_s390.inline.hpp244 return round_to(BasicObjectLock::size() /* number of stack slots */,
/openjdk9/hotspot/src/cpu/arm/vm/
H A DabstractInterpreter_arm.cpp128 size = round_to(size, StackAlignmentInBytes/BytesPerWord);

Completed in 390 milliseconds

123