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

123

/openjdk9/hotspot/src/share/vm/jvmci/
H A DjvmciCompilerToVM.cpp1132 int table_size = handler->size_in_bytes();
1667 return profile_data->size_in_bytes();
1675 return profile_data->size_in_bytes();
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DmacroAssembler_aarch64.hpp614 void load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, Register dst2 = noreg);
615 void store_sized_value(Address dst, Register src, size_t size_in_bytes, Register src2 = noreg);
H A DmacroAssembler_aarch64.cpp939 int vte_size = vtableEntry::size_in_bytes();
1813 void MacroAssembler::load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, Register dst2) {
1814 switch (size_in_bytes) {
1823 void MacroAssembler::store_sized_value(Address dst, Register src, size_t size_in_bytes, Register src2) {
1824 switch (size_in_bytes) {
H A Dinterp_masm_aarch64.cpp243 assert(exact_log2(in_bytes(ConstantPoolCacheEntry::size_in_bytes())) == 2 + LogBytesPerWord, "else change next line");
/openjdk9/hotspot/src/share/vm/ci/
H A DciMethodData.cpp259 int next_index = current_index + current->size_in_bytes();
/openjdk9/hotspot/src/share/vm/runtime/
H A Dthread.cpp3122 void JavaThread::popframe_preserve_args(ByteSize size_in_bytes, void* start) {
3124 if (in_bytes(size_in_bytes) != 0) {
3125 _popframe_preserved_args = NEW_C_HEAP_ARRAY(char, in_bytes(size_in_bytes), mtThread);
3126 _popframe_preserved_args_size = in_bytes(size_in_bytes);
H A Dthread.hpp1821 void popframe_preserve_args(ByteSize size_in_bytes, void* start);
/openjdk9/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp662 tty->print_cr(" Symbol arena size " SIZE_FORMAT_W(7) "K", arena()->size_in_bytes()/1024);
/openjdk9/hotspot/src/cpu/ppc/vm/
H A DmacroAssembler_ppc.cpp83 size_t size_in_bytes, bool is_signed) {
84 switch (size_in_bytes) {
94 size_t size_in_bytes) {
95 switch (size_in_bytes) {
1800 int log_vte_size= exact_log2(vtableEntry::size_in_bytes());
2337 void MacroAssembler::incr_allocated_bytes(RegisterOrConstant size_in_bytes, Register t1, Register t2) { argument
82 load_sized_value(Register dst, RegisterOrConstant offs, Register base, size_t size_in_bytes, bool is_signed) argument
93 store_sized_value(Register dst, RegisterOrConstant offs, Register base, size_t size_in_bytes) argument
H A Dc1_LIRAssembler_ppc.cpp2340 if (!Assembler::is_simm16(md->byte_offset_of_slot(data, DataLayout::header_offset()) + data->size_in_bytes())) {
2729 data->size_in_bytes())) {
H A DtemplateTable_ppc_64.cpp3343 __ sldi(Rindex, Rindex, exact_log2(vtableEntry::size_in_bytes()));
/openjdk9/hotspot/src/cpu/s390/vm/
H A DmacroAssembler_s390.cpp776 void MacroAssembler::load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed) {
777 switch (size_in_bytes) {
786 void MacroAssembler::store_sized_value(Register src, Address dst, size_t size_in_bytes) {
787 switch (size_in_bytes) {
2745 z_sllg(vtable_len, vtable_len, exact_log2(vtableEntry::size_in_bytes()));
H A DtemplateTable_s390.cpp3466 __ z_sllg(index, index, exact_log2(vtableEntry::size_in_bytes()));
/openjdk9/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86.cpp493 assert(exact_log2(in_bytes(ConstantPoolCacheEntry::size_in_bytes())) == 2 + LogBytesPerWord, "else change next line");
H A DmacroAssembler_x86.hpp139 void load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, Register dst2 = noreg);
140 void store_sized_value(Address dst, Register src, size_t size_in_bytes, Register src2 = noreg);
H A DmacroAssembler_x86.cpp3309 void MacroAssembler::load_sized_value(Register dst, Address src, size_t size_in_bytes, bool is_signed, Register dst2) { argument
3310 switch (size_in_bytes) {
3327 void MacroAssembler::store_sized_value(Address dst, Register src, size_t size_in_bytes, Register src2) { argument
3328 switch (size_in_bytes) {
5745 int vte_size = vtableEntry::size_in_bytes();
/openjdk9/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp2496 if (!Assembler::is_simm13(md->byte_offset_of_slot(data, DataLayout::header_offset()) + data->size_in_bytes())) {
2927 data->size_in_bytes())) {
/openjdk9/hotspot/src/cpu/arm/vm/
H A Dc1_LIRAssembler_arm.cpp1313 if (md->byte_offset_of_slot(data, DataLayout::header_offset()) + data->size_in_bytes() >= 4096) {
3162 if (md->byte_offset_of_slot(data, CounterData::count_offset()) + data->size_in_bytes() >= max_offset) {
/openjdk9/hotspot/src/share/vm/opto/
H A DgraphKit.cpp3909 intptr_t size_in_bytes = type2aelembytes(bt); local
3932 if (st_offset >= offset + size_in_bytes ||
H A Dlibrary_call.cpp4092 vtable_index*vtableEntry::size_in_bytes() +
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp3018 int entry_offset = in_bytes(Klass::vtable_start_offset()) + x->vtable_index() * vtableEntry::size_in_bytes();

Completed in 578 milliseconds

123