1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
|
//===--- GenArray.cpp - LLVM type lowering of fixed-size array types ------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file implements TypeInfo subclasses for `Builtin.FixedArray`.
//
//===----------------------------------------------------------------------===//
#include "FixedTypeInfo.h"
#include "GenType.h"
#include "IRGenModule.h"
#include "LoadableTypeInfo.h"
#include "NonFixedTypeInfo.h"
using namespace swift;
using namespace irgen;
template<typename BaseTypeInfo, typename ElementTypeInfo = BaseTypeInfo>
class ArrayTypeInfoBase : public BaseTypeInfo {
protected:
const ElementTypeInfo ∈
template<typename...Args>
ArrayTypeInfoBase(const ElementTypeInfo &elementTI, Args &&...args)
: BaseTypeInfo(std::forward<Args>(args)...),
Element(elementTI)
{}
static SILType getElementSILType(IRGenModule &IGM,
SILType arrayType) {
return IGM.getLoweredType(AbstractionPattern::getOpaque(),
arrayType.castTo<BuiltinFixedArrayType>()->getElementType());
}
virtual llvm::Value *getArraySize(IRGenFunction &IGF, SILType T) const = 0;
virtual std::optional<uint64_t> getFixedArraySize(SILType T) const = 0;
void eachElementAddrLoop(IRGenFunction &IGF,
SILType T,
llvm::function_ref<void (ArrayRef<Address>)> body,
ArrayRef<Address> addrs) const {
auto fixedSize = getFixedArraySize(T);
if (fixedSize == 0) {
// empty type, nothing to do
return;
}
if (fixedSize == 1) {
// only one element to operate on
return body(addrs);
}
auto arraySize = getArraySize(IGF, T);
auto predBB = IGF.Builder.GetInsertBlock();
auto loopBB = IGF.createBasicBlock("each_array_element");
auto endBB = IGF.createBasicBlock("end_array_element");
auto one = llvm::ConstantInt::get(IGF.IGM.IntPtrTy, 1);
auto zero = llvm::ConstantInt::get(IGF.IGM.IntPtrTy, 0);
if (!fixedSize.has_value()) {
// If the size isn't statically known, we have to dynamically check the
// zero case.
auto isEmptyArray = IGF.Builder.CreateICmpEQ(arraySize, zero);
IGF.Builder.CreateCondBr(isEmptyArray, endBB, loopBB);
} else {
// Otherwise, we statically handled the zero case above.
IGF.Builder.CreateBr(loopBB);
}
IGF.Builder.emitBlock(loopBB);
auto countPhi = IGF.Builder.CreatePHI(IGF.IGM.IntPtrTy, 2);
countPhi->addIncoming(arraySize, predBB);
ConditionalDominanceScope scope(IGF);
SmallVector<llvm::PHINode*, 2> addrPhis;
SmallVector<Address, 2> eltAddrs;
for (auto a : addrs) {
auto *addrPhi = IGF.Builder.CreatePHI(a.getType(), 2);
addrPhi->addIncoming(a.getAddress(), predBB);
addrPhis.push_back(addrPhi);
eltAddrs.push_back(Address(addrPhi, Element.getStorageType(),
a.getAlignment()));
}
body(eltAddrs);
for (unsigned i : indices(addrPhis)) {
addrPhis[i]->addIncoming(Element.indexArray(IGF, eltAddrs[i], one,
getElementSILType(IGF.IGM, T))
.getAddress(),
loopBB);
}
auto nextCount = IGF.Builder.CreateSub(countPhi, one);
countPhi->addIncoming(nextCount, loopBB);
auto done = IGF.Builder.CreateICmpEQ(nextCount, zero);
IGF.Builder.CreateCondBr(done, endBB, loopBB);
IGF.Builder.emitBlock(endBB);
}
public:
void assignWithCopy(IRGenFunction &IGF, Address dest, Address src,
SILType T, bool isOutlined) const override {
auto eltTy = getElementSILType(IGF.IGM, T);
eachElementAddrLoop(IGF, T,
[&](ArrayRef<Address> destAndSrc) {
Element.assignWithCopy(IGF, destAndSrc[0],
destAndSrc[1],
eltTy, isOutlined);
}, {dest, src});
}
void assignWithTake(IRGenFunction &IGF, Address dest, Address src,
SILType T, bool isOutlined) const override {
auto eltTy = getElementSILType(IGF.IGM, T);
eachElementAddrLoop(IGF, T,
[&](ArrayRef<Address> destAndSrc) {
Element.assignWithTake(IGF, destAndSrc[0],
destAndSrc[1],
eltTy, isOutlined);
}, {dest, src});
}
void initializeWithCopy(IRGenFunction &IGF, Address dest, Address src,
SILType T, bool isOutlined) const override {
auto eltTy = getElementSILType(IGF.IGM, T);
eachElementAddrLoop(IGF, T,
[&](ArrayRef<Address> destAndSrc) {
Element.initializeWithCopy(IGF, destAndSrc[0],
destAndSrc[1],
eltTy, isOutlined);
}, {dest, src});
}
void initializeWithTake(IRGenFunction &IGF, Address dest, Address src,
SILType T,
bool isOutlined,
bool zeroizeIfSensitive) const override {
auto eltTy = getElementSILType(IGF.IGM, T);
eachElementAddrLoop(IGF, T,
[&](ArrayRef<Address> destAndSrc) {
Element.initializeWithTake(IGF, destAndSrc[0],
destAndSrc[1],
eltTy, isOutlined,
zeroizeIfSensitive);
}, {dest, src});
}
virtual void destroy(IRGenFunction &IGF, Address address, SILType T,
bool isOutlined) const override {
auto eltTy = getElementSILType(IGF.IGM, T);
eachElementAddrLoop(IGF, T,
[&](ArrayRef<Address> elt) {
Element.destroy(IGF, elt[0], eltTy, isOutlined);
}, {address});
}
};
template<typename BaseTypeInfo>
class FixedArrayTypeInfoBase : public ArrayTypeInfoBase<BaseTypeInfo> {
protected:
using ArrayTypeInfoBase<BaseTypeInfo>::Element;
const uint64_t ArraySize;
using ArrayTypeInfoBase<BaseTypeInfo>::getElementSILType;
template<typename...Args>
FixedArrayTypeInfoBase(unsigned arraySize,
const BaseTypeInfo &elementTI, Args &&...args)
: ArrayTypeInfoBase<BaseTypeInfo>(elementTI, std::forward<Args>(args)...),
ArraySize(arraySize)
{}
static Size getArraySize(uint64_t arraySize,
const FixedTypeInfo &elementTI) {
// We always pad out the stride, even for the final element.
return Size(arraySize * elementTI.getFixedStride().getValue());
}
static llvm::Type *getArrayType(uint64_t arraySize,
const FixedTypeInfo &elementTI) {
// Start with the element's storage type.
llvm::Type *elementTy = elementTI.getStorageType();
auto &LLVMContext = elementTy->getContext();
if (arraySize == 0) {
return llvm::StructType::get(LLVMContext, {});
}
// If we need to, pad it to stride.
if (elementTI.getFixedSize() < elementTI.getFixedStride()) {
uint64_t paddingBytes = elementTI.getFixedStride().getValue()
- elementTI.getFixedSize().getValue();
auto byteTy = llvm::IntegerType::get(LLVMContext, 8);
elementTy = llvm::StructType::get(LLVMContext,
{elementTy,
llvm::ArrayType::get(byteTy, paddingBytes)},
/*packed*/ true);
}
return llvm::ArrayType::get(elementTy, arraySize);
}
static SpareBitVector getArraySpareBits(uint64_t arraySize,
const FixedTypeInfo &elementTI) {
if (arraySize == 0) {
return SpareBitVector();
}
// Take spare bits from the first element only.
SpareBitVector result = elementTI.getSpareBits();
// We can use the padding to the next element as spare bits too.
result.appendSetBits(getArraySize(arraySize, elementTI).getValueInBits()
- result.size());
return result;
}
void eachElement(llvm::function_ref<void()> body) const {
for (uint64_t i = 0; i < ArraySize; ++i) {
body();
}
}
void eachElementAddr(IRGenFunction &IGF, Address addr,
llvm::function_ref<void(Address)> body) const {
for (uint64_t i = 0; i < ArraySize; ++i) {
auto elementAddr = Element.indexArray(IGF, addr,
llvm::ConstantInt::get(IGF.IGM.IntPtrTy, i),
SILType());
body(elementAddr);
}
}
std::optional<uint64_t> getFixedArraySize(SILType T) const override {
return ArraySize;
}
llvm::Value *getArraySize(IRGenFunction &IGF, SILType T) const override {
return llvm::ConstantInt::get(IGF.IGM.IntPtrTy, ArraySize);
}
public:
void getSchema(ExplosionSchema &schema) const override {
eachElement([&]{
Element.getSchema(schema);
});
}
TypeLayoutEntry *
buildTypeLayoutEntry(IRGenModule &IGM,
SILType T,
bool useStructLayouts) const override {
auto eltTy = getElementSILType(IGM, T);
auto elementLayout = Element.buildTypeLayoutEntry(IGM, eltTy,
useStructLayouts);
return IGM.typeLayoutCache.getOrCreateArrayEntry(elementLayout, eltTy,
T.castTo<BuiltinFixedArrayType>()->getSize());
}
void initializeFromParams(IRGenFunction &IGF, Explosion ¶ms,
Address src, SILType T,
bool isOutlined) const override {
auto eltTy = getElementSILType(IGF.IGM, T);
eachElementAddr(IGF, src,
[&](Address elementAddr) {
Element.initializeFromParams(IGF, params, elementAddr,
eltTy, isOutlined);
});
}
// We take extra inhabitants from the first element, if any.
unsigned getFixedExtraInhabitantCount(IRGenModule &IGM) const override {
if (ArraySize == 0)
return 0;
return Element.getFixedExtraInhabitantCount(IGM);
}
APInt getFixedExtraInhabitantMask(IRGenModule &IGM) const override {
if (ArraySize == 0)
return APInt::getAllOnes(0);
APInt elementMask = Element.getFixedExtraInhabitantMask(IGM);
return elementMask.zext(this->getFixedSize().getValueInBits());
}
/// Create a constant of the given bit width holding one of the extra
/// inhabitants of the type.
/// The index must be less than the value returned by
/// getFixedExtraInhabitantCount().
APInt getFixedExtraInhabitantValue(IRGenModule &IGM,
unsigned bits,
unsigned index) const override {
return Element.getFixedExtraInhabitantValue(IGM, bits, index);
}
llvm::Value *getExtraInhabitantIndex(IRGenFunction &IGF,
Address src, SILType T,
bool isOutlined) const override {
if (ArraySize == 0)
return llvm::ConstantInt::get(IGF.IGM.Int32Ty, -1);
auto firstElementAddr
= IGF.Builder.CreateElementBitCast(src, Element.getStorageType());
return Element.getExtraInhabitantIndex(IGF, firstElementAddr,
getElementSILType(IGF.IGM, T),
isOutlined);
}
void storeExtraInhabitant(IRGenFunction &IGF,
llvm::Value *index,
Address dest, SILType T,
bool isOutlined) const override {
auto firstElementAddr
= IGF.Builder.CreateElementBitCast(dest, Element.getStorageType());
Element.storeExtraInhabitant(IGF, index, firstElementAddr,
getElementSILType(IGF.IGM, T),
isOutlined);
}
};
class LoadableArrayTypeInfo final
: public FixedArrayTypeInfoBase<LoadableTypeInfo>
{
public:
LoadableArrayTypeInfo(uint64_t arraySize,
const LoadableTypeInfo &elementTI)
: FixedArrayTypeInfoBase(arraySize, elementTI,
getArrayType(arraySize, elementTI),
getArraySize(arraySize, elementTI),
getArraySpareBits(arraySize, elementTI),
elementTI.getFixedAlignment(),
elementTI.isTriviallyDestroyable(ResilienceExpansion::Maximal),
elementTI.isCopyable(ResilienceExpansion::Maximal),
elementTI.isFixedSize(ResilienceExpansion::Minimal),
elementTI.isABIAccessible())
{
}
unsigned getExplosionSize() const override {
return Element.getExplosionSize() * ArraySize;
}
void loadAsCopy(IRGenFunction &IGF, Address addr,
Explosion &explosion) const override {
eachElementAddr(IGF, addr,
[&](Address elementAddr) {
Element.loadAsCopy(IGF, elementAddr, explosion);
});
}
void loadAsTake(IRGenFunction &IGF, Address addr,
Explosion &explosion) const override {
eachElementAddr(IGF, addr,
[&](Address elementAddr) {
Element.loadAsTake(IGF, elementAddr, explosion);
});
}
void assign(IRGenFunction &IGF, Explosion &explosion, Address addr,
bool isOutlined, SILType T) const override {
auto eltTy = getElementSILType(IGF.IGM, T);
eachElementAddr(IGF, addr,
[&](Address elementAddr) {
Element.assign(IGF, explosion, elementAddr, isOutlined,
eltTy);
});
}
void initialize(IRGenFunction &IGF, Explosion &explosion, Address addr,
bool isOutlined) const override {
eachElementAddr(IGF, addr,
[&](Address elementAddr) {
Element.initialize(IGF, explosion, elementAddr, isOutlined);
});
}
void reexplode(Explosion &sourceExplosion,
Explosion &targetExplosion) const override {
eachElement([&]{
Element.reexplode(sourceExplosion, targetExplosion);
});
}
void copy(IRGenFunction &IGF,
Explosion &sourceExplosion,
Explosion &targetExplosion,
Atomicity atomicity) const override {
eachElement([&]{
Element.copy(IGF, sourceExplosion, targetExplosion, atomicity);
});
}
void consume(IRGenFunction &IGF, Explosion &explosion,
Atomicity atomicity,
SILType T) const override {
auto eltTy = getElementSILType(IGF.IGM, T);
eachElement([&]{
Element.consume(IGF, explosion, atomicity, eltTy);
});
}
void fixLifetime(IRGenFunction &IGF,
Explosion &explosion) const override {
eachElement([&]{
Element.fixLifetime(IGF, explosion);
});
}
template<typename Body>
void eachElementOffset(Body &&body) const {
for (unsigned i = 0; i < ArraySize; ++i) {
body(i * Element.getFixedStride().getValue());
}
}
void packIntoEnumPayload(IRGenModule &IGM,
IRBuilder &builder,
EnumPayload &payload,
Explosion &sourceExplosion,
unsigned offset) const override {
eachElementOffset([&](unsigned eltByteOffset){
Element.packIntoEnumPayload(IGM, builder, payload,
sourceExplosion,
offset + eltByteOffset * 8);
});
}
void unpackFromEnumPayload(IRGenFunction &IGF,
const EnumPayload &payload,
Explosion &targetExplosion,
unsigned offset) const override {
eachElementOffset([&](unsigned eltByteOffset){
Element.unpackFromEnumPayload(IGF, payload,
targetExplosion,
offset + eltByteOffset * 8);
});
}
void addToAggLowering(IRGenModule &IGM, SwiftAggLowering &lowering,
Size offset) const override {
eachElementOffset([&](unsigned eltByteOffset){
Element.addToAggLowering(IGM, lowering,
Size(offset.getValue() + eltByteOffset));
});
}
};
class FixedArrayTypeInfo final
: public FixedArrayTypeInfoBase<FixedTypeInfo>
{
public:
FixedArrayTypeInfo(uint64_t arraySize,
const FixedTypeInfo &elementTI)
: FixedArrayTypeInfoBase(arraySize, elementTI,
getArrayType(arraySize, elementTI),
getArraySize(arraySize, elementTI),
getArraySpareBits(arraySize, elementTI),
elementTI.getFixedAlignment(),
elementTI.isTriviallyDestroyable(ResilienceExpansion::Maximal),
elementTI.getBitwiseTakable(ResilienceExpansion::Maximal),
elementTI.isCopyable(ResilienceExpansion::Maximal),
elementTI.isFixedSize(ResilienceExpansion::Minimal),
elementTI.isABIAccessible())
{
}
};
// NOTE: This does not simply use WitnessSizedTypeInfo in order to avoid
// dependency on a Swift runtime for handling fixed-size arrays that are
// unspecialized in their size parameter only, so that embedded Swift can
// work with unspecialized integer parameters.
class NonFixedArrayTypeInfo final
: public ArrayTypeInfoBase<IndirectTypeInfo<NonFixedArrayTypeInfo, TypeInfo>,
TypeInfo> {
using super = ArrayTypeInfoBase<IndirectTypeInfo<NonFixedArrayTypeInfo, TypeInfo>,
TypeInfo>;
llvm::Value *getArraySize(IRGenFunction &IGF, SILType T) const override {
if (auto fixedSize = getFixedArraySize(T)) {
return llvm::ConstantInt::get(IGF.IGM.IntPtrTy, *fixedSize);
}
CanType sizeParam = T.castTo<BuiltinFixedArrayType>()->getSize();
auto arg = IGF.emitValueGenericRef(sizeParam);
auto zero = llvm::ConstantInt::get(IGF.IGM.IntPtrTy, 0);
auto isNegative = IGF.Builder.CreateICmpSLT(arg, zero);
return IGF.Builder.CreateSelect(isNegative, zero, arg);
}
std::optional<uint64_t> getFixedArraySize(SILType T) const override {
CanType sizeParam = T.castTo<BuiltinFixedArrayType>()->getSize();
if (auto integer = sizeParam->getAs<IntegerType>()) {
if (integer->getValue().isNonNegative()) {
return integer->getValue().getLimitedValue();
}
}
return std::nullopt;
}
public:
NonFixedArrayTypeInfo(llvm::Type *opaqueTy,
const TypeInfo &Element)
: super(Element,
opaqueTy, Element.getBestKnownAlignment(),
Element.isTriviallyDestroyable(ResilienceExpansion::Maximal),
Element.getBitwiseTakable(ResilienceExpansion::Maximal),
Element.isCopyable(ResilienceExpansion::Maximal),
IsNotFixedSize,
Element.isABIAccessible(),
SpecialTypeInfoKind::None)
{}
llvm::Value *getSize(IRGenFunction &IGF, SILType T) const override {
auto elementStride
= Element.getStride(IGF, getElementSILType(IGF.IGM, T));
return IGF.Builder.CreateMul(elementStride, getArraySize(IGF, T));
}
llvm::Value *getAlignmentMask(IRGenFunction &IGF,
SILType T) const override {
return Element.getAlignmentMask(IGF, getElementSILType(IGF.IGM, T));
}
llvm::Value *getStride(IRGenFunction &IGF, SILType T) const override {
return getSize(IGF, T);
}
llvm::Value *getIsTriviallyDestroyable(IRGenFunction &IGF,
SILType T) const override {
return Element.getIsTriviallyDestroyable(IGF,
getElementSILType(IGF.IGM, T));
}
llvm::Value *getIsBitwiseTakable(IRGenFunction &IGF,
SILType T) const override {
return Element.getIsBitwiseTakable(IGF,
getElementSILType(IGF.IGM, T));
}
llvm::Value *isDynamicallyPackedInline(IRGenFunction &IGF,
SILType T) const override {
auto startBB = IGF.Builder.GetInsertBlock();
auto no = llvm::ConstantInt::getBool(IGF.IGM.getLLVMContext(),
false);
// Prefetch the necessary info from the element type info.
auto isBT = getIsBitwiseTakable(IGF, T);
auto size = getSize(IGF, T);
auto align = getAlignmentMask(IGF, T);
auto endBB = IGF.createBasicBlock("array_is_packed_inline");
IGF.Builder.SetInsertPoint(endBB);
auto result = IGF.Builder.CreatePHI(IGF.IGM.Int1Ty, 3);
IGF.Builder.SetInsertPoint(startBB);
// packed inline if the payload is bitwise-takable...
auto isBT_BB = IGF.createBasicBlock("array_is_bt");
IGF.Builder.CreateCondBr(isBT, isBT_BB, endBB);
result->addIncoming(no, startBB);
IGF.Builder.emitBlock(isBT_BB);
// ...size fits the fixed-size buffer...
auto bufferSize = llvm::ConstantInt::get(IGF.IGM.IntPtrTy,
getFixedBufferSize(IGF.IGM).getValue());
auto sizeFits = IGF.Builder.CreateICmpULE(size, bufferSize);
auto sizeFitsBB = IGF.createBasicBlock("array_size_fits");
IGF.Builder.CreateCondBr(sizeFits, sizeFitsBB, endBB);
result->addIncoming(no, isBT_BB);
IGF.Builder.emitBlock(sizeFitsBB);
// ...and so does alignment
auto bufferAlign = llvm::ConstantInt::get(IGF.IGM.IntPtrTy,
getFixedBufferAlignment(IGF.IGM).getMaskValue());
auto alignFits = IGF.Builder.CreateICmpULE(align, bufferAlign);
IGF.Builder.CreateBr(endBB);
result->addIncoming(alignFits, sizeFitsBB);
IGF.Builder.emitBlock(endBB);
return result;
}
bool mayHaveExtraInhabitants(IRGenModule &IGM) const override {
return Element.mayHaveExtraInhabitants(IGM);
}
llvm::Constant *getStaticSize(IRGenModule &IGM) const override {
return nullptr;
}
llvm::Constant *getStaticAlignmentMask(IRGenModule &IGM) const override {
return nullptr;
}
llvm::Constant *getStaticStride(IRGenModule &IGM) const override {
return nullptr;
}
StackAddress allocateStack(IRGenFunction &IGF, SILType T,
const llvm::Twine &name) const override {
// Allocate memory on the stack.
auto alloca = IGF.emitDynamicAlloca(T, name);
IGF.Builder.CreateLifetimeStart(alloca.getAddressPointer());
return alloca.withAddress(getAddressForPointer(alloca.getAddressPointer()));
}
StackAddress allocateVector(IRGenFunction &IGF, SILType T,
llvm::Value *capacity,
const Twine &name) const override {
llvm_unreachable("not implemented, yet");
}
void deallocateStack(IRGenFunction &IGF, StackAddress stackAddress,
SILType T) const override {
IGF.Builder.CreateLifetimeEnd(stackAddress.getAddress().getAddress());
IGF.emitDeallocateDynamicAlloca(stackAddress);
}
void destroyStack(IRGenFunction &IGF, StackAddress stackAddress, SILType T,
bool isOutlined) const override {
emitDestroyCall(IGF, T, stackAddress.getAddress());
deallocateStack(IGF, stackAddress, T);
}
TypeLayoutEntry *
buildTypeLayoutEntry(IRGenModule &IGM,
SILType T,
bool useStructLayouts) const override {
return IGM.typeLayoutCache.getOrCreateResilientEntry(T);
}
llvm::Value *getEnumTagSinglePayload(IRGenFunction &IGF,
llvm::Value *numEmptyCases,
Address arrayAddr,
SILType arrayType,
bool isOutlined) const override {
// take extra inhabitants from the first element
auto firstElementAddr
= IGF.Builder.CreateElementBitCast(arrayAddr, Element.getStorageType());
return Element.getEnumTagSinglePayload(IGF,
numEmptyCases,
firstElementAddr,
getElementSILType(IGF.IGM, arrayType),
isOutlined);
}
void storeEnumTagSinglePayload(IRGenFunction &IGF,
llvm::Value *index,
llvm::Value *numEmptyCases,
Address arrayAddr,
SILType arrayType,
bool isOutlined) const override {
// take extra inhabitants from the first element
auto firstElementAddr
= IGF.Builder.CreateElementBitCast(arrayAddr, Element.getStorageType());
return Element.storeEnumTagSinglePayload(IGF,
index,
numEmptyCases,
firstElementAddr,
getElementSILType(IGF.IGM, arrayType),
isOutlined);
}
};
const TypeInfo *
TypeConverter::convertBuiltinFixedArrayType(BuiltinFixedArrayType *T) {
// Most of our layout properties come from the element type.
auto &elementTI = IGM.getTypeInfoForUnlowered(AbstractionPattern::getOpaque(),
T->getElementType());
// ...unless the array size is not fixed, then the array layout is never
// fixed.
auto fixedSize = T->getFixedInhabitedSize();
// Statically zero or negative-sized array types are empty.
if (fixedSize == 0 || T->isFixedNegativeSize()) {
return &getEmptyTypeInfo();
}
if (!fixedSize.has_value() || !elementTI.isFixedSize()) {
return new NonFixedArrayTypeInfo(IGM.OpaqueTy, elementTI);
}
if (*fixedSize <= BuiltinFixedArrayType::MaximumLoadableSize) {
if (auto *loadableTI = dyn_cast<LoadableTypeInfo>(&elementTI)) {
return new LoadableArrayTypeInfo(fixedSize.value(), *loadableTI);
}
}
return new FixedArrayTypeInfo(fixedSize.value(),
*cast<FixedTypeInfo>(&elementTI));
}
|