Searched refs:in_words (Results 1 - 8 of 8) sorted by relevance

/openjdk10/hotspot/src/share/vm/utilities/
H A Dsizes.hpp107 inline friend int in_words(WordSize x);
110 friend WordSize operator + (WordSize x, WordSize y) { return WordSize(in_words(x) + in_words(y)); }
111 friend WordSize operator - (WordSize x, WordSize y) { return WordSize(in_words(x) - in_words(y)); }
112 friend WordSize operator * (WordSize x, int y) { return WordSize(in_words(x) * y ); }
115 friend bool operator == (WordSize x, WordSize y) { return in_words(x) == in_words(y); }
116 friend bool operator != (WordSize x, WordSize y) { return in_words(x) != in_words(
124 inline int in_words(WordSize x) { return x._size; } function
143 inline int in_words (WordSize x) { return x; } function
[all...]
/openjdk10/hotspot/src/share/vm/oops/
H A DcpCache.hpp478 static int size(int length) { return align_metadata_size(header_size() + length * in_words(ConstantPoolCacheEntry::size())); }
/openjdk10/hotspot/src/share/vm/runtime/
H A DvframeArray.cpp242 popframe_preserved_args_size_in_words = in_words(thread->popframe_preserved_args_size_in_words());
H A Ddeoptimization.cpp391 popframe_extra_args = in_words(thread->popframe_preserved_args_size_in_words());
/openjdk10/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp677 sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
712 sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
/openjdk10/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86.cpp461 assert(exact_log2(in_words(ConstantPoolCacheEntry::size())) == 2, "else change next line");
/openjdk10/hotspot/src/cpu/s390/vm/
H A Dinterp_masm_s390.cpp327 z_sllg(cpe_offset, cpe_offset, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord));
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dinterp_masm_ppc_64.cpp428 sldi(cache, cache, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord));

Completed in 205 milliseconds