Searched defs:shift_count (Results 1 - 4 of 4) sorted by relevance
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | vectornode.cpp | 326 VectorNode* VectorNode::shift_count(Compile* C, Node* shift, Node* cnt, uint vlen, BasicType bt) { function in class:VectorNode
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | interp_masm_x86_32.cpp | 255 const int shift_count = (1 + byte_no) * BitsPerByte; local 256 assert((byte_no == TemplateTable::f1_byte && shift_count == ConstantPoolCacheEntry::bytecode_1_shift) || 257 (byte_no == TemplateTable::f2_byte && shift_count == ConstantPoolCacheEntry::bytecode_2_shift), 259 shrptr(bytecode, shift_count);
|
H A D | interp_masm_x86_64.cpp | 258 const int shift_count = (1 + byte_no) * BitsPerByte; local 259 assert((byte_no == TemplateTable::f1_byte && shift_count == ConstantPoolCacheEntry::bytecode_1_shift) || 260 (byte_no == TemplateTable::f2_byte && shift_count == ConstantPoolCacheEntry::bytecode_2_shift), 262 shrl(bytecode, shift_count);
|
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | interp_masm_sparc.cpp | 769 const int shift_count = (1 + byte_no) * BitsPerByte; local 770 assert((byte_no == TemplateTable::f1_byte && shift_count == ConstantPoolCacheEntry::bytecode_1_shift) || 771 (byte_no == TemplateTable::f2_byte && shift_count == ConstantPoolCacheEntry::bytecode_2_shift), 773 srl(bytecode, shift_count, bytecode);
|
Completed in 34 milliseconds