forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRBuilder.h
419 lines (364 loc) · 15.6 KB
/
IRBuilder.h
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
//===--- IRBuilder.h - Swift IR Builder -------------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 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 defines Swift's specialization of llvm::IRBuilder.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_IRGEN_IRBUILDER_H
#define SWIFT_IRGEN_IRBUILDER_H
#include "llvm/ADT/PointerUnion.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/InlineAsm.h"
#include "swift/Basic/LLVM.h"
#include "Address.h"
#include "IRGen.h"
namespace swift {
namespace irgen {
class FunctionPointer;
class IRGenModule;
using IRBuilderBase = llvm::IRBuilder<>;
class IRBuilder : public IRBuilderBase {
public:
// Without this, it keeps resolving to llvm::IRBuilderBase because
// of the injected class name.
using IRBuilderBase = irgen::IRBuilderBase;
private:
/// The block containing the insertion point when the insertion
/// point was last cleared. Used only for preserving block
/// ordering.
llvm::BasicBlock *ClearedIP;
unsigned NumTrapBarriers = 0;
#ifndef NDEBUG
/// Whether debug information is requested. Only used in assertions.
bool DebugInfo;
#endif
// Set calling convention of the call instruction using
// the same calling convention as the callee function.
// This ensures that they are always compatible.
void setCallingConvUsingCallee(llvm::CallInst *Call) {
auto CalleeFn = Call->getCalledFunction();
if (CalleeFn) {
auto CC = CalleeFn->getCallingConv();
Call->setCallingConv(CC);
}
}
public:
IRBuilder(llvm::LLVMContext &Context, bool DebugInfo)
: IRBuilderBase(Context), ClearedIP(nullptr)
#ifndef NDEBUG
, DebugInfo(DebugInfo)
#endif
{}
/// Determines if the current location is apparently reachable. The
/// invariant we maintain is that the insertion point of the builder
/// always points within a block unless the current location is
/// logically unreachable. All the low-level routines which emit
/// branches leave the insertion point in the original block, just
/// after the branch. High-level routines may then indicate
/// unreachability by clearing the insertion point.
bool hasValidIP() const { return GetInsertBlock() != nullptr; }
/// Determines whether we're currently inserting after a terminator.
/// This is really just there for asserts.
bool hasPostTerminatorIP() const {
return GetInsertBlock() != nullptr &&
!GetInsertBlock()->empty() &&
isa<llvm::TerminatorInst>(GetInsertBlock()->back());
}
void ClearInsertionPoint() {
assert(hasValidIP() && "clearing invalid insertion point!");
assert(ClearedIP == nullptr);
/// Whenever we clear the insertion point, remember where we were.
ClearedIP = GetInsertBlock();
IRBuilderBase::ClearInsertionPoint();
}
void SetInsertPoint(llvm::BasicBlock *BB) {
ClearedIP = nullptr;
IRBuilderBase::SetInsertPoint(BB);
}
void SetInsertPoint(llvm::BasicBlock *BB, llvm::BasicBlock::iterator before) {
ClearedIP = nullptr;
IRBuilderBase::SetInsertPoint(BB, before);
}
void SetInsertPoint(llvm::Instruction *I) {
ClearedIP = nullptr;
IRBuilderBase::SetInsertPoint(I);
}
/// A stable insertion point in the function. "Stable" means that
/// it will point to the same location in the function, even if
/// instructions are subsequently added to the current basic block.
class StableIP {
/// Either an instruction that we're inserting after or the basic
/// block that we're inserting at the beginning of.
using UnionTy = llvm::PointerUnion<llvm::Instruction *, llvm::BasicBlock *>;
UnionTy After;
public:
StableIP() = default;
explicit StableIP(const IRBuilder &Builder) {
if (!Builder.hasValidIP()) {
After = UnionTy();
assert(!isValid());
return;
}
llvm::BasicBlock *curBlock = Builder.GetInsertBlock();
assert(Builder.GetInsertPoint() == curBlock->end());
if (curBlock->empty())
After = curBlock;
else
After = &curBlock->back();
}
/// Does this stable IP point to a valid location?
bool isValid() const {
return !After.isNull();
}
/// Insert an unparented instruction at this insertion point.
/// Note that inserting multiple instructions at an IP will cause
/// them to end up in reverse order.
void insert(llvm::Instruction *I) {
assert(isValid() && "inserting at invalid location!");
assert(I->getParent() == nullptr);
if (auto *block = After.dyn_cast<llvm::BasicBlock*>()) {
block->getInstList().push_front(I);
} else {
llvm::Instruction *afterInsn = After.get<llvm::Instruction*>();
afterInsn->getParent()->getInstList().insertAfter(
afterInsn->getIterator(), I);
}
}
// Support for being placed in pointer unions.
void *getOpaqueValue() const { return After.getOpaqueValue(); }
static StableIP getFromOpaqueValue(void *p) {
StableIP result;
result.After = UnionTy::getFromOpaqueValue(p);
return result;
}
enum { NumLowBitsAvailable
= llvm::PointerLikeTypeTraits<UnionTy>::NumLowBitsAvailable };
};
/// Capture a stable reference to the current IP.
StableIP getStableIP() const {
return StableIP(*this);
}
/// Return the LLVM module we're inserting into.
llvm::Module *getModule() const {
if (auto BB = GetInsertBlock())
return BB->getModule();
assert(ClearedIP && "IRBuilder has no active or cleared insertion block");
return ClearedIP->getModule();
}
/// Don't create allocas this way; you'll get a dynamic alloca.
/// Use IGF::createAlloca or IGF::emitDynamicAlloca.
llvm::Value *CreateAlloca(llvm::Type *type, llvm::Value *arraySize,
const llvm::Twine &name = "") = delete;
llvm::LoadInst *CreateLoad(llvm::Value *addr, Alignment align,
const llvm::Twine &name = "") {
llvm::LoadInst *load = IRBuilderBase::CreateLoad(addr, name);
load->setAlignment(align.getValue());
return load;
}
llvm::LoadInst *CreateLoad(Address addr, const llvm::Twine &name = "") {
return CreateLoad(addr.getAddress(), addr.getAlignment(), name);
}
llvm::StoreInst *CreateStore(llvm::Value *value, llvm::Value *addr,
Alignment align) {
llvm::StoreInst *store = IRBuilderBase::CreateStore(value, addr);
store->setAlignment(align.getValue());
return store;
}
llvm::StoreInst *CreateStore(llvm::Value *value, Address addr) {
return CreateStore(value, addr.getAddress(), addr.getAlignment());
}
// These are deleted because we want to force the caller to specify
// an alignment.
llvm::LoadInst *CreateLoad(llvm::Value *addr,
const llvm::Twine &name = "") = delete;
llvm::StoreInst *CreateStore(llvm::Value *value, llvm::Value *addr) = delete;
using IRBuilderBase::CreateStructGEP;
Address CreateStructGEP(Address address, unsigned index, Size offset,
const llvm::Twine &name = "") {
llvm::Value *addr = CreateStructGEP(
address.getType()->getElementType(), address.getAddress(),
index, name);
return Address(addr, address.getAlignment().alignmentAtOffset(offset));
}
Address CreateStructGEP(Address address, unsigned index,
const llvm::StructLayout *layout,
const llvm::Twine &name = "") {
Size offset = Size(layout->getElementOffset(index));
return CreateStructGEP(address, index, offset, name);
}
/// Given a pointer to an array element, GEP to the array element
/// N elements past it. The type is not changed.
Address CreateConstArrayGEP(Address base, unsigned index, Size eltSize,
const llvm::Twine &name = "") {
auto addr = CreateConstInBoundsGEP1_32(
base.getType()->getElementType(), base.getAddress(), index, name);
return Address(addr,
base.getAlignment().alignmentAtOffset(eltSize * index));
}
/// Given an i8*, GEP to N bytes past it.
Address CreateConstByteArrayGEP(Address base, Size offset,
const llvm::Twine &name = "") {
auto addr = CreateConstInBoundsGEP1_32(
base.getType()->getElementType(), base.getAddress(), offset.getValue(),
name);
return Address(addr, base.getAlignment().alignmentAtOffset(offset));
}
using IRBuilderBase::CreateBitCast;
Address CreateBitCast(Address address, llvm::Type *type,
const llvm::Twine &name = "") {
llvm::Value *addr = CreateBitCast(address.getAddress(), type, name);
return Address(addr, address.getAlignment());
}
/// Cast the given address to be a pointer to the given element type,
/// preserving the original address space.
Address CreateElementBitCast(Address address, llvm::Type *type,
const llvm::Twine &name = "") {
// Do nothing if the type doesn't change.
auto origPtrType = address.getType();
if (origPtrType->getElementType() == type) return address;
// Otherwise, cast to a pointer to the correct type.
auto ptrType = type->getPointerTo(origPtrType->getAddressSpace());
return CreateBitCast(address, ptrType, name);
}
/// Insert the given basic block after the IP block and move the
/// insertion point to it. Only valid if the IP is valid.
void emitBlock(llvm::BasicBlock *BB);
using IRBuilderBase::CreateMemCpy;
llvm::CallInst *CreateMemCpy(Address dest, Address src, Size size) {
return CreateMemCpy(dest.getAddress(), dest.getAlignment().getValue(),
src.getAddress(), src.getAlignment().getValue(),
size.getValue());
}
using IRBuilderBase::CreateMemSet;
llvm::CallInst *CreateMemSet(Address dest, llvm::Value *value, Size size) {
return CreateMemSet(dest.getAddress(), value, size.getValue(),
dest.getAlignment().getValue());
}
llvm::CallInst *CreateMemSet(Address dest, llvm::Value *value,
llvm::Value *size) {
return CreateMemSet(dest.getAddress(), value, size,
dest.getAlignment().getValue());
}
using IRBuilderBase::CreateLifetimeStart;
llvm::CallInst *CreateLifetimeStart(Address buf, Size size) {
return CreateLifetimeStart(buf.getAddress(),
llvm::ConstantInt::get(Context, APInt(64, size.getValue())));
}
using IRBuilderBase::CreateLifetimeEnd;
llvm::CallInst *CreateLifetimeEnd(Address buf, Size size) {
return CreateLifetimeEnd(buf.getAddress(),
llvm::ConstantInt::get(Context, APInt(64, size.getValue())));
}
// We're intentionally not allowing direct use of
// llvm::IRBuilder::CreateCall in order to push code towards using
// FunctionPointer.
bool isTrapIntrinsic(llvm::Value *Callee) {
return Callee == llvm::Intrinsic::getDeclaration(getModule(),
llvm::Intrinsic::ID::trap);
}
bool isTrapIntrinsic(llvm::Intrinsic::ID intrinsicID) {
return intrinsicID == llvm::Intrinsic::ID::trap;
}
llvm::CallInst *CreateCall(llvm::Value *Callee, ArrayRef<llvm::Value *> Args,
const Twine &Name = "",
llvm::MDNode *FPMathTag = nullptr) = delete;
llvm::CallInst *CreateCall(llvm::FunctionType *FTy, llvm::Constant *Callee,
ArrayRef<llvm::Value *> Args,
const Twine &Name = "",
llvm::MDNode *FPMathTag = nullptr) {
assert((!DebugInfo || getCurrentDebugLocation()) && "no debugloc on call");
assert(!isTrapIntrinsic(Callee) && "Use CreateNonMergeableTrap");
auto Call = IRBuilderBase::CreateCall(FTy, Callee, Args, Name, FPMathTag);
setCallingConvUsingCallee(Call);
return Call;
}
llvm::CallInst *CreateCall(llvm::Constant *Callee,
ArrayRef<llvm::Value *> Args,
const Twine &Name = "",
llvm::MDNode *FPMathTag = nullptr) {
// assert((!DebugInfo || getCurrentDebugLocation()) && "no debugloc on
// call");
assert(!isTrapIntrinsic(Callee) && "Use CreateNonMergeableTrap");
auto Call = IRBuilderBase::CreateCall(Callee, Args, Name, FPMathTag);
setCallingConvUsingCallee(Call);
return Call;
}
llvm::CallInst *CreateCall(const FunctionPointer &fn,
ArrayRef<llvm::Value *> args);
llvm::CallInst *CreateAsmCall(llvm::InlineAsm *asmBlock,
ArrayRef<llvm::Value *> args) {
return IRBuilderBase::CreateCall(asmBlock, args);
}
/// Call an intrinsic with no type arguments.
llvm::CallInst *CreateIntrinsicCall(llvm::Intrinsic::ID intrinsicID,
ArrayRef<llvm::Value *> args,
const Twine &name = "") {
assert(!isTrapIntrinsic(intrinsicID) && "Use CreateNonMergeableTrap");
auto intrinsicFn =
llvm::Intrinsic::getDeclaration(getModule(), intrinsicID);
return CreateCall(intrinsicFn, args, name);
}
/// Call an intrinsic with type arguments.
llvm::CallInst *CreateIntrinsicCall(llvm::Intrinsic::ID intrinsicID,
ArrayRef<llvm::Type*> typeArgs,
ArrayRef<llvm::Value *> args,
const Twine &name = "") {
assert(!isTrapIntrinsic(intrinsicID) && "Use CreateNonMergeableTrap");
auto intrinsicFn =
llvm::Intrinsic::getDeclaration(getModule(), intrinsicID, typeArgs);
return CreateCall(intrinsicFn, args, name);
}
/// Call the trap intrinsic. If optimizations are enabled, an inline asm
/// gadget is emitted before the trap. The gadget inhibits transforms which
/// merge trap calls together, which makes debugging crashes easier.
llvm::CallInst *CreateNonMergeableTrap(IRGenModule &IGM);
/// Split a first-class aggregate value into its component pieces.
template <unsigned N>
std::array<llvm::Value *, N> CreateSplit(llvm::Value *aggregate) {
assert(isa<llvm::StructType>(aggregate->getType()));
assert(cast<llvm::StructType>(aggregate->getType())->getNumElements() == N);
std::array<llvm::Value *, N> results;
for (unsigned i = 0; i != N; ++i) {
results[i] = CreateExtractValue(aggregate, i);
}
return results;
}
/// Combine the given values into a first-class aggregate.
llvm::Value *CreateCombine(llvm::StructType *aggregateType,
ArrayRef<llvm::Value*> values) {
assert(aggregateType->getNumElements() == values.size());
llvm::Value *result = llvm::UndefValue::get(aggregateType);
for (unsigned i = 0, e = values.size(); i != e; ++i) {
result = CreateInsertValue(result, values[i], i);
}
return result;
}
};
} // end namespace irgen
} // end namespace swift
namespace llvm {
template <> struct PointerLikeTypeTraits<swift::irgen::IRBuilder::StableIP> {
using type = swift::irgen::IRBuilder::StableIP;
public:
static void *getAsVoidPointer(type IP) {
return IP.getOpaqueValue();
}
static type getFromVoidPointer(void *p) {
return type::getFromOpaqueValue(p);
}
// The number of bits available are the min of the two pointer types.
enum {
NumLowBitsAvailable = type::NumLowBitsAvailable
};
};
}
#endif