Searched refs:size_in_bytes (Results 26 - 50 of 71) sorted by relevance

123

/openjdk9/hotspot/src/cpu/arm/vm/
H A DmacroAssembler_arm.cpp1454 void MacroAssembler::incr_allocated_bytes(RegisterOrConstant size_in_bytes, Register tmp) { argument
1457 add_rc(tmp, tmp, size_in_bytes);
1464 adds(tmp, tmp, size_in_bytes);
1474 if (size_in_bytes.is_register() && (size_in_bytes.as_register() == R0 || size_in_bytes.as_register() == R1)) {
1484 adds(low, low, size_in_bytes);
2429 void MacroAssembler::load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed) { argument
2430 switch (size_in_bytes) {
2439 void MacroAssembler::store_sized_value(Register src, Address dst, size_t size_in_bytes) { argument
2451 load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, AsmCondition cond) argument
2462 store_sized_value(Register src, Address dst, size_t size_in_bytes, AsmCondition cond) argument
[all...]
H A DmacroAssembler_arm.hpp367 void incr_allocated_bytes(RegisterOrConstant size_in_bytes, Register tmp);
1309 void load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed);
1310 void store_sized_value(Register src, Address dst, size_t size_in_bytes);
1313 void load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, AsmCondition cond = al);
1314 void store_sized_value(Register src, Address dst, size_t size_in_bytes, AsmCondition cond = al);
H A DstubGenerator_arm.cpp2262 // Loads one 'size_in_bytes'-sized value from 'from' in given direction, i.e.
2264 // if !forward: loads value at from-size_in_bytes and decreases from by size
2265 void load_one(Register rd, Register from, int size_in_bytes, bool forward) {
2267 Address addr = get_addr_with_indexing(from, size_in_bytes, forward);
2268 __ load_sized_value(rd, addr, size_in_bytes, false);
2271 // Stores one 'size_in_bytes'-sized value to 'to' in given direction (see load_one)
2272 void store_one(Register rd, Register to, int size_in_bytes, bool forward) {
2274 Address addr = get_addr_with_indexing(to, size_in_bytes, forward);
2275 __ store_sized_value(rd, addr, size_in_bytes);
2282 void load_one(Register rd, Register from, int size_in_bytes, boo
[all...]
/openjdk9/hotspot/src/share/vm/oops/
H A DklassVtable.hpp195 static int size_in_bytes() { return sizeof(vtableEntry); } function in class:VALUE_OBJ_CLASS_SPEC
H A DmethodData.cpp910 int size_in_bytes = compute_data_size(&stream); local
911 data_size += size_in_bytes;
912 if (size_in_bytes == 0 JVMCI_ONLY(&& Bytecodes::can_trap(c))) empty_bc_count += 1;
1114 int next_index = current_index + current->size_in_bytes();
1159 int size_in_bytes = initialize_data(&stream, data_size); local
1160 data_size += size_in_bytes;
1161 if (size_in_bytes == 0 JVMCI_ONLY(&& Bytecodes::can_trap(c))) empty_bc_count += 1;
H A DmethodData.hpp317 int size_in_bytes() {
2238 return param == NULL ? 0 : param->size_in_bytes();
2338 int size_in_bytes() const { return _size; } function in class:MethodData
2499 DataLayout* extra_data_limit() const { return (DataLayout*)((address)this + size_in_bytes()); }
2500 DataLayout* args_data_limit() const { return (DataLayout*)((address)this + size_in_bytes() -
/openjdk9/hotspot/src/share/vm/runtime/
H A Dhandles.hpp304 size_t size_in_bytes() const { return _size_in_bytes; } function in class:HandleMark
H A Djava.cpp129 tty->print_cr(" mdo size: %d bytes", m->method_data()->size_in_bytes());
137 total_size += m->method_data()->size_in_bytes();
/openjdk9/hotspot/src/share/vm/opto/
H A Dmemnode.cpp575 intptr_t size_in_bytes = memory_size(); local
599 if (st_offset >= offset + size_in_bytes ||
3370 // If size_in_bytes is zero, do not bother with overlap checks.
3372 int size_in_bytes,
3399 if (st_off < start + size_in_bytes) {
3404 if (size_in_bytes != 0 &&
3410 if (size_in_bytes != 0 &&
3411 st->as_Store()->memory_size() != size_in_bytes) {
3425 Node* InitializeNode::find_captured_store(intptr_t start, int size_in_bytes, argument
3428 int i = captured_store_insertion_point(start, size_in_bytes, phas
3371 captured_store_insertion_point(intptr_t start, int size_in_bytes, PhaseTransform* phase) argument
3478 int size_in_bytes = st->memory_size(); local
3548 coalesce_subword_stores(intptr_t header_size, Node* size_in_bytes, PhaseGVN* phase) argument
3826 complete_stores(Node* rawctl, Node* rawmem, Node* rawptr, intptr_t header_size, Node* size_in_bytes, PhaseGVN* phase) argument
[all...]
H A Dmacro.hpp196 Node* size_in_bytes);
H A Dmemnode.hpp1334 Node* find_captured_store(intptr_t start, int size_in_bytes, PhaseTransform* phase);
1338 intptr_t header_size, Node* size_in_bytes,
1345 int captured_store_insertion_point(intptr_t start, int size_in_bytes,
1354 void coalesce_subword_stores(intptr_t header_size, Node* size_in_bytes,
H A Dmacro.cpp1316 // that heap_top + size_in_bytes does not wrap around the 4Gig limit.
1337 Node* size_in_bytes = alloc->in(AllocateNode::AllocSize); local
1451 Node *new_eden_top = new AddPNode(top(), old_eden_top, size_in_bytes);
1530 Node* alloc_size = size_in_bytes;
1532 Node* alloc_size = new ConvI2LNode(size_in_bytes);
1544 klass_node, length, size_in_bytes);
1807 Node* size_in_bytes) {
1845 header_size, size_in_bytes,
1854 header_size, size_in_bytes, &_igvn);
1804 initialize_object(AllocateNode* alloc, Node* control, Node* rawmem, Node* object, Node* klass_node, Node* length, Node* size_in_bytes) argument
/openjdk9/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1146 vtableEntry::size_in_bytes(),
1185 LLVMValue::intptr_constant(exact_log2(vtableEntry::size_in_bytes()))),
1676 size_t size_in_bytes = klass->size_helper() << LogHeapWordSize; local
1692 old_top, LLVMValue::intptr_constant(size_in_bytes));
1725 old_top, LLVMValue::intptr_constant(size_in_bytes));
1757 LLVMValue::jint_constant(size_in_bytes),
/openjdk9/hotspot/src/share/vm/code/
H A Ddependencies.hpp450 size_t size_in_bytes() { function in class:Dependencies
576 initial_asserts(deps->size_in_bytes());
H A Dnmethod.cpp489 + 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)
737 _handler_table_offset = _dependencies_offset + round_to(dependencies->size_in_bytes (), oopSize);
738 _nul_chk_table_offset = _handler_table_offset + round_to(handler_table->size_in_bytes(), oopSize);
739 _nmethod_end_offset = _nul_chk_table_offset + round_to(nul_chk_table->size_in_bytes(), oopSize);
H A Ddependencies.cpp374 guarantee(end - beg >= (ptrdiff_t) size_in_bytes(), "bad sizing");
377 size_in_bytes() / sizeof(HeapWord));
378 assert(size_in_bytes() % sizeof(HeapWord) == 0, "copy by words");
/openjdk9/hotspot/src/share/vm/utilities/
H A DbitMap.hpp182 idx_t size_in_bytes() const { return calc_size_in_bytes(size()); } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk9/hotspot/src/cpu/sparc/vm/
H A DmacroAssembler_sparc.cpp946 void MacroAssembler::save_frame_c1(int size_in_bytes) { argument
947 if (is_simm13(-size_in_bytes)) {
948 save(SP, -size_in_bytes, SP);
950 set(-size_in_bytes, G3_scratch);
1875 void MacroAssembler::load_sized_value(Address src, Register dst, size_t size_in_bytes, bool is_signed) { argument
1876 switch (size_in_bytes) {
1885 void MacroAssembler::store_sized_value(Register src, Address dst, size_t size_in_bytes) { argument
1886 switch (size_in_bytes) {
2094 int vte_size = vtableEntry::size_in_bytes();
2101 int itb_scale = exact_log2(vtableEntry::size_in_bytes());
3382 incr_allocated_bytes(RegisterOrConstant size_in_bytes, Register t1, Register t2) argument
[all...]
H A DmacroAssembler_sparc.hpp1186 void save_frame_c1(int size_in_bytes);
1225 void load_sized_value( Address src, Register dst, size_t size_in_bytes, bool is_signed);
1226 void store_sized_value(Register src, Address dst, size_t size_in_bytes);
1284 void incr_allocated_bytes(RegisterOrConstant size_in_bytes,
/openjdk9/hotspot/src/cpu/ppc/vm/
H A DmacroAssembler_ppc.hpp58 void load_sized_value( Register dst, RegisterOrConstant offs, Register base, size_t size_in_bytes, bool is_signed);
59 void store_sized_value(Register dst, RegisterOrConstant offs, Register base, size_t size_in_bytes);
603 void incr_allocated_bytes(RegisterOrConstant size_in_bytes, Register t1, Register t2);
/openjdk9/hotspot/src/share/vm/gc/g1/
H A Dg1CardLiveData.cpp426 size_t const num_chunks = align_size_up(live_cards_bm().size_in_bytes(), G1ClearCardLiveDataTask::chunk_size()) / G1ClearCardLiveDataTask::chunk_size();
/openjdk9/hotspot/src/share/vm/ci/
H A DbcEscapeAnalyzer.cpp215 bool BCEscapeAnalyzer::is_arg_modified(int arg, int offset, int size_in_bytes) {
221 int h = round_to(offset + size_in_bytes, HeapWordSize) / HeapWordSize;
232 void BCEscapeAnalyzer::set_arg_modified(int arg, int offset, int size_in_bytes) {
239 int h = round_to(offset + size_in_bytes, HeapWordSize) / HeapWordSize;
H A DciMethodData.hpp414 return _parameters == NULL ? 0 : parameters_type_data()->size_in_bytes();
/openjdk9/hotspot/src/share/vm/memory/
H A Dallocation.hpp488 size_t size_in_bytes() const { return _size_in_bytes; }; function in class:Arena
/openjdk9/hotspot/src/cpu/s390/vm/
H A DmacroAssembler_s390.hpp169 void load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed);
170 void store_sized_value(Register src, Address dst, size_t size_in_bytes);

Completed in 471 milliseconds

123