Searched refs:num_bits (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DInstructionDecoder.java33 static int extractSignedIntFromNBits(int value, int num_bits) { argument
34 return (value << (32 - num_bits)) >> (32 - num_bits);
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.hpp449 Node *Ideal_sign_extended_input(PhaseGVN *phase, int num_bits);
H A Dmemnode.cpp2448 // If (conIL == conIR && conIR <= num_bits) this simplifies to
2450 Node *StoreNode::Ideal_sign_extended_input(PhaseGVN *phase, int num_bits) { argument
2454 if( t && t->is_con() && (t->get_con() <= num_bits) ) {

Completed in 270 milliseconds