Lines Matching refs:StorageSize
2249 const unsigned StorageSize = in EmitLoadOfBitfieldLValue() local
2250 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLoadOfBitfieldLValue()
2252 assert(static_cast<unsigned>(Offset + Info.Size) <= StorageSize); in EmitLoadOfBitfieldLValue()
2253 unsigned HighBits = StorageSize - Offset - Info.Size; in EmitLoadOfBitfieldLValue()
2261 if (static_cast<unsigned>(Offset) + Info.Size < StorageSize) in EmitLoadOfBitfieldLValue()
2263 Val, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), "bf.clear"); in EmitLoadOfBitfieldLValue()
2490 const unsigned StorageSize = in EmitStoreThroughBitfieldLValue() local
2491 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitStoreThroughBitfieldLValue()
2495 if (StorageSize != Info.Size) { in EmitStoreThroughBitfieldLValue()
2496 assert(StorageSize > Info.Size && "Invalid bitfield size."); in EmitStoreThroughBitfieldLValue()
2503 SrcVal, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), in EmitStoreThroughBitfieldLValue()
2511 Val, ~llvm::APInt::getBitsSet(StorageSize, Offset, Offset + Info.Size), in EmitStoreThroughBitfieldLValue()
2537 assert(Info.Size <= StorageSize); in EmitStoreThroughBitfieldLValue()
2538 unsigned HighBits = StorageSize - Info.Size; in EmitStoreThroughBitfieldLValue()
4783 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLValueForField()