Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:FieldSize

171   uint64_t FieldSize = Field->getBitWidthValue(Context);
179 if (FieldSize > FieldValue.getBitWidth())
180 FieldValue = FieldValue.zext(FieldSize);
183 if (FieldSize < FieldValue.getBitWidth())
184 FieldValue = FieldValue.trunc(FieldSize);
200 unsigned NewFieldWidth = FieldSize - BitsInPreviousByte;