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

/openjdk7/hotspot/src/share/vm/runtime/
H A DregisterMap.hpp82 location_valid_type_size = sizeof(LocationValidType)*8, enumerator in enum:RegisterMap::__anon422
83 location_valid_size = (reg_count+location_valid_type_size-1)/location_valid_type_size
105 int index = reg->value() / location_valid_type_size;
108 if (_location_valid[index] & ((LocationValidType)1 << (reg->value() % location_valid_type_size))) {
116 int index = reg->value() / location_valid_type_size;
121 _location_valid[index] |= ((LocationValidType)1 << (reg->value() % location_valid_type_size));
H A Dframe.cpp86 int j = i*location_valid_type_size;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.cpp71 assert(R_L_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
72 assert(R_I_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
73 assert(R_O_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
74 assert(R_G_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");

Completed in 38 milliseconds