forked from llvm/clangir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoweringPrepareItaniumCXXABI.cpp
171 lines (145 loc) · 6.61 KB
/
LoweringPrepareItaniumCXXABI.cpp
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
//====- LoweringPrepareItaniumCXXABI.h - Itanium ABI specific code --------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file provides Itanium C++ ABI specific code that is used during LLVMIR
// lowering prepare.
//
//===----------------------------------------------------------------------===//
#include "../IR/MissingFeatures.h"
#include "LoweringPrepareCXXABI.h"
#include "mlir/IR/BuiltinAttributes.h"
#include "mlir/IR/Value.h"
#include "mlir/IR/ValueRange.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/CIR/Dialect/Builder/CIRBaseBuilder.h"
#include "clang/CIR/Dialect/IR/CIRAttrs.h"
#include "clang/CIR/Dialect/IR/CIRDialect.h"
using namespace cir;
namespace {
class LoweringPrepareItaniumCXXABI : public LoweringPrepareCXXABI {
public:
mlir::Value lowerDynamicCast(CIRBaseBuilderTy &builder,
clang::ASTContext &astCtx,
mlir::cir::DynamicCastOp op) override;
};
} // namespace
LoweringPrepareCXXABI *LoweringPrepareCXXABI::createItaniumABI() {
return new LoweringPrepareItaniumCXXABI();
}
static void buildBadCastCall(CIRBaseBuilderTy &builder, mlir::Location loc,
mlir::FlatSymbolRefAttr badCastFuncRef) {
// TODO(cir): set the calling convention to __cxa_bad_cast.
assert(!MissingFeatures::setCallingConv());
builder.create<mlir::cir::CallOp>(loc, badCastFuncRef, mlir::ValueRange{});
builder.create<mlir::cir::UnreachableOp>(loc);
builder.clearInsertionPoint();
}
static mlir::Value buildDynamicCastAfterNullCheck(CIRBaseBuilderTy &builder,
mlir::cir::DynamicCastOp op) {
auto loc = op->getLoc();
auto srcValue = op.getSrc();
auto castInfo = op.getInfo().value();
// TODO(cir): consider address space
assert(!MissingFeatures::addressSpaceCasting());
auto srcPtr = builder.createBitcast(srcValue, builder.getVoidPtrTy());
auto srcRtti = builder.getConstant(loc, castInfo.getSrcRtti());
auto destRtti = builder.getConstant(loc, castInfo.getDestRtti());
auto offsetHint = builder.getConstant(loc, castInfo.getOffsetHint());
auto dynCastFuncRef = castInfo.getRuntimeFunc();
mlir::Value dynCastFuncArgs[4] = {srcPtr, srcRtti, destRtti, offsetHint};
// TODO(cir): set the calling convention for __dynamic_cast.
assert(!MissingFeatures::setCallingConv());
mlir::Value castedPtr =
builder
.create<mlir::cir::CallOp>(loc, dynCastFuncRef,
builder.getVoidPtrTy(), dynCastFuncArgs)
.getResult(0);
assert(castedPtr.getType().isa<mlir::cir::PointerType>() &&
"the return value of __dynamic_cast should be a ptr");
/// C++ [expr.dynamic.cast]p9:
/// A failed cast to reference type throws std::bad_cast
if (op.isRefcast()) {
// Emit a cir.if that checks the casted value.
mlir::Value castedValueIsNull = builder.createPtrIsNull(castedPtr);
builder.create<mlir::cir::IfOp>(
loc, castedValueIsNull, false, [&](mlir::OpBuilder &, mlir::Location) {
buildBadCastCall(builder, loc, castInfo.getBadCastFunc());
});
}
// Note that castedPtr is a void*. Cast it to a pointer to the destination
// type before return.
return builder.createBitcast(castedPtr, op.getType());
}
static mlir::Value
buildDynamicCastToVoidAfterNullCheck(CIRBaseBuilderTy &builder,
clang::ASTContext &astCtx,
mlir::cir::DynamicCastOp op) {
auto loc = op.getLoc();
bool vtableUsesRelativeLayout = op.getRelativeLayout();
// TODO(cir): consider address space in this function.
assert(!MissingFeatures::addressSpaceCasting());
mlir::Type vtableElemTy;
uint64_t vtableElemAlign;
if (vtableUsesRelativeLayout) {
vtableElemTy = builder.getSIntNTy(32);
vtableElemAlign = 4;
} else {
const auto &targetInfo = astCtx.getTargetInfo();
auto ptrdiffTy = targetInfo.getPtrDiffType(clang::LangAS::Default);
auto ptrdiffTyIsSigned = clang::TargetInfo::isTypeSigned(ptrdiffTy);
auto ptrdiffTyWidth = targetInfo.getTypeWidth(ptrdiffTy);
vtableElemTy = mlir::cir::IntType::get(builder.getContext(), ptrdiffTyWidth,
ptrdiffTyIsSigned);
vtableElemAlign = targetInfo.getPointerAlign(clang::LangAS::Default);
}
// Access vtable to get the offset from the given object to its containing
// complete object.
auto vtablePtrTy = builder.getPointerTo(vtableElemTy);
auto vtablePtrPtr =
builder.createBitcast(op.getSrc(), builder.getPointerTo(vtablePtrTy));
auto vtablePtr = builder.createLoad(loc, vtablePtrPtr);
auto offsetToTopSlotPtr = builder.create<mlir::cir::VTableAddrPointOp>(
loc, vtablePtrTy, mlir::FlatSymbolRefAttr{}, vtablePtr,
/*vtable_index=*/0, -2ULL);
auto offsetToTop =
builder.createAlignedLoad(loc, offsetToTopSlotPtr, vtableElemAlign);
// Add the offset to the given pointer to get the cast result.
// Cast the input pointer to a uint8_t* to allow pointer arithmetic.
auto u8PtrTy = builder.getPointerTo(builder.getUIntNTy(8));
auto srcBytePtr = builder.createBitcast(op.getSrc(), u8PtrTy);
auto dstBytePtr = builder.create<mlir::cir::PtrStrideOp>(
loc, u8PtrTy, srcBytePtr, offsetToTop);
// Cast the result to a void*.
return builder.createBitcast(dstBytePtr, builder.getVoidPtrTy());
}
mlir::Value
LoweringPrepareItaniumCXXABI::lowerDynamicCast(CIRBaseBuilderTy &builder,
clang::ASTContext &astCtx,
mlir::cir::DynamicCastOp op) {
auto loc = op->getLoc();
auto srcValue = op.getSrc();
assert(!MissingFeatures::buildTypeCheck());
if (op.isRefcast())
return buildDynamicCastAfterNullCheck(builder, op);
auto srcValueIsNotNull = builder.createPtrToBoolCast(srcValue);
return builder
.create<mlir::cir::TernaryOp>(
loc, srcValueIsNotNull,
[&](mlir::OpBuilder &, mlir::Location) {
mlir::Value castedValue =
op.isCastToVoid()
? buildDynamicCastToVoidAfterNullCheck(builder, astCtx, op)
: buildDynamicCastAfterNullCheck(builder, op);
builder.createYield(loc, castedValue);
},
[&](mlir::OpBuilder &, mlir::Location) {
builder.createYield(
loc, builder.getNullPtr(op.getType(), loc).getResult());
})
.getResult();
}