| 1 | //===---- IRTypeMapper.cpp - Maps LLVM ABI Types to LLVM IR Types -------===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "llvm/ABI/IRTypeMapper.h" |
| 10 | #include "llvm/ABI/Types.h" |
| 11 | #include "llvm/ADT/APFloat.h" |
| 12 | #include "llvm/ADT/SmallVector.h" |
| 13 | #include "llvm/IR/DataLayout.h" |
| 14 | #include "llvm/IR/DerivedTypes.h" |
| 15 | #include "llvm/IR/Type.h" |
| 16 | #include "llvm/Support/MathExtras.h" |
| 17 | |
| 18 | using namespace llvm::abi; |
| 19 | |
| 20 | llvm::Type *IRTypeMapper::convertType(const abi::Type *ABIType) { |
| 21 | assert(ABIType && "convertType requires a non-null ABI type" ); |
| 22 | |
| 23 | auto It = TypeCache.find(Val: ABIType); |
| 24 | if (It != TypeCache.end()) |
| 25 | return It->second; |
| 26 | |
| 27 | llvm::Type *Result = nullptr; |
| 28 | |
| 29 | switch (ABIType->getKind()) { |
| 30 | case abi::TypeKind::Void: |
| 31 | Result = llvm::Type::getVoidTy(C&: Context); |
| 32 | break; |
| 33 | case abi::TypeKind::Atomic: |
| 34 | Result = convertAtomicType(AT: cast<abi::AtomicType>(Val: ABIType)); |
| 35 | break; |
| 36 | case abi::TypeKind::Integer: { |
| 37 | const auto *IT = cast<abi::IntegerType>(Val: ABIType); |
| 38 | Result = |
| 39 | llvm::IntegerType::get(C&: Context, NumBits: IT->getSizeInBits().getFixedValue()); |
| 40 | break; |
| 41 | } |
| 42 | case abi::TypeKind::Float: { |
| 43 | const llvm::fltSemantics *Semantics = |
| 44 | cast<abi::FloatType>(Val: ABIType)->getSemantics(); |
| 45 | Result = llvm::Type::getFloatingPointTy(C&: Context, S: *Semantics); |
| 46 | break; |
| 47 | } |
| 48 | case abi::TypeKind::Pointer: |
| 49 | Result = llvm::PointerType::get( |
| 50 | C&: Context, AddressSpace: cast<abi::PointerType>(Val: ABIType)->getAddrSpace()); |
| 51 | break; |
| 52 | case abi::TypeKind::Array: |
| 53 | Result = convertArrayType(AT: cast<abi::ArrayType>(Val: ABIType)); |
| 54 | break; |
| 55 | case abi::TypeKind::Vector: |
| 56 | Result = convertVectorType(VT: cast<abi::VectorType>(Val: ABIType)); |
| 57 | break; |
| 58 | case abi::TypeKind::Tuple: |
| 59 | Result = convertTupleType(TT: cast<abi::TupleType>(Val: ABIType)); |
| 60 | break; |
| 61 | case abi::TypeKind::Record: |
| 62 | Result = convertRecordType(RT: cast<abi::RecordType>(Val: ABIType)); |
| 63 | break; |
| 64 | case abi::TypeKind::Complex: |
| 65 | Result = convertComplexType(CT: cast<abi::ComplexType>(Val: ABIType)); |
| 66 | break; |
| 67 | case abi::TypeKind::MemberPointer: |
| 68 | Result = convertMemberPointerType(MPT: cast<abi::MemberPointerType>(Val: ABIType)); |
| 69 | break; |
| 70 | } |
| 71 | |
| 72 | TypeCache[ABIType] = Result; |
| 73 | return Result; |
| 74 | } |
| 75 | |
| 76 | llvm::Type *IRTypeMapper::convertAtomicType(const abi::AtomicType *AT) { |
| 77 | llvm::Type *ValueType = convertType(ABIType: AT->getValueType()); |
| 78 | uint64_t ValueSize = AT->getValueType()->getSizeInBits().getFixedValue(); |
| 79 | uint64_t AtomicSize = AT->getSizeInBits().getFixedValue(); |
| 80 | if (ValueSize == AtomicSize) |
| 81 | return ValueType; |
| 82 | |
| 83 | assert(ValueSize < AtomicSize && "atomic type cannot shrink its value type" ); |
| 84 | llvm::Type *Fields[] = {ValueType, |
| 85 | llvm::ArrayType::get(ElementType: llvm::Type::getInt8Ty(C&: Context), |
| 86 | NumElements: (AtomicSize - ValueSize) / 8)}; |
| 87 | return llvm::StructType::get(Context, Elements: Fields, /*isPacked=*/false); |
| 88 | } |
| 89 | |
| 90 | llvm::Type *IRTypeMapper::convertArrayType(const abi::ArrayType *AT) { |
| 91 | llvm::Type *ElementType = convertType(ABIType: AT->getElementType()); |
| 92 | uint64_t NumElements = AT->getNumElements(); |
| 93 | if (AT->isMatrixType()) |
| 94 | return llvm::VectorType::get(ElementType, |
| 95 | EC: ElementCount::getFixed(MinVal: NumElements)); |
| 96 | return llvm::ArrayType::get(ElementType, NumElements); |
| 97 | } |
| 98 | |
| 99 | llvm::Type *IRTypeMapper::convertVectorType(const abi::VectorType *VT) { |
| 100 | if (VT->isSVECount()) |
| 101 | return llvm::TargetExtType::get(Context, Name: "aarch64.svcount" ); |
| 102 | |
| 103 | llvm::Type *ElementType = convertType(ABIType: VT->getElementType()); |
| 104 | return llvm::VectorType::get(ElementType, EC: VT->getNumElements()); |
| 105 | } |
| 106 | |
| 107 | llvm::Type *IRTypeMapper::convertTupleType(const abi::TupleType *TT) { |
| 108 | llvm::Type *VecTy = convertType(ABIType: TT->getVectorType()); |
| 109 | SmallVector<llvm::Type *, 4> Elements(TT->getNumVectors(), VecTy); |
| 110 | return llvm::StructType::get(Context, Elements); |
| 111 | } |
| 112 | |
| 113 | llvm::Type *IRTypeMapper::convertRecordType(const abi::RecordType *RT) { |
| 114 | return createStructFromFields(Fields: RT->getFields(), Size: RT->getSizeInBits(), |
| 115 | Alignment: RT->getAlignment(), IsUnion: RT->isUnion()); |
| 116 | } |
| 117 | |
| 118 | llvm::Type *IRTypeMapper::convertComplexType(const abi::ComplexType *CT) { |
| 119 | llvm::Type *ElementType = convertType(ABIType: CT->getElementType()); |
| 120 | llvm::Type *Fields[] = {ElementType, ElementType}; |
| 121 | return llvm::StructType::get(Context, Elements: Fields, /*isPacked=*/false); |
| 122 | } |
| 123 | |
| 124 | llvm::Type * |
| 125 | IRTypeMapper::convertMemberPointerType(const abi::MemberPointerType *MPT) { |
| 126 | llvm::Type *IntPtrTy = DL.getIntPtrType(C&: Context); |
| 127 | if (MPT->isFunctionPointer()) { |
| 128 | llvm::Type *Fields[] = {IntPtrTy, IntPtrTy}; |
| 129 | return llvm::StructType::get(Context, Elements: Fields, /*isPacked=*/false); |
| 130 | } |
| 131 | return IntPtrTy; |
| 132 | } |
| 133 | |
| 134 | llvm::Type *IRTypeMapper::createPaddingType(uint64_t PaddingBits) { |
| 135 | if (PaddingBits == 0) |
| 136 | return nullptr; |
| 137 | assert(PaddingBits % 8 == 0 && |
| 138 | "sub-byte padding cannot be expressed as an llvm::Type" ); |
| 139 | return llvm::ArrayType::get(ElementType: llvm::IntegerType::get(C&: Context, NumBits: 8), |
| 140 | NumElements: PaddingBits / 8); |
| 141 | } |
| 142 | |
| 143 | llvm::StructType * |
| 144 | IRTypeMapper::createStructFromFields(ArrayRef<abi::FieldInfo> Fields, |
| 145 | TypeSize Size, Align Alignment, |
| 146 | bool IsUnion) { |
| 147 | SmallVector<llvm::Type *, 16> FieldTypes; |
| 148 | |
| 149 | if (IsUnion) { |
| 150 | llvm::Type *LargestFieldType = nullptr; |
| 151 | uint64_t LargestFieldSize = 0; |
| 152 | for (const auto &Field : Fields) { |
| 153 | llvm::Type *FieldType = convertType(ABIType: Field.FieldType); |
| 154 | uint64_t FieldSize = Field.FieldType->getSizeInBits().getFixedValue(); |
| 155 | if (FieldSize > LargestFieldSize) { |
| 156 | LargestFieldSize = FieldSize; |
| 157 | LargestFieldType = FieldType; |
| 158 | } |
| 159 | } |
| 160 | if (LargestFieldType) { |
| 161 | FieldTypes.push_back(Elt: LargestFieldType); |
| 162 | uint64_t UnionSizeBits = Size.getFixedValue(); |
| 163 | if (LargestFieldSize < UnionSizeBits) { |
| 164 | if (llvm::Type *PaddingType = |
| 165 | createPaddingType(PaddingBits: UnionSizeBits - LargestFieldSize)) |
| 166 | FieldTypes.push_back(Elt: PaddingType); |
| 167 | } |
| 168 | } |
| 169 | } else { |
| 170 | uint64_t CurrentOffset = 0; |
| 171 | for (const auto &Field : Fields) { |
| 172 | assert(!Field.IsBitField && "bitfields should not reach IR type mapping" ); |
| 173 | llvm::Type *FieldType = convertType(ABIType: Field.FieldType); |
| 174 | if (Field.OffsetInBits > CurrentOffset) { |
| 175 | uint64_t AlignBits = DL.getABITypeAlign(Ty: FieldType).value() * 8; |
| 176 | uint64_t NaturalNextOffset = |
| 177 | AlignBits ? alignTo(Value: CurrentOffset, Align: AlignBits) : CurrentOffset; |
| 178 | if (NaturalNextOffset != Field.OffsetInBits) { |
| 179 | if (llvm::Type *PaddingType = |
| 180 | createPaddingType(PaddingBits: Field.OffsetInBits - CurrentOffset)) |
| 181 | FieldTypes.push_back(Elt: PaddingType); |
| 182 | } |
| 183 | CurrentOffset = Field.OffsetInBits; |
| 184 | } |
| 185 | FieldTypes.push_back(Elt: FieldType); |
| 186 | CurrentOffset += Field.FieldType->getSizeInBits().getFixedValue(); |
| 187 | } |
| 188 | uint64_t TotalSizeBits = Size.getFixedValue(); |
| 189 | if (CurrentOffset < TotalSizeBits) { |
| 190 | if (llvm::Type *PaddingType = |
| 191 | createPaddingType(PaddingBits: TotalSizeBits - CurrentOffset)) |
| 192 | FieldTypes.push_back(Elt: PaddingType); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | return StructType::get(Context, Elements: FieldTypes, /*isPacked=*/false); |
| 197 | } |
| 198 | |