Lines Matching refs:StorageSize
1967 const unsigned StorageSize = in EmitLoadOfBitfieldLValue() local
1968 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLoadOfBitfieldLValue()
1970 assert(static_cast<unsigned>(Offset + Info.Size) <= StorageSize); in EmitLoadOfBitfieldLValue()
1971 unsigned HighBits = StorageSize - Offset - Info.Size; in EmitLoadOfBitfieldLValue()
1979 if (static_cast<unsigned>(Offset) + Info.Size < StorageSize) in EmitLoadOfBitfieldLValue()
1981 Val, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), "bf.clear"); in EmitLoadOfBitfieldLValue()
2186 const unsigned StorageSize = in EmitStoreThroughBitfieldLValue() local
2187 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitStoreThroughBitfieldLValue()
2191 if (StorageSize != Info.Size) { in EmitStoreThroughBitfieldLValue()
2192 assert(StorageSize > Info.Size && "Invalid bitfield size."); in EmitStoreThroughBitfieldLValue()
2199 SrcVal, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), in EmitStoreThroughBitfieldLValue()
2207 Val, ~llvm::APInt::getBitsSet(StorageSize, Offset, Offset + Info.Size), in EmitStoreThroughBitfieldLValue()
2233 assert(Info.Size <= StorageSize); in EmitStoreThroughBitfieldLValue()
2234 unsigned HighBits = StorageSize - Info.Size; in EmitStoreThroughBitfieldLValue()
4296 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLValueForField()