Home
last modified time | relevance | path

Searched refs:StorageSize (Results 1 – 7 of 7) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGRecordLayout.h78 unsigned StorageSize; member
96 : Offset(), Size(), IsSigned(), StorageSize(), StorageOffset(), in CGBitFieldInfo()
100 unsigned StorageSize, CharUnits StorageOffset) in CGBitFieldInfo()
102 StorageSize(StorageSize), StorageOffset(StorageOffset) {} in CGBitFieldInfo()
113 uint64_t StorageSize,
H A DCGRecordLayoutBuilder.cpp246 if (Info.Size > Info.StorageSize) in setBitFieldInfo()
247 Info.Size = Info.StorageSize; in setBitFieldInfo()
572 if (Info.StorageSize == StorageSize && (OldOffset % StorageSize == 0)) in computeVolatileBitfields()
581 if (Offset + Info.Size > StorageSize) in computeVolatileBitfields()
586 Offset = StorageSize - (Offset + Info.Size); in computeVolatileBitfields()
643 Info.VolatileStorageSize = StorageSize; in computeVolatileBitfields()
871 Offset = StorageSize - (Offset + Size); in MakeInfo()
985 Info.StorageSize && in ComputeRecordLayout()
990 assert(Info.StorageSize <= SL->getSizeInBits() && in ComputeRecordLayout()
993 assert((Info.StorageSize == in ComputeRecordLayout()
[all …]
H A DCGObjCRuntime.cpp94 CharUnits StorageSize = CGF.CGM.getContext().toCharUnitsFromBits( in EmitValueForIvarAtOffset() local
106 CGF.CGM.getContext().toBits(StorageSize), in EmitValueForIvarAtOffset()
112 Info->StorageSize)); in EmitValueForIvarAtOffset()
H A DCGExpr.cpp1966 const unsigned StorageSize = in EmitLoadOfBitfieldLValue() local
1967 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize; in EmitLoadOfBitfieldLValue()
1970 unsigned HighBits = StorageSize - Offset - Info.Size; in EmitLoadOfBitfieldLValue()
1978 if (static_cast<unsigned>(Offset) + Info.Size < StorageSize) 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()
2231 assert(Info.Size <= StorageSize); in EmitStoreThroughBitfieldLValue()
2232 unsigned HighBits = StorageSize - Info.Size; in EmitStoreThroughBitfieldLValue()
[all …]
H A DCGCall.cpp3244 int StorageSize, int BitOffset, int BitWidth, in setBitRange() argument
3247 SmallVector<uint64_t, 8> TmpBits(StorageSize); in setBitRange()
3284 BFI.StorageSize / CharWidth, BFI.Offset, in setUsedBits()
H A DCGAtomic.cpp95 BFI.StorageSize = AtomicSizeInBits; in AtomicInfo()
H A DCGDebugInfo.cpp1396 Offset = BitFieldInfo.StorageSize - BitFieldInfo.Size - Offset; in createBitFieldType()