Searched refs:BitsPerInt (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBits.java35 public static final int BitsPerInt = 32; field in class:Bits
/openjdk7/hotspot/src/share/vm/ci/
H A DciObject.cpp132 assert( id < ((uint)1 << (BitsPerInt-FLAG_BITS)), "id too big");
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.hpp50 number_of_count_bits = BitsPerInt - number_of_noncount_bits,
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp220 return live[reg>>LogBitsPerInt] & (1<<(reg&(BitsPerInt-1))); }
222 live[reg>>LogBitsPerInt] |= (1<<(reg&(BitsPerInt-1))); }
224 live[reg>>LogBitsPerInt] &= ~(1<<(reg&(BitsPerInt-1))); }
582 int max_reg_ints = round_to(max_reg, BitsPerInt)>>LogBitsPerInt;
H A Dregmask.hpp96 _WordBits = BitsPerInt,
H A Dmulnode.cpp640 return ( ti && ti->is_con() && ( ti->get_con() & ( BitsPerInt - 1 ) ) == 0 ) ? in(1) : this;
651 const int con = t2->get_con() & ( BitsPerInt - 1 ); // masked shift count
862 if ( t2->is_con() && ( t2->get_con() & ( BitsPerInt - 1 ) ) == 0 )
1072 if ( ti && ti->is_con() && ( ti->get_con() & ( BitsPerInt - 1 ) ) == 0 ) return in(1);
H A Dconnode.cpp920 jlong vbit = CONST64(1) << BitsPerInt;
1279 return TypeInt::make(BitsPerInt);
1325 return TypeInt::make(BitsPerInt);
H A Dlcm.cpp105 assert((int)reason < (int)BitsPerInt, "recode bit map");
H A Dloopnode.hpp233 int unrolled_count() { return 1 << MIN2(_unrolled_count_log2, BitsPerInt-3); }
H A Dgcm.cpp1320 assert(reason < BitsPerInt, "recode bit map");
H A Dsuperword.cpp1443 juint mask = (p0->bottom_type() == TypeInt::INT) ? (BitsPerInt - 1) : (BitsPerLong - 1);
H A Dcompile.cpp2877 juint mask = (n->bottom_type() == TypeInt::INT) ? (BitsPerInt - 1) : (BitsPerLong - 1);
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp168 tos_state_shift = BitsPerInt - tos_state_bits, // see verify_tos_state_shift below
195 secondary_cp_index_bits = BitsPerInt - main_cp_index_bits
H A Dklass.hpp400 _lh_array_tag_shift = BitsPerInt - _lh_array_tag_bits,
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.cpp167 BitsPerHeapOop = BitsPerInt;
H A DglobalDefinitions.hpp72 const int BitsPerInt = 1 << LogBitsPerInt; variable
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.hpp216 assert(dept < BitsPerInt, "oob");
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp438 result[0] <<= (BitsPerWord - BitsPerInt);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp679 __ sra(rval, BitsPerInt-1, rhi);
739 int shift = (code == Bytecodes::_i2b) ? (BitsPerInt - T_BYTE_aelem_bytes * BitsPerByte) : (BitsPerInt - BitsPerShort);
747 int shift = BitsPerInt - T_CHAR_aelem_bytes * BitsPerByte;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp376 assert(0 <= _next_loop_index && _next_loop_index < BitsPerInt, "_next_loop_index is used as a bit-index in integer");
1118 assert(0 < s0c && s0c < BitsPerInt, "adjust code below to handle corner cases");
1119 const int m = (1 << (BitsPerInt - s0c)) - 1;
H A Dc1_LIR.hpp231 , data_bits = BitsPerInt - non_data_bits
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp2041 _basic_types_per_int = BitsPerInt / _basic_type_bits,

Completed in 171 milliseconds