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

/openjdk7/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...]
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.cpp460 assert(in_words(size()) == 4, "check code below - may need adjustment");
470 assert(in_words(size()) == 4, "check code below - may need adjustment");
480 assert(in_words(size()) == 4, "check code below - may need adjustment");
490 assert(in_words(size()) == 4, "check code below - may need adjustment");
500 assert(in_words(size()) == 4, "check code below - may need adjustment");
510 assert(in_words(size()) == 4, "check code below - may need adjustment");
H A DcpCacheOop.hpp399 static int object_size(int length) { return align_object_size(header_size() + length * in_words(ConstantPoolCacheEntry::size())); }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp306 int locals_size_in_words() const { return in_words(_locals_size); }
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.cpp231 popframe_preserved_args_size_in_words = in_words(thread->popframe_preserved_args_size_in_words());
H A Ddeoptimization.cpp373 popframe_extra_args = in_words(thread->popframe_preserved_args_size_in_words());
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp673 __ shll(rdx, exact_log2(in_words(ConstantPoolCacheEntry::size())));
687 assert(in_words(ConstantPoolCacheEntry::size()) == 4, "adjust shift below");
H A DtemplateInterpreter_x86_64.cpp641 __ shll(rdx, exact_log2(in_words(ConstantPoolCacheEntry::size())));
652 assert(in_words(ConstantPoolCacheEntry::size()) == 4,
H A DcppInterpreter_x86.cpp834 __ shll(rdx, exact_log2(in_words(ConstantPoolCacheEntry::size())));
848 assert(in_words(ConstantPoolCacheEntry::size()) == 4, "adjust shift below");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp756 sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
791 sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
H A DtemplateInterpreter_sparc.cpp670 __ srl(G1_scratch, 2*BitsPerByte - exact_log2(in_words(
H A DcppInterpreter_sparc.cpp489 __ srl(G1_scratch, 2*BitsPerByte - exact_log2(in_words(

Completed in 430 milliseconds