HomeSort by: relevance | last modified time | path
    Searched defs:StorageSize (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayout.h 78 unsigned StorageSize;
96 : Offset(), Size(), IsSigned(), StorageSize(), StorageOffset(),
100 unsigned StorageSize, CharUnits StorageOffset)
102 StorageSize(StorageSize), StorageOffset(StorageOffset) {}
113 uint64_t StorageSize,
CGObjCRuntime.cpp 94 CharUnits StorageSize = CGF.CGM.getContext().toCharUnitsFromBits(
106 CGF.CGM.getContext().toBits(StorageSize),
112 Info->StorageSize));
CGRecordLayoutBuilder.cpp 244 Info.StorageSize = (unsigned)DataLayout.getTypeAllocSizeInBits(StorageType);
246 if (Info.Size > Info.StorageSize)
247 Info.Size = Info.StorageSize;
253 Info.Offset = Info.StorageSize - (Info.Offset + Info.Size);
559 // Info.StorageSize. Since AAPCS uses a different container size (width
563 isBE() ? Info.StorageSize - (Info.Offset + Info.Size) : Info.Offset;
569 const unsigned StorageSize = ResLTy->getPrimitiveSizeInBits();
572 if (Info.StorageSize == StorageSize && (OldOffset % StorageSize == 0)
    [all...]
CGExpr.cpp 1966 const unsigned StorageSize =
1967 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize;
1969 assert(static_cast<unsigned>(Offset + Info.Size) <= StorageSize);
1970 unsigned HighBits = StorageSize - Offset - Info.Size;
1978 if (static_cast<unsigned>(Offset) + Info.Size < StorageSize)
1980 Val, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), "bf.clear");
2184 const unsigned StorageSize =
2185 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize;
2189 if (StorageSize != Info.Size) {
2190 assert(StorageSize > Info.Size && "Invalid bitfield size.")
    [all...]

Completed in 27 milliseconds