blob: 4635ce943b17cf3fda9397222535789d4fde1561 (
plain)
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
|
#include "clang/CIR/Dialect/IR/CIRDataLayout.h"
#include "clang/CIR/Dialect/IR/CIRTypes.h"
#include "clang/CIR/MissingFeatures.h"
using namespace cir;
//===----------------------------------------------------------------------===//
// DataLayout Class Implementation
//===----------------------------------------------------------------------===//
CIRDataLayout::CIRDataLayout(mlir::ModuleOp modOp) : layout(modOp) {
reset(modOp.getDataLayoutSpec());
}
void CIRDataLayout::reset(mlir::DataLayoutSpecInterface spec) {
bigEndian = false;
if (spec) {
mlir::StringAttr key = mlir::StringAttr::get(
spec.getContext(), mlir::DLTIDialect::kDataLayoutEndiannessKey);
if (mlir::DataLayoutEntryInterface entry = spec.getSpecForIdentifier(key))
if (auto str = llvm::dyn_cast<mlir::StringAttr>(entry.getValue()))
bigEndian = str == mlir::DLTIDialect::kDataLayoutEndiannessBig;
}
}
llvm::Align CIRDataLayout::getAlignment(mlir::Type ty, bool useABIAlign) const {
// FIXME(cir): This does not account for differnt address spaces, and relies
// on CIR's data layout to give the proper alignment.
assert(!cir::MissingFeatures::addressSpace());
// Fetch type alignment from MLIR's data layout.
unsigned align = useABIAlign ? layout.getTypeABIAlignment(ty)
: layout.getTypePreferredAlignment(ty);
return llvm::Align(align);
}
// The implementation of this method is provided inline as it is particularly
// well suited to constant folding when called on a specific Type subclass.
llvm::TypeSize CIRDataLayout::getTypeSizeInBits(mlir::Type ty) const {
assert(cir::isSized(ty) && "Cannot getTypeInfo() on a type that is unsized!");
if (auto recordTy = llvm::dyn_cast<cir::RecordType>(ty)) {
// FIXME(cir): CIR record's data layout implementation doesn't do a good job
// of handling unions particularities. We should have a separate union type.
return recordTy.getTypeSizeInBits(layout, {});
}
// FIXME(cir): This does not account for different address spaces, and relies
// on CIR's data layout to give the proper ABI-specific type width.
assert(!cir::MissingFeatures::addressSpace());
// This is calling mlir::DataLayout::getTypeSizeInBits().
return llvm::TypeSize::getFixed(layout.getTypeSizeInBits(ty));
}
|