Lines Matching refs:StorageSize
1966 const unsigned StorageSize = in EmitLoadOfBitfieldLValue() local
1967 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLoadOfBitfieldLValue()
1969 assert(static_cast<unsigned>(Offset + Info.Size) <= StorageSize); in EmitLoadOfBitfieldLValue()
1970 unsigned HighBits = StorageSize - Offset - Info.Size; in EmitLoadOfBitfieldLValue()
1978 if (static_cast<unsigned>(Offset) + Info.Size < StorageSize) in EmitLoadOfBitfieldLValue()
1980 Val, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), "bf.clear"); in EmitLoadOfBitfieldLValue()
2184 const unsigned StorageSize = in EmitStoreThroughBitfieldLValue() local
2185 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitStoreThroughBitfieldLValue()
2189 if (StorageSize != Info.Size) { in EmitStoreThroughBitfieldLValue()
2190 assert(StorageSize > Info.Size && "Invalid bitfield size."); in EmitStoreThroughBitfieldLValue()
2197 SrcVal, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), in EmitStoreThroughBitfieldLValue()
2205 Val, ~llvm::APInt::getBitsSet(StorageSize, Offset, Offset + Info.Size), in EmitStoreThroughBitfieldLValue()
2231 assert(Info.Size <= StorageSize); in EmitStoreThroughBitfieldLValue()
2232 unsigned HighBits = StorageSize - Info.Size; in EmitStoreThroughBitfieldLValue()
4308 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLValueForField()