< prev index next >

src/share/vm/c1/c1_LIR.cpp

Print this page




 125 
 126 
 127 
 128 //---------------------------------------------------
 129 
 130 
 131 LIR_Address::Scale LIR_Address::scale(BasicType type) {
 132   int elem_size = type2aelembytes(type);
 133   switch (elem_size) {
 134   case 1: return LIR_Address::times_1;
 135   case 2: return LIR_Address::times_2;
 136   case 4: return LIR_Address::times_4;
 137   case 8: return LIR_Address::times_8;
 138   }
 139   ShouldNotReachHere();
 140   return LIR_Address::times_1;
 141 }
 142 
 143 
 144 #ifndef PRODUCT
 145 void LIR_Address::verify() const {
 146 #if defined(SPARC) || defined(PPC)
 147   assert(scale() == times_1, "Scaled addressing mode not available on SPARC/PPC and should not be used");
 148   assert(disp() == 0 || index()->is_illegal(), "can't have both");
 149 #endif
 150 #ifdef ARM
 151   assert(disp() == 0 || index()->is_illegal(), "can't have both");
 152   // Note: offsets higher than 4096 must not be rejected here. They can
 153   // be handled by the back-end or will be rejected if not.
 154 #endif
 155 #ifdef _LP64
 156   assert(base()->is_cpu_register(), "wrong base operand");
 157 #ifndef AARCH64
 158   assert(index()->is_illegal() || index()->is_double_cpu(), "wrong index operand");
 159 #else
 160   assert(index()->is_illegal() || index()->is_double_cpu() || index()->is_single_cpu(), "wrong index operand");
 161 #endif
 162   assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
 163          "wrong type for addresses");
 164 #else
 165   assert(base()->is_single_cpu(), "wrong base operand");
 166   assert(index()->is_illegal() || index()->is_single_cpu(), "wrong index operand");
 167   assert(base()->type() == T_OBJECT || base()->type() == T_INT || base()->type() == T_METADATA,
 168          "wrong type for addresses");
 169 #endif
 170 }
 171 #endif
 172 
 173 




 125 
 126 
 127 
 128 //---------------------------------------------------
 129 
 130 
 131 LIR_Address::Scale LIR_Address::scale(BasicType type) {
 132   int elem_size = type2aelembytes(type);
 133   switch (elem_size) {
 134   case 1: return LIR_Address::times_1;
 135   case 2: return LIR_Address::times_2;
 136   case 4: return LIR_Address::times_4;
 137   case 8: return LIR_Address::times_8;
 138   }
 139   ShouldNotReachHere();
 140   return LIR_Address::times_1;
 141 }
 142 
 143 
 144 #ifndef PRODUCT
 145 void LIR_Address::verify0() const {
 146 #if defined(SPARC) || defined(PPC)
 147   assert(scale() == times_1, "Scaled addressing mode not available on SPARC/PPC and should not be used");
 148   assert(disp() == 0 || index()->is_illegal(), "can't have both");





 149 #endif
 150 #ifdef _LP64
 151   assert(base()->is_cpu_register(), "wrong base operand");
 152 #ifndef AARCH64
 153   assert(index()->is_illegal() || index()->is_double_cpu(), "wrong index operand");
 154 #else
 155   assert(index()->is_illegal() || index()->is_double_cpu() || index()->is_single_cpu(), "wrong index operand");
 156 #endif
 157   assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
 158          "wrong type for addresses");
 159 #else
 160   assert(base()->is_single_cpu(), "wrong base operand");
 161   assert(index()->is_illegal() || index()->is_single_cpu(), "wrong index operand");
 162   assert(base()->type() == T_OBJECT || base()->type() == T_INT || base()->type() == T_METADATA,
 163          "wrong type for addresses");
 164 #endif
 165 }
 166 #endif
 167 
 168 


< prev index next >