Lines Matching refs:StorageSize
1991 const unsigned StorageSize = in EmitLoadOfBitfieldLValue() local
1992 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLoadOfBitfieldLValue()
1994 assert(static_cast<unsigned>(Offset + Info.Size) <= StorageSize); in EmitLoadOfBitfieldLValue()
1995 unsigned HighBits = StorageSize - Offset - Info.Size; in EmitLoadOfBitfieldLValue()
2003 if (static_cast<unsigned>(Offset) + Info.Size < StorageSize) in EmitLoadOfBitfieldLValue()
2005 Val, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), "bf.clear"); in EmitLoadOfBitfieldLValue()
2226 const unsigned StorageSize = in EmitStoreThroughBitfieldLValue() local
2227 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitStoreThroughBitfieldLValue()
2231 if (StorageSize != Info.Size) { in EmitStoreThroughBitfieldLValue()
2232 assert(StorageSize > Info.Size && "Invalid bitfield size."); in EmitStoreThroughBitfieldLValue()
2239 SrcVal, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), in EmitStoreThroughBitfieldLValue()
2247 Val, ~llvm::APInt::getBitsSet(StorageSize, Offset, Offset + Info.Size), in EmitStoreThroughBitfieldLValue()
2273 assert(Info.Size <= StorageSize); in EmitStoreThroughBitfieldLValue()
2274 unsigned HighBits = StorageSize - Info.Size; in EmitStoreThroughBitfieldLValue()
4375 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLValueForField()