2009-12-28 21:28:46 +00:00
|
|
|
//===---- IRBuilder.cpp - Builder for LLVM Instrs -------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the IRBuilder class, which is used as a convenient way
|
|
|
|
// to create LLVM instructions with a consistent and simplified interface.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/IRBuilder.h"
|
|
|
|
#include "llvm/GlobalVariable.h"
|
2009-12-28 21:50:56 +00:00
|
|
|
#include "llvm/Function.h"
|
2010-12-26 22:49:25 +00:00
|
|
|
#include "llvm/Intrinsics.h"
|
2009-12-28 21:45:40 +00:00
|
|
|
#include "llvm/LLVMContext.h"
|
2009-12-28 21:28:46 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
/// CreateGlobalString - Make a new global variable with an initializer that
|
2010-02-10 20:04:19 +00:00
|
|
|
/// has array of i8 type filled in with the nul terminated string value
|
2009-12-28 21:28:46 +00:00
|
|
|
/// specified. If Name is specified, it is the name of the global variable
|
|
|
|
/// created.
|
2011-04-12 00:29:07 +00:00
|
|
|
Value *IRBuilderBase::CreateGlobalString(StringRef Str, const Twine &Name) {
|
2009-12-28 21:28:46 +00:00
|
|
|
Constant *StrConstant = ConstantArray::get(Context, Str, true);
|
|
|
|
Module &M = *BB->getParent()->getParent();
|
|
|
|
GlobalVariable *GV = new GlobalVariable(M, StrConstant->getType(),
|
|
|
|
true, GlobalValue::InternalLinkage,
|
|
|
|
StrConstant, "", 0, false);
|
|
|
|
GV->setName(Name);
|
2011-04-07 00:14:29 +00:00
|
|
|
GV->setUnnamedAddr(true);
|
2009-12-28 21:28:46 +00:00
|
|
|
return GV;
|
|
|
|
}
|
2009-12-28 21:45:40 +00:00
|
|
|
|
2011-07-12 04:14:22 +00:00
|
|
|
Type *IRBuilderBase::getCurrentFunctionReturnType() const {
|
2009-12-28 21:50:56 +00:00
|
|
|
assert(BB && BB->getParent() && "No current function!");
|
|
|
|
return BB->getParent()->getReturnType();
|
|
|
|
}
|
2010-12-26 22:49:25 +00:00
|
|
|
|
|
|
|
Value *IRBuilderBase::getCastedInt8PtrValue(Value *Ptr) {
|
2011-07-18 04:54:35 +00:00
|
|
|
PointerType *PT = cast<PointerType>(Ptr->getType());
|
2010-12-26 22:49:25 +00:00
|
|
|
if (PT->getElementType()->isIntegerTy(8))
|
|
|
|
return Ptr;
|
|
|
|
|
|
|
|
// Otherwise, we need to insert a bitcast.
|
|
|
|
PT = getInt8PtrTy(PT->getAddressSpace());
|
|
|
|
BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
|
|
|
|
BB->getInstList().insert(InsertPt, BCI);
|
|
|
|
SetInstDebugLocation(BCI);
|
|
|
|
return BCI;
|
|
|
|
}
|
|
|
|
|
2011-07-15 08:37:34 +00:00
|
|
|
static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops,
|
|
|
|
IRBuilderBase *Builder) {
|
|
|
|
CallInst *CI = CallInst::Create(Callee, Ops, "");
|
2010-12-26 22:49:25 +00:00
|
|
|
Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI);
|
|
|
|
Builder->SetInstDebugLocation(CI);
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::
|
|
|
|
CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
|
|
|
|
bool isVolatile, MDNode *TBAATag) {
|
|
|
|
Ptr = getCastedInt8PtrValue(Ptr);
|
|
|
|
Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
|
2011-07-12 14:06:48 +00:00
|
|
|
Type *Tys[] = { Ptr->getType(), Size->getType() };
|
2010-12-26 22:49:25 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
2011-07-14 17:45:39 +00:00
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
2011-07-15 08:37:34 +00:00
|
|
|
CallInst *CI = createCallHelper(TheFn, Ops, this);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
|
|
|
// Set the TBAA info if present.
|
|
|
|
if (TBAATag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
|
|
|
|
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::
|
|
|
|
CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
|
|
|
|
bool isVolatile, MDNode *TBAATag) {
|
|
|
|
Dst = getCastedInt8PtrValue(Dst);
|
|
|
|
Src = getCastedInt8PtrValue(Src);
|
|
|
|
|
|
|
|
Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
|
2011-07-12 14:06:48 +00:00
|
|
|
Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
|
2010-12-26 22:49:25 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
2011-07-14 17:45:39 +00:00
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
2011-07-15 08:37:34 +00:00
|
|
|
CallInst *CI = createCallHelper(TheFn, Ops, this);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
|
|
|
// Set the TBAA info if present.
|
|
|
|
if (TBAATag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
|
|
|
|
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::
|
|
|
|
CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
|
|
|
|
bool isVolatile, MDNode *TBAATag) {
|
|
|
|
Dst = getCastedInt8PtrValue(Dst);
|
|
|
|
Src = getCastedInt8PtrValue(Src);
|
|
|
|
|
|
|
|
Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
|
2011-07-12 14:06:48 +00:00
|
|
|
Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
|
2010-12-26 22:49:25 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
2011-07-14 17:45:39 +00:00
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
2011-07-15 08:37:34 +00:00
|
|
|
CallInst *CI = createCallHelper(TheFn, Ops, this);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
|
|
|
// Set the TBAA info if present.
|
|
|
|
if (TBAATag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
|
|
|
|
|
|
|
|
return CI;
|
|
|
|
}
|
2011-05-21 23:14:36 +00:00
|
|
|
|
|
|
|
CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) {
|
|
|
|
assert(isa<PointerType>(Ptr->getType()) &&
|
|
|
|
"lifetime.start only applies to pointers.");
|
|
|
|
Ptr = getCastedInt8PtrValue(Ptr);
|
|
|
|
if (!Size)
|
|
|
|
Size = getInt64(-1);
|
|
|
|
else
|
|
|
|
assert(Size->getType() == getInt64Ty() &&
|
|
|
|
"lifetime.start requires the size to be an i64");
|
|
|
|
Value *Ops[] = { Size, Ptr };
|
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start);
|
2011-07-15 08:37:34 +00:00
|
|
|
return createCallHelper(TheFn, Ops, this);
|
2011-05-21 23:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) {
|
|
|
|
assert(isa<PointerType>(Ptr->getType()) &&
|
|
|
|
"lifetime.end only applies to pointers.");
|
|
|
|
Ptr = getCastedInt8PtrValue(Ptr);
|
|
|
|
if (!Size)
|
|
|
|
Size = getInt64(-1);
|
|
|
|
else
|
|
|
|
assert(Size->getType() == getInt64Ty() &&
|
|
|
|
"lifetime.end requires the size to be an i64");
|
|
|
|
Value *Ops[] = { Size, Ptr };
|
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end);
|
2011-07-15 08:37:34 +00:00
|
|
|
return createCallHelper(TheFn, Ops, this);
|
2011-05-21 23:14:36 +00:00
|
|
|
}
|