| /openbsd-src/gnu/llvm/clang/lib/AST/Interp/ |
| H A D | Record.cpp | 16 unsigned VirtualSize, unsigned BaseSize) in Record() argument 18 BaseSize(BaseSize), VirtualSize(VirtualSize) { in Record() 20 VirtualBases.push_back({ V.Decl, V.Offset + BaseSize, V.Desc, V.R }); in Record()
|
| H A D | Record.h | 57 unsigned getSize() const { return BaseSize; } in getSize() 59 unsigned getFullSize() const { return BaseSize + VirtualSize; } in getFullSize() 102 unsigned BaseSize); 123 unsigned BaseSize; variable
|
| H A D | Program.cpp | 235 unsigned BaseSize = 0; in getOrCreateRecord() local 259 BaseSize += align(sizeof(InlineDescriptor)); in getOrCreateRecord() 260 Bases.push_back({BD, BaseSize, Desc, BR}); in getOrCreateRecord() 261 BaseSize += align(BR->getSize()); in getOrCreateRecord() 285 BaseSize += align(sizeof(InlineDescriptor)); in getOrCreateRecord() 301 Fields.push_back({FD, BaseSize, Desc}); in getOrCreateRecord() 302 BaseSize += align(Desc->getAllocSize()); in getOrCreateRecord() 306 std::move(VirtBases), VirtSize, BaseSize); in getOrCreateRecord()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | ValueSymbolTable.cpp | 45 unsigned BaseSize = UniqueName.size(); in makeUniqueName() local 48 UniqueName.resize(BaseSize); in makeUniqueName()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | ValueTypes.h | 363 TypeSize BaseSize = getSizeInBits(); in getStoreSize() local 364 return {(BaseSize.getKnownMinValue() + 7) / 8, BaseSize.isScalable()}; in getStoreSize()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | LowLevelTypeImpl.h | 170 TypeSize BaseSize = getSizeInBits(); in getSizeInBytes() local 171 return {(BaseSize.getKnownMinValue() + 7) / 8, BaseSize.isScalable()}; in getSizeInBytes()
|
| H A D | MachineValueType.h | 1149 TypeSize BaseSize = getSizeInBits(); in getStoreSize() local 1150 return {(BaseSize.getKnownMinValue() + 7) / 8, BaseSize.isScalable()}; in getStoreSize()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | DataLayout.h | 476 TypeSize BaseSize = getTypeSizeInBits(Ty); in getTypeStoreSize() local 477 return {divideCeil(BaseSize.getKnownMinValue(), 8), BaseSize.isScalable()}; in getTypeStoreSize()
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | Lint.cpp | 446 uint64_t BaseSize = MemoryLocation::UnknownSize; in visitMemoryReference() local 452 BaseSize = DL->getTypeAllocSize(ATy); in visitMemoryReference() 460 BaseSize = DL->getTypeAllocSize(GTy); in visitMemoryReference() 469 Check(!Loc.Size.hasValue() || BaseSize == MemoryLocation::UnknownSize || in visitMemoryReference() 470 (Offset >= 0 && Offset + Loc.Size.getValue() <= BaseSize), in visitMemoryReference()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDie.cpp | 519 std::optional<uint64_t> BaseSize = BaseType.getTypeSize(PointerSize); in getTypeSize() local 520 if (!BaseSize) in getTypeSize() 522 uint64_t Size = *BaseSize; in getTypeSize()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | CommandLine.cpp | 2114 size_t BaseSize = 0; in getOptionWidth() local 2116 BaseSize = std::max(BaseSize, getOption(i).size() + 8); in getOptionWidth() 2117 return BaseSize; in getOptionWidth()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGClass.cpp | 1721 CharUnits BaseSize = BaseLayout.getSize(); in Emit() local 1723 if (!BaseSize.isPositive()) in Emit() 1730 BaseSize.getQuantity()); in Emit()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaType.cpp | 9470 uint64_t BaseSize = S.Context.getTypeSize(BaseType); in ChangeIntegralSignedness() local 9472 llvm::find_if(*Consider, [&S, BaseSize](const CanQual<Type> *T) { in ChangeIntegralSignedness() 9473 return BaseSize == S.Context.getTypeSize(T->getTypePtr()); in ChangeIntegralSignedness()
|