2003-12-28 08:19:41 +00:00
|
|
|
//===-- IntrinsicLowering.cpp - Intrinsic Lowering default implementation -===//
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2003-12-28 08:19:41 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2003-12-28 08:19:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-11-15 18:00:10 +00:00
|
|
|
// This file implements the IntrinsicLowering class.
|
2003-12-28 08:19:41 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-02-14 02:47:17 +00:00
|
|
|
#include "llvm/Constants.h"
|
2004-02-12 17:01:09 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2003-12-28 08:19:41 +00:00
|
|
|
#include "llvm/Module.h"
|
2004-07-29 17:30:56 +00:00
|
|
|
#include "llvm/Instructions.h"
|
2005-05-03 17:19:30 +00:00
|
|
|
#include "llvm/Type.h"
|
2006-11-28 02:08:17 +00:00
|
|
|
#include "llvm/CodeGen/IntrinsicLowering.h"
|
|
|
|
#include "llvm/Support/Streams.h"
|
2007-01-29 17:42:06 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2007-02-13 06:01:22 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2007-09-07 04:06:50 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2003-12-28 08:19:41 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2004-05-09 04:29:57 +00:00
|
|
|
template <class ArgIt>
|
2007-01-07 08:12:01 +00:00
|
|
|
static void EnsureFunctionExists(Module &M, const char *Name,
|
|
|
|
ArgIt ArgBegin, ArgIt ArgEnd,
|
|
|
|
const Type *RetTy) {
|
|
|
|
// Insert a correctly-typed definition now.
|
2004-05-09 04:29:57 +00:00
|
|
|
std::vector<const Type *> ParamTys;
|
|
|
|
for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
|
|
|
|
ParamTys.push_back(I->getType());
|
2007-01-07 08:12:01 +00:00
|
|
|
M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
|
2004-05-09 04:29:57 +00:00
|
|
|
}
|
|
|
|
|
2004-02-15 22:16:39 +00:00
|
|
|
/// ReplaceCallWith - This function is used when we want to lower an intrinsic
|
|
|
|
/// call to a call of an external function. This handles hard cases such as
|
|
|
|
/// when there was already a prototype for the external function, and if that
|
|
|
|
/// prototype doesn't match the arguments we expect to pass in.
|
|
|
|
template <class ArgIt>
|
|
|
|
static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI,
|
2007-01-07 08:12:01 +00:00
|
|
|
ArgIt ArgBegin, ArgIt ArgEnd,
|
|
|
|
const Type *RetTy, Constant *&FCache) {
|
2004-02-15 22:16:39 +00:00
|
|
|
if (!FCache) {
|
|
|
|
// If we haven't already looked up this function, check to see if the
|
|
|
|
// program already contains a function with this name.
|
|
|
|
Module *M = CI->getParent()->getParent()->getParent();
|
2007-01-07 08:12:01 +00:00
|
|
|
// Get or insert the definition now.
|
|
|
|
std::vector<const Type *> ParamTys;
|
|
|
|
for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
|
|
|
|
ParamTys.push_back((*I)->getType());
|
|
|
|
FCache = M->getOrInsertFunction(NewFn,
|
|
|
|
FunctionType::get(RetTy, ParamTys, false));
|
2004-02-15 22:16:39 +00:00
|
|
|
}
|
|
|
|
|
2007-08-01 03:43:44 +00:00
|
|
|
SmallVector<Value *, 8> Args(ArgBegin, ArgEnd);
|
|
|
|
CallInst *NewCI = new CallInst(FCache, Args.begin(), Args.end(),
|
2007-02-13 06:01:22 +00:00
|
|
|
CI->getName(), CI);
|
2007-01-07 08:12:01 +00:00
|
|
|
if (!CI->use_empty())
|
|
|
|
CI->replaceAllUsesWith(NewCI);
|
2004-06-11 02:54:02 +00:00
|
|
|
return NewCI;
|
2004-02-15 22:16:39 +00:00
|
|
|
}
|
|
|
|
|
2006-11-15 18:00:10 +00:00
|
|
|
void IntrinsicLowering::AddPrototypes(Module &M) {
|
2004-05-09 04:29:57 +00:00
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
2007-01-30 20:08:39 +00:00
|
|
|
if (I->isDeclaration() && !I->use_empty())
|
2004-05-09 04:29:57 +00:00
|
|
|
switch (I->getIntrinsicID()) {
|
|
|
|
default: break;
|
|
|
|
case Intrinsic::setjmp:
|
2005-05-08 19:46:29 +00:00
|
|
|
EnsureFunctionExists(M, "setjmp", I->arg_begin(), I->arg_end(),
|
2006-12-31 05:55:36 +00:00
|
|
|
Type::Int32Ty);
|
2004-05-09 04:29:57 +00:00
|
|
|
break;
|
|
|
|
case Intrinsic::longjmp:
|
2005-05-08 19:46:29 +00:00
|
|
|
EnsureFunctionExists(M, "longjmp", I->arg_begin(), I->arg_end(),
|
|
|
|
Type::VoidTy);
|
2004-05-09 04:29:57 +00:00
|
|
|
break;
|
|
|
|
case Intrinsic::siglongjmp:
|
2005-05-08 19:46:29 +00:00
|
|
|
EnsureFunctionExists(M, "abort", I->arg_end(), I->arg_end(),
|
|
|
|
Type::VoidTy);
|
2004-05-09 04:29:57 +00:00
|
|
|
break;
|
2006-03-03 00:00:25 +00:00
|
|
|
case Intrinsic::memcpy_i32:
|
|
|
|
case Intrinsic::memcpy_i64:
|
2007-01-28 22:28:00 +00:00
|
|
|
M.getOrInsertFunction("memcpy", PointerType::get(Type::Int8Ty),
|
|
|
|
PointerType::get(Type::Int8Ty),
|
2007-01-29 17:42:06 +00:00
|
|
|
PointerType::get(Type::Int8Ty),
|
|
|
|
TD.getIntPtrType(), (Type *)0);
|
2004-05-09 04:29:57 +00:00
|
|
|
break;
|
2006-03-03 00:00:25 +00:00
|
|
|
case Intrinsic::memmove_i32:
|
|
|
|
case Intrinsic::memmove_i64:
|
2007-01-28 22:28:00 +00:00
|
|
|
M.getOrInsertFunction("memmove", PointerType::get(Type::Int8Ty),
|
|
|
|
PointerType::get(Type::Int8Ty),
|
2007-01-29 17:42:06 +00:00
|
|
|
PointerType::get(Type::Int8Ty),
|
|
|
|
TD.getIntPtrType(), (Type *)0);
|
2004-05-09 04:29:57 +00:00
|
|
|
break;
|
2006-03-03 00:00:25 +00:00
|
|
|
case Intrinsic::memset_i32:
|
|
|
|
case Intrinsic::memset_i64:
|
2006-12-31 05:55:36 +00:00
|
|
|
M.getOrInsertFunction("memset", PointerType::get(Type::Int8Ty),
|
2007-01-29 17:42:06 +00:00
|
|
|
PointerType::get(Type::Int8Ty), Type::Int32Ty,
|
|
|
|
TD.getIntPtrType(), (Type *)0);
|
2004-05-09 04:29:57 +00:00
|
|
|
break;
|
For PR411:
This patch is an incremental step towards supporting a flat symbol table.
It de-overloads the intrinsic functions by providing type-specific intrinsics
and arranging for automatically upgrading from the old overloaded name to
the new non-overloaded name. Specifically:
llvm.isunordered -> llvm.isunordered.f32, llvm.isunordered.f64
llvm.sqrt -> llvm.sqrt.f32, llvm.sqrt.f64
llvm.ctpop -> llvm.ctpop.i8, llvm.ctpop.i16, llvm.ctpop.i32, llvm.ctpop.i64
llvm.ctlz -> llvm.ctlz.i8, llvm.ctlz.i16, llvm.ctlz.i32, llvm.ctlz.i64
llvm.cttz -> llvm.cttz.i8, llvm.cttz.i16, llvm.cttz.i32, llvm.cttz.i64
New code should not use the overloaded intrinsic names. Warnings will be
emitted if they are used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25366 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-16 21:12:35 +00:00
|
|
|
case Intrinsic::sqrt_f32:
|
|
|
|
case Intrinsic::sqrt_f64:
|
2005-04-30 07:13:31 +00:00
|
|
|
if(I->arg_begin()->getType() == Type::FloatTy)
|
2005-05-08 19:46:29 +00:00
|
|
|
EnsureFunctionExists(M, "sqrtf", I->arg_begin(), I->arg_end(),
|
|
|
|
Type::FloatTy);
|
2005-04-30 04:07:50 +00:00
|
|
|
else
|
2005-05-08 19:46:29 +00:00
|
|
|
EnsureFunctionExists(M, "sqrt", I->arg_begin(), I->arg_end(),
|
|
|
|
Type::DoubleTy);
|
2005-04-30 04:07:50 +00:00
|
|
|
break;
|
2004-05-09 04:29:57 +00:00
|
|
|
}
|
|
|
|
}
|
2004-02-15 22:16:39 +00:00
|
|
|
|
2006-01-16 07:57:00 +00:00
|
|
|
/// LowerBSWAP - Emit the code to lower bswap of V before the specified
|
|
|
|
/// instruction IP.
|
|
|
|
static Value *LowerBSWAP(Value *V, Instruction *IP) {
|
2007-01-15 02:27:26 +00:00
|
|
|
assert(V->getType()->isInteger() && "Can't bswap a non-integer type!");
|
2006-01-16 07:57:00 +00:00
|
|
|
|
|
|
|
unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
|
|
|
|
|
|
|
|
switch(BitSize) {
|
|
|
|
default: assert(0 && "Unhandled type size of value to byteswap!");
|
|
|
|
case 16: {
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp1 = BinaryOperator::createShl(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),8),"bswap.2",IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp2 = BinaryOperator::createLShr(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),8),"bswap.1",IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
V = BinaryOperator::createOr(Tmp1, Tmp2, "bswap.i16", IP);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 32: {
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp4 = BinaryOperator::createShl(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),24),"bswap.4", IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp3 = BinaryOperator::createShl(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),8),"bswap.3",IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp2 = BinaryOperator::createLShr(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),8),"bswap.2",IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp1 = BinaryOperator::createLShr(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),24),"bswap.1", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
Tmp3 = BinaryOperator::createAnd(Tmp3,
|
2006-12-31 05:55:36 +00:00
|
|
|
ConstantInt::get(Type::Int32Ty, 0xFF0000),
|
2006-01-16 07:57:00 +00:00
|
|
|
"bswap.and3", IP);
|
|
|
|
Tmp2 = BinaryOperator::createAnd(Tmp2,
|
2006-12-31 05:55:36 +00:00
|
|
|
ConstantInt::get(Type::Int32Ty, 0xFF00),
|
2006-01-16 07:57:00 +00:00
|
|
|
"bswap.and2", IP);
|
|
|
|
Tmp4 = BinaryOperator::createOr(Tmp4, Tmp3, "bswap.or1", IP);
|
|
|
|
Tmp2 = BinaryOperator::createOr(Tmp2, Tmp1, "bswap.or2", IP);
|
2007-06-11 23:16:16 +00:00
|
|
|
V = BinaryOperator::createOr(Tmp4, Tmp2, "bswap.i32", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 64: {
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp8 = BinaryOperator::createShl(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),56),"bswap.8", IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp7 = BinaryOperator::createShl(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),40),"bswap.7", IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp6 = BinaryOperator::createShl(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),24),"bswap.6", IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value *Tmp5 = BinaryOperator::createShl(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),8),"bswap.5", IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value* Tmp4 = BinaryOperator::createLShr(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),8),"bswap.4", IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value* Tmp3 = BinaryOperator::createLShr(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),24),"bswap.3", IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value* Tmp2 = BinaryOperator::createLShr(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),40),"bswap.2", IP);
|
2007-02-02 14:09:34 +00:00
|
|
|
Value* Tmp1 = BinaryOperator::createLShr(V,
|
2007-02-02 02:16:23 +00:00
|
|
|
ConstantInt::get(V->getType(),56),"bswap.1", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
Tmp7 = BinaryOperator::createAnd(Tmp7,
|
2006-12-31 05:55:36 +00:00
|
|
|
ConstantInt::get(Type::Int64Ty,
|
2006-10-20 07:07:24 +00:00
|
|
|
0xFF000000000000ULL),
|
|
|
|
"bswap.and7", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
Tmp6 = BinaryOperator::createAnd(Tmp6,
|
2006-12-31 05:55:36 +00:00
|
|
|
ConstantInt::get(Type::Int64Ty, 0xFF0000000000ULL),
|
2006-10-20 07:07:24 +00:00
|
|
|
"bswap.and6", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
Tmp5 = BinaryOperator::createAnd(Tmp5,
|
2006-12-31 05:55:36 +00:00
|
|
|
ConstantInt::get(Type::Int64Ty, 0xFF00000000ULL),
|
2006-10-20 07:07:24 +00:00
|
|
|
"bswap.and5", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
Tmp4 = BinaryOperator::createAnd(Tmp4,
|
2006-12-31 05:55:36 +00:00
|
|
|
ConstantInt::get(Type::Int64Ty, 0xFF000000ULL),
|
2006-10-20 07:07:24 +00:00
|
|
|
"bswap.and4", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
Tmp3 = BinaryOperator::createAnd(Tmp3,
|
2006-12-31 05:55:36 +00:00
|
|
|
ConstantInt::get(Type::Int64Ty, 0xFF0000ULL),
|
2006-10-20 07:07:24 +00:00
|
|
|
"bswap.and3", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
Tmp2 = BinaryOperator::createAnd(Tmp2,
|
2006-12-31 05:55:36 +00:00
|
|
|
ConstantInt::get(Type::Int64Ty, 0xFF00ULL),
|
2006-10-20 07:07:24 +00:00
|
|
|
"bswap.and2", IP);
|
2006-01-16 07:57:00 +00:00
|
|
|
Tmp8 = BinaryOperator::createOr(Tmp8, Tmp7, "bswap.or1", IP);
|
|
|
|
Tmp6 = BinaryOperator::createOr(Tmp6, Tmp5, "bswap.or2", IP);
|
|
|
|
Tmp4 = BinaryOperator::createOr(Tmp4, Tmp3, "bswap.or3", IP);
|
|
|
|
Tmp2 = BinaryOperator::createOr(Tmp2, Tmp1, "bswap.or4", IP);
|
|
|
|
Tmp8 = BinaryOperator::createOr(Tmp8, Tmp6, "bswap.or5", IP);
|
|
|
|
Tmp4 = BinaryOperator::createOr(Tmp4, Tmp2, "bswap.or6", IP);
|
|
|
|
V = BinaryOperator::createOr(Tmp8, Tmp4, "bswap.i64", IP);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return V;
|
|
|
|
}
|
|
|
|
|
2005-05-11 19:42:05 +00:00
|
|
|
/// LowerCTPOP - Emit the code to lower ctpop of V before the specified
|
2006-01-16 07:57:00 +00:00
|
|
|
/// instruction IP.
|
2005-05-11 19:42:05 +00:00
|
|
|
static Value *LowerCTPOP(Value *V, Instruction *IP) {
|
2007-01-15 02:27:26 +00:00
|
|
|
assert(V->getType()->isInteger() && "Can't ctpop a non-integer type!");
|
2005-05-11 19:42:05 +00:00
|
|
|
|
|
|
|
static const uint64_t MaskValues[6] = {
|
|
|
|
0x5555555555555555ULL, 0x3333333333333333ULL,
|
|
|
|
0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
|
|
|
|
0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
|
|
|
|
};
|
|
|
|
|
2005-05-11 20:24:12 +00:00
|
|
|
unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
|
2007-06-02 04:10:33 +00:00
|
|
|
unsigned WordSize = (BitSize + 63) / 64;
|
|
|
|
Value *Count = ConstantInt::get(V->getType(), 0);
|
2006-11-08 06:47:33 +00:00
|
|
|
|
2007-06-02 04:10:33 +00:00
|
|
|
for (unsigned n = 0; n < WordSize; ++n) {
|
|
|
|
Value *PartValue = V;
|
|
|
|
for (unsigned i = 1, ct = 0; i < (BitSize>64 ? 64 : BitSize);
|
|
|
|
i <<= 1, ++ct) {
|
|
|
|
Value *MaskCst = ConstantInt::get(V->getType(), MaskValues[ct]);
|
|
|
|
Value *LHS = BinaryOperator::createAnd(
|
|
|
|
PartValue, MaskCst, "cppop.and1", IP);
|
|
|
|
Value *VShift = BinaryOperator::createLShr(PartValue,
|
|
|
|
ConstantInt::get(V->getType(), i), "ctpop.sh", IP);
|
|
|
|
Value *RHS = BinaryOperator::createAnd(VShift, MaskCst, "cppop.and2", IP);
|
|
|
|
PartValue = BinaryOperator::createAdd(LHS, RHS, "ctpop.step", IP);
|
|
|
|
}
|
|
|
|
Count = BinaryOperator::createAdd(PartValue, Count, "ctpop.part", IP);
|
|
|
|
if (BitSize > 64) {
|
|
|
|
V = BinaryOperator::createLShr(V, ConstantInt::get(V->getType(), 64),
|
|
|
|
"ctpop.part.sh", IP);
|
|
|
|
BitSize -= 64;
|
|
|
|
}
|
2005-05-11 19:42:05 +00:00
|
|
|
}
|
|
|
|
|
2007-08-06 16:36:18 +00:00
|
|
|
return Count;
|
2005-05-11 19:42:05 +00:00
|
|
|
}
|
|
|
|
|
2005-05-11 20:24:12 +00:00
|
|
|
/// LowerCTLZ - Emit the code to lower ctlz of V before the specified
|
2006-01-16 07:57:00 +00:00
|
|
|
/// instruction IP.
|
2005-05-11 20:24:12 +00:00
|
|
|
static Value *LowerCTLZ(Value *V, Instruction *IP) {
|
|
|
|
|
|
|
|
unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
|
2007-06-02 04:10:33 +00:00
|
|
|
for (unsigned i = 1; i < BitSize; i <<= 1) {
|
2007-02-02 02:16:23 +00:00
|
|
|
Value *ShVal = ConstantInt::get(V->getType(), i);
|
2007-02-02 14:09:34 +00:00
|
|
|
ShVal = BinaryOperator::createLShr(V, ShVal, "ctlz.sh", IP);
|
2005-05-11 20:24:12 +00:00
|
|
|
V = BinaryOperator::createOr(V, ShVal, "ctlz.step", IP);
|
|
|
|
}
|
|
|
|
|
|
|
|
V = BinaryOperator::createNot(V, "", IP);
|
|
|
|
return LowerCTPOP(V, IP);
|
|
|
|
}
|
|
|
|
|
2007-04-12 02:48:46 +00:00
|
|
|
/// Convert the llvm.part.select.iX.iY intrinsic. This intrinsic takes
|
|
|
|
/// three integer arguments. The first argument is the Value from which the
|
|
|
|
/// bits will be selected. It may be of any bit width. The second and third
|
|
|
|
/// arguments specify a range of bits to select with the second argument
|
|
|
|
/// specifying the low bit and the third argument specifying the high bit. Both
|
|
|
|
/// must be type i32. The result is the corresponding selected bits from the
|
|
|
|
/// Value in the same width as the Value (first argument). If the low bit index
|
|
|
|
/// is higher than the high bit index then the inverse selection is done and
|
|
|
|
/// the bits are returned in inverse order.
|
|
|
|
/// @brief Lowering of llvm.part.select intrinsic.
|
|
|
|
static Instruction *LowerPartSelect(CallInst *CI) {
|
2007-04-04 23:48:25 +00:00
|
|
|
// Make sure we're dealing with a part select intrinsic here
|
|
|
|
Function *F = CI->getCalledFunction();
|
|
|
|
const FunctionType *FT = F->getFunctionType();
|
|
|
|
if (!F->isDeclaration() || !FT->getReturnType()->isInteger() ||
|
|
|
|
FT->getNumParams() != 3 || !FT->getParamType(0)->isInteger() ||
|
|
|
|
!FT->getParamType(1)->isInteger() || !FT->getParamType(2)->isInteger())
|
|
|
|
return CI;
|
|
|
|
|
|
|
|
// Get the intrinsic implementation function by converting all the . to _
|
|
|
|
// in the intrinsic's function name and then reconstructing the function
|
|
|
|
// declaration.
|
|
|
|
std::string Name(F->getName());
|
|
|
|
for (unsigned i = 4; i < Name.length(); ++i)
|
|
|
|
if (Name[i] == '.')
|
|
|
|
Name[i] = '_';
|
|
|
|
Module* M = F->getParent();
|
|
|
|
F = cast<Function>(M->getOrInsertFunction(Name, FT));
|
2007-04-12 21:53:38 +00:00
|
|
|
F->setLinkage(GlobalValue::WeakLinkage);
|
2007-04-04 23:48:25 +00:00
|
|
|
|
|
|
|
// If we haven't defined the impl function yet, do so now
|
|
|
|
if (F->isDeclaration()) {
|
|
|
|
|
|
|
|
// Get the arguments to the function
|
2007-04-12 13:30:14 +00:00
|
|
|
Function::arg_iterator args = F->arg_begin();
|
|
|
|
Value* Val = args++; Val->setName("Val");
|
|
|
|
Value* Lo = args++; Lo->setName("Lo");
|
|
|
|
Value* Hi = args++; Hi->setName("High");
|
2007-04-04 23:48:25 +00:00
|
|
|
|
2007-04-12 13:30:14 +00:00
|
|
|
// We want to select a range of bits here such that [Hi, Lo] is shifted
|
|
|
|
// down to the low bits. However, it is quite possible that Hi is smaller
|
|
|
|
// than Lo in which case the bits have to be reversed.
|
2007-04-04 23:48:25 +00:00
|
|
|
|
|
|
|
// Create the blocks we will need for the two cases (forward, reverse)
|
|
|
|
BasicBlock* CurBB = new BasicBlock("entry", F);
|
|
|
|
BasicBlock *RevSize = new BasicBlock("revsize", CurBB->getParent());
|
|
|
|
BasicBlock *FwdSize = new BasicBlock("fwdsize", CurBB->getParent());
|
|
|
|
BasicBlock *Compute = new BasicBlock("compute", CurBB->getParent());
|
|
|
|
BasicBlock *Reverse = new BasicBlock("reverse", CurBB->getParent());
|
|
|
|
BasicBlock *RsltBlk = new BasicBlock("result", CurBB->getParent());
|
|
|
|
|
2007-04-12 13:30:14 +00:00
|
|
|
// Cast Hi and Lo to the size of Val so the widths are all the same
|
|
|
|
if (Hi->getType() != Val->getType())
|
|
|
|
Hi = CastInst::createIntegerCast(Hi, Val->getType(), false,
|
2007-04-04 23:48:25 +00:00
|
|
|
"tmp", CurBB);
|
2007-04-12 13:30:14 +00:00
|
|
|
if (Lo->getType() != Val->getType())
|
|
|
|
Lo = CastInst::createIntegerCast(Lo, Val->getType(), false,
|
2007-04-04 23:48:25 +00:00
|
|
|
"tmp", CurBB);
|
|
|
|
|
|
|
|
// Compute a few things that both cases will need, up front.
|
|
|
|
Constant* Zero = ConstantInt::get(Val->getType(), 0);
|
|
|
|
Constant* One = ConstantInt::get(Val->getType(), 1);
|
|
|
|
Constant* AllOnes = ConstantInt::getAllOnesValue(Val->getType());
|
|
|
|
|
2007-04-12 13:30:14 +00:00
|
|
|
// Compare the Hi and Lo bit positions. This is used to determine
|
2007-04-04 23:48:25 +00:00
|
|
|
// which case we have (forward or reverse)
|
2007-04-12 13:30:14 +00:00
|
|
|
ICmpInst *Cmp = new ICmpInst(ICmpInst::ICMP_ULT, Hi, Lo, "less",CurBB);
|
2007-04-04 23:48:25 +00:00
|
|
|
new BranchInst(RevSize, FwdSize, Cmp, CurBB);
|
|
|
|
|
|
|
|
// First, copmute the number of bits in the forward case.
|
|
|
|
Instruction* FBitSize =
|
2007-04-12 13:30:14 +00:00
|
|
|
BinaryOperator::createSub(Hi, Lo,"fbits", FwdSize);
|
2007-04-04 23:48:25 +00:00
|
|
|
new BranchInst(Compute, FwdSize);
|
|
|
|
|
|
|
|
// Second, compute the number of bits in the reverse case.
|
|
|
|
Instruction* RBitSize =
|
2007-04-12 13:30:14 +00:00
|
|
|
BinaryOperator::createSub(Lo, Hi, "rbits", RevSize);
|
2007-04-04 23:48:25 +00:00
|
|
|
new BranchInst(Compute, RevSize);
|
|
|
|
|
|
|
|
// Now, compute the bit range. Start by getting the bitsize and the shift
|
2007-04-12 13:30:14 +00:00
|
|
|
// amount (either Hi or Lo) from PHI nodes. Then we compute a mask for
|
2007-04-04 23:48:25 +00:00
|
|
|
// the number of bits we want in the range. We shift the bits down to the
|
|
|
|
// least significant bits, apply the mask to zero out unwanted high bits,
|
|
|
|
// and we have computed the "forward" result. It may still need to be
|
|
|
|
// reversed.
|
|
|
|
|
|
|
|
// Get the BitSize from one of the two subtractions
|
|
|
|
PHINode *BitSize = new PHINode(Val->getType(), "bits", Compute);
|
|
|
|
BitSize->reserveOperandSpace(2);
|
|
|
|
BitSize->addIncoming(FBitSize, FwdSize);
|
|
|
|
BitSize->addIncoming(RBitSize, RevSize);
|
|
|
|
|
2007-04-12 13:30:14 +00:00
|
|
|
// Get the ShiftAmount as the smaller of Hi/Lo
|
2007-04-04 23:48:25 +00:00
|
|
|
PHINode *ShiftAmt = new PHINode(Val->getType(), "shiftamt", Compute);
|
|
|
|
ShiftAmt->reserveOperandSpace(2);
|
2007-04-12 13:30:14 +00:00
|
|
|
ShiftAmt->addIncoming(Lo, FwdSize);
|
|
|
|
ShiftAmt->addIncoming(Hi, RevSize);
|
2007-04-04 23:48:25 +00:00
|
|
|
|
|
|
|
// Increment the bit size
|
|
|
|
Instruction *BitSizePlusOne =
|
|
|
|
BinaryOperator::createAdd(BitSize, One, "bits", Compute);
|
|
|
|
|
|
|
|
// Create a Mask to zero out the high order bits.
|
|
|
|
Instruction* Mask =
|
|
|
|
BinaryOperator::createShl(AllOnes, BitSizePlusOne, "mask", Compute);
|
|
|
|
Mask = BinaryOperator::createNot(Mask, "mask", Compute);
|
|
|
|
|
|
|
|
// Shift the bits down and apply the mask
|
|
|
|
Instruction* FRes =
|
|
|
|
BinaryOperator::createLShr(Val, ShiftAmt, "fres", Compute);
|
|
|
|
FRes = BinaryOperator::createAnd(FRes, Mask, "fres", Compute);
|
|
|
|
new BranchInst(Reverse, RsltBlk, Cmp, Compute);
|
|
|
|
|
|
|
|
// In the Reverse block we have the mask already in FRes but we must reverse
|
|
|
|
// it by shifting FRes bits right and putting them in RRes by shifting them
|
|
|
|
// in from left.
|
|
|
|
|
|
|
|
// First set up our loop counters
|
|
|
|
PHINode *Count = new PHINode(Val->getType(), "count", Reverse);
|
|
|
|
Count->reserveOperandSpace(2);
|
|
|
|
Count->addIncoming(BitSizePlusOne, Compute);
|
|
|
|
|
|
|
|
// Next, get the value that we are shifting.
|
|
|
|
PHINode *BitsToShift = new PHINode(Val->getType(), "val", Reverse);
|
|
|
|
BitsToShift->reserveOperandSpace(2);
|
|
|
|
BitsToShift->addIncoming(FRes, Compute);
|
|
|
|
|
|
|
|
// Finally, get the result of the last computation
|
|
|
|
PHINode *RRes = new PHINode(Val->getType(), "rres", Reverse);
|
|
|
|
RRes->reserveOperandSpace(2);
|
|
|
|
RRes->addIncoming(Zero, Compute);
|
|
|
|
|
|
|
|
// Decrement the counter
|
|
|
|
Instruction *Decr = BinaryOperator::createSub(Count, One, "decr", Reverse);
|
|
|
|
Count->addIncoming(Decr, Reverse);
|
|
|
|
|
|
|
|
// Compute the Bit that we want to move
|
|
|
|
Instruction *Bit =
|
|
|
|
BinaryOperator::createAnd(BitsToShift, One, "bit", Reverse);
|
|
|
|
|
|
|
|
// Compute the new value for next iteration.
|
|
|
|
Instruction *NewVal =
|
|
|
|
BinaryOperator::createLShr(BitsToShift, One, "rshift", Reverse);
|
|
|
|
BitsToShift->addIncoming(NewVal, Reverse);
|
|
|
|
|
|
|
|
// Shift the bit into the low bits of the result.
|
|
|
|
Instruction *NewRes =
|
|
|
|
BinaryOperator::createShl(RRes, One, "lshift", Reverse);
|
|
|
|
NewRes = BinaryOperator::createOr(NewRes, Bit, "addbit", Reverse);
|
|
|
|
RRes->addIncoming(NewRes, Reverse);
|
|
|
|
|
|
|
|
// Terminate loop if we've moved all the bits.
|
|
|
|
ICmpInst *Cond =
|
|
|
|
new ICmpInst(ICmpInst::ICMP_EQ, Decr, Zero, "cond", Reverse);
|
|
|
|
new BranchInst(RsltBlk, Reverse, Cond, Reverse);
|
|
|
|
|
|
|
|
// Finally, in the result block, select one of the two results with a PHI
|
|
|
|
// node and return the result;
|
|
|
|
CurBB = RsltBlk;
|
|
|
|
PHINode *BitSelect = new PHINode(Val->getType(), "part_select", CurBB);
|
|
|
|
BitSelect->reserveOperandSpace(2);
|
|
|
|
BitSelect->addIncoming(FRes, Compute);
|
|
|
|
BitSelect->addIncoming(NewRes, Reverse);
|
|
|
|
new ReturnInst(BitSelect, CurBB);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a call to the implementation function
|
2007-05-12 11:07:40 +00:00
|
|
|
Value *Args[] = {
|
|
|
|
CI->getOperand(1),
|
|
|
|
CI->getOperand(2),
|
|
|
|
CI->getOperand(3)
|
|
|
|
};
|
2007-09-07 04:06:50 +00:00
|
|
|
return new CallInst(F, Args, array_endof(Args), CI->getName(), CI);
|
2007-04-04 23:48:25 +00:00
|
|
|
}
|
|
|
|
|
2007-04-12 02:48:46 +00:00
|
|
|
/// Convert the llvm.part.set.iX.iY.iZ intrinsic. This intrinsic takes
|
|
|
|
/// four integer arguments (iAny %Value, iAny %Replacement, i32 %Low, i32 %High)
|
|
|
|
/// The first two arguments can be any bit width. The result is the same width
|
|
|
|
/// as %Value. The operation replaces bits between %Low and %High with the value
|
|
|
|
/// in %Replacement. If %Replacement is not the same width, it is truncated or
|
|
|
|
/// zero extended as appropriate to fit the bits being replaced. If %Low is
|
|
|
|
/// greater than %High then the inverse set of bits are replaced.
|
|
|
|
/// @brief Lowering of llvm.bit.part.set intrinsic.
|
|
|
|
static Instruction *LowerPartSet(CallInst *CI) {
|
|
|
|
// Make sure we're dealing with a part select intrinsic here
|
|
|
|
Function *F = CI->getCalledFunction();
|
|
|
|
const FunctionType *FT = F->getFunctionType();
|
|
|
|
if (!F->isDeclaration() || !FT->getReturnType()->isInteger() ||
|
|
|
|
FT->getNumParams() != 4 || !FT->getParamType(0)->isInteger() ||
|
|
|
|
!FT->getParamType(1)->isInteger() || !FT->getParamType(2)->isInteger() ||
|
|
|
|
!FT->getParamType(3)->isInteger())
|
|
|
|
return CI;
|
|
|
|
|
|
|
|
// Get the intrinsic implementation function by converting all the . to _
|
|
|
|
// in the intrinsic's function name and then reconstructing the function
|
|
|
|
// declaration.
|
|
|
|
std::string Name(F->getName());
|
|
|
|
for (unsigned i = 4; i < Name.length(); ++i)
|
|
|
|
if (Name[i] == '.')
|
|
|
|
Name[i] = '_';
|
|
|
|
Module* M = F->getParent();
|
|
|
|
F = cast<Function>(M->getOrInsertFunction(Name, FT));
|
2007-04-12 21:53:38 +00:00
|
|
|
F->setLinkage(GlobalValue::WeakLinkage);
|
2007-04-12 02:48:46 +00:00
|
|
|
|
|
|
|
// If we haven't defined the impl function yet, do so now
|
|
|
|
if (F->isDeclaration()) {
|
|
|
|
// Get the arguments for the function.
|
|
|
|
Function::arg_iterator args = F->arg_begin();
|
|
|
|
Value* Val = args++; Val->setName("Val");
|
|
|
|
Value* Rep = args++; Rep->setName("Rep");
|
|
|
|
Value* Lo = args++; Lo->setName("Lo");
|
|
|
|
Value* Hi = args++; Hi->setName("Hi");
|
|
|
|
|
|
|
|
// Get some types we need
|
|
|
|
const IntegerType* ValTy = cast<IntegerType>(Val->getType());
|
|
|
|
const IntegerType* RepTy = cast<IntegerType>(Rep->getType());
|
|
|
|
uint32_t ValBits = ValTy->getBitWidth();
|
|
|
|
uint32_t RepBits = RepTy->getBitWidth();
|
|
|
|
|
|
|
|
// Constant Definitions
|
|
|
|
ConstantInt* RepBitWidth = ConstantInt::get(Type::Int32Ty, RepBits);
|
|
|
|
ConstantInt* RepMask = ConstantInt::getAllOnesValue(RepTy);
|
|
|
|
ConstantInt* ValMask = ConstantInt::getAllOnesValue(ValTy);
|
2007-05-15 02:26:52 +00:00
|
|
|
ConstantInt* One = ConstantInt::get(Type::Int32Ty, 1);
|
|
|
|
ConstantInt* ValOne = ConstantInt::get(ValTy, 1);
|
|
|
|
ConstantInt* Zero = ConstantInt::get(Type::Int32Ty, 0);
|
|
|
|
ConstantInt* ValZero = ConstantInt::get(ValTy, 0);
|
|
|
|
|
|
|
|
// Basic blocks we fill in below.
|
|
|
|
BasicBlock* entry = new BasicBlock("entry", F, 0);
|
|
|
|
BasicBlock* large = new BasicBlock("large", F, 0);
|
|
|
|
BasicBlock* small = new BasicBlock("small", F, 0);
|
|
|
|
BasicBlock* reverse = new BasicBlock("reverse", F, 0);
|
|
|
|
BasicBlock* result = new BasicBlock("result", F, 0);
|
|
|
|
|
|
|
|
// BASIC BLOCK: entry
|
2007-04-12 13:30:14 +00:00
|
|
|
// First, get the number of bits that we're placing as an i32
|
|
|
|
ICmpInst* is_forward =
|
|
|
|
new ICmpInst(ICmpInst::ICMP_ULT, Lo, Hi, "", entry);
|
2007-05-15 02:26:52 +00:00
|
|
|
SelectInst* Hi_pn = new SelectInst(is_forward, Hi, Lo, "", entry);
|
|
|
|
SelectInst* Lo_pn = new SelectInst(is_forward, Lo, Hi, "", entry);
|
|
|
|
BinaryOperator* NumBits = BinaryOperator::createSub(Hi_pn, Lo_pn, "",entry);
|
|
|
|
NumBits = BinaryOperator::createAdd(NumBits, One, "", entry);
|
2007-04-12 13:30:14 +00:00
|
|
|
// Now, convert Lo and Hi to ValTy bit width
|
2007-04-12 02:48:46 +00:00
|
|
|
if (ValBits > 32) {
|
2007-05-15 02:26:52 +00:00
|
|
|
Lo = new ZExtInst(Lo_pn, ValTy, "", entry);
|
2007-04-12 02:48:46 +00:00
|
|
|
} else if (ValBits < 32) {
|
2007-05-15 02:26:52 +00:00
|
|
|
Lo = new TruncInst(Lo_pn, ValTy, "", entry);
|
2007-04-12 02:48:46 +00:00
|
|
|
}
|
2007-04-12 13:30:14 +00:00
|
|
|
// Determine if the replacement bits are larger than the number of bits we
|
|
|
|
// are replacing and deal with it.
|
2007-04-12 02:48:46 +00:00
|
|
|
ICmpInst* is_large =
|
|
|
|
new ICmpInst(ICmpInst::ICMP_ULT, NumBits, RepBitWidth, "", entry);
|
|
|
|
new BranchInst(large, small, is_large, entry);
|
|
|
|
|
2007-05-15 02:26:52 +00:00
|
|
|
// BASIC BLOCK: large
|
2007-04-16 22:21:14 +00:00
|
|
|
Instruction* MaskBits =
|
2007-04-12 02:48:46 +00:00
|
|
|
BinaryOperator::createSub(RepBitWidth, NumBits, "", large);
|
2007-04-16 22:21:14 +00:00
|
|
|
MaskBits = CastInst::createIntegerCast(MaskBits, RepMask->getType(),
|
|
|
|
false, "", large);
|
2007-04-12 02:48:46 +00:00
|
|
|
BinaryOperator* Mask1 =
|
|
|
|
BinaryOperator::createLShr(RepMask, MaskBits, "", large);
|
|
|
|
BinaryOperator* Rep2 = BinaryOperator::createAnd(Mask1, Rep, "", large);
|
|
|
|
new BranchInst(small, large);
|
|
|
|
|
2007-05-15 02:26:52 +00:00
|
|
|
// BASIC BLOCK: small
|
2007-04-12 02:48:46 +00:00
|
|
|
PHINode* Rep3 = new PHINode(RepTy, "", small);
|
|
|
|
Rep3->reserveOperandSpace(2);
|
2007-04-12 13:30:14 +00:00
|
|
|
Rep3->addIncoming(Rep2, large);
|
2007-04-12 02:48:46 +00:00
|
|
|
Rep3->addIncoming(Rep, entry);
|
2007-04-12 12:46:33 +00:00
|
|
|
Value* Rep4 = Rep3;
|
|
|
|
if (ValBits > RepBits)
|
|
|
|
Rep4 = new ZExtInst(Rep3, ValTy, "", small);
|
|
|
|
else if (ValBits < RepBits)
|
|
|
|
Rep4 = new TruncInst(Rep3, ValTy, "", small);
|
2007-05-15 02:26:52 +00:00
|
|
|
new BranchInst(result, reverse, is_forward, small);
|
|
|
|
|
|
|
|
// BASIC BLOCK: reverse (reverses the bits of the replacement)
|
|
|
|
// Set up our loop counter as a PHI so we can decrement on each iteration.
|
|
|
|
// We will loop for the number of bits in the replacement value.
|
|
|
|
PHINode *Count = new PHINode(Type::Int32Ty, "count", reverse);
|
|
|
|
Count->reserveOperandSpace(2);
|
|
|
|
Count->addIncoming(NumBits, small);
|
|
|
|
|
|
|
|
// Get the value that we are shifting bits out of as a PHI because
|
|
|
|
// we'll change this with each iteration.
|
|
|
|
PHINode *BitsToShift = new PHINode(Val->getType(), "val", reverse);
|
|
|
|
BitsToShift->reserveOperandSpace(2);
|
|
|
|
BitsToShift->addIncoming(Rep4, small);
|
|
|
|
|
|
|
|
// Get the result of the last computation or zero on first iteration
|
|
|
|
PHINode *RRes = new PHINode(Val->getType(), "rres", reverse);
|
|
|
|
RRes->reserveOperandSpace(2);
|
|
|
|
RRes->addIncoming(ValZero, small);
|
|
|
|
|
|
|
|
// Decrement the loop counter by one
|
|
|
|
Instruction *Decr = BinaryOperator::createSub(Count, One, "", reverse);
|
|
|
|
Count->addIncoming(Decr, reverse);
|
|
|
|
|
|
|
|
// Get the bit that we want to move into the result
|
|
|
|
Value *Bit = BinaryOperator::createAnd(BitsToShift, ValOne, "", reverse);
|
|
|
|
|
|
|
|
// Compute the new value of the bits to shift for the next iteration.
|
|
|
|
Value *NewVal = BinaryOperator::createLShr(BitsToShift, ValOne,"", reverse);
|
|
|
|
BitsToShift->addIncoming(NewVal, reverse);
|
|
|
|
|
|
|
|
// Shift the bit we extracted into the low bit of the result.
|
|
|
|
Instruction *NewRes = BinaryOperator::createShl(RRes, ValOne, "", reverse);
|
|
|
|
NewRes = BinaryOperator::createOr(NewRes, Bit, "", reverse);
|
|
|
|
RRes->addIncoming(NewRes, reverse);
|
|
|
|
|
|
|
|
// Terminate loop if we've moved all the bits.
|
|
|
|
ICmpInst *Cond = new ICmpInst(ICmpInst::ICMP_EQ, Decr, Zero, "", reverse);
|
|
|
|
new BranchInst(result, reverse, Cond, reverse);
|
|
|
|
|
|
|
|
// BASIC BLOCK: result
|
|
|
|
PHINode *Rplcmnt = new PHINode(Val->getType(), "", result);
|
|
|
|
Rplcmnt->reserveOperandSpace(2);
|
|
|
|
Rplcmnt->addIncoming(NewRes, reverse);
|
|
|
|
Rplcmnt->addIncoming(Rep4, small);
|
|
|
|
Value* t0 = CastInst::createIntegerCast(NumBits,ValTy,false,"",result);
|
2007-05-26 03:43:13 +00:00
|
|
|
Value* t1 = BinaryOperator::createShl(ValMask, Lo, "", result);
|
|
|
|
Value* t2 = BinaryOperator::createNot(t1, "", result);
|
|
|
|
Value* t3 = BinaryOperator::createShl(t1, t0, "", result);
|
|
|
|
Value* t4 = BinaryOperator::createOr(t2, t3, "", result);
|
|
|
|
Value* t5 = BinaryOperator::createAnd(t4, Val, "", result);
|
|
|
|
Value* t6 = BinaryOperator::createShl(Rplcmnt, Lo, "", result);
|
|
|
|
Value* Rslt = BinaryOperator::createOr(t5, t6, "part_set", result);
|
2007-05-15 02:26:52 +00:00
|
|
|
new ReturnInst(Rslt, result);
|
2007-04-12 02:48:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return a call to the implementation function
|
2007-05-12 11:07:40 +00:00
|
|
|
Value *Args[] = {
|
|
|
|
CI->getOperand(1),
|
|
|
|
CI->getOperand(2),
|
|
|
|
CI->getOperand(3),
|
|
|
|
CI->getOperand(4)
|
|
|
|
};
|
2007-09-07 04:06:50 +00:00
|
|
|
return new CallInst(F, Args, array_endof(Args), CI->getName(), CI);
|
2007-04-12 02:48:46 +00:00
|
|
|
}
|
|
|
|
|
2007-04-04 23:48:25 +00:00
|
|
|
|
2006-11-15 18:00:10 +00:00
|
|
|
void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) {
|
2003-12-28 08:19:41 +00:00
|
|
|
Function *Callee = CI->getCalledFunction();
|
|
|
|
assert(Callee && "Cannot lower an indirect call!");
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2003-12-28 08:19:41 +00:00
|
|
|
switch (Callee->getIntrinsicID()) {
|
|
|
|
case Intrinsic::not_intrinsic:
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << "Cannot lower a call to a non-intrinsic function '"
|
|
|
|
<< Callee->getName() << "'!\n";
|
2003-12-28 08:19:41 +00:00
|
|
|
abort();
|
|
|
|
default:
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << "Error: Code generator does not support intrinsic function '"
|
|
|
|
<< Callee->getName() << "'!\n";
|
2003-12-28 08:19:41 +00:00
|
|
|
abort();
|
|
|
|
|
2004-02-15 22:16:39 +00:00
|
|
|
// The setjmp/longjmp intrinsics should only exist in the code if it was
|
|
|
|
// never optimized (ie, right out of the CFE), or if it has been hacked on
|
|
|
|
// by the lowerinvoke pass. In both cases, the right thing to do is to
|
|
|
|
// convert the call to an explicit setjmp or longjmp call.
|
2004-02-15 22:24:51 +00:00
|
|
|
case Intrinsic::setjmp: {
|
2007-01-07 08:12:01 +00:00
|
|
|
static Constant *SetjmpFCache = 0;
|
2004-02-15 22:24:51 +00:00
|
|
|
Value *V = ReplaceCallWith("setjmp", CI, CI->op_begin()+1, CI->op_end(),
|
2007-01-07 08:12:01 +00:00
|
|
|
Type::Int32Ty, SetjmpFCache);
|
2003-12-28 08:19:41 +00:00
|
|
|
if (CI->getType() != Type::VoidTy)
|
2004-02-15 22:24:51 +00:00
|
|
|
CI->replaceAllUsesWith(V);
|
2003-12-28 08:19:41 +00:00
|
|
|
break;
|
2004-02-15 22:24:51 +00:00
|
|
|
}
|
2005-04-21 22:36:52 +00:00
|
|
|
case Intrinsic::sigsetjmp:
|
2004-02-15 22:24:51 +00:00
|
|
|
if (CI->getType() != Type::VoidTy)
|
|
|
|
CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
|
|
|
|
break;
|
2003-12-28 08:19:41 +00:00
|
|
|
|
2004-06-05 01:05:19 +00:00
|
|
|
case Intrinsic::longjmp: {
|
2007-01-07 08:12:01 +00:00
|
|
|
static Constant *LongjmpFCache = 0;
|
2004-02-15 22:24:51 +00:00
|
|
|
ReplaceCallWith("longjmp", CI, CI->op_begin()+1, CI->op_end(),
|
2007-01-07 08:12:01 +00:00
|
|
|
Type::VoidTy, LongjmpFCache);
|
2004-02-15 22:24:51 +00:00
|
|
|
break;
|
2004-06-05 01:05:19 +00:00
|
|
|
}
|
2004-02-15 22:24:51 +00:00
|
|
|
|
2004-06-05 01:05:19 +00:00
|
|
|
case Intrinsic::siglongjmp: {
|
2003-12-28 08:19:41 +00:00
|
|
|
// Insert the call to abort
|
2007-01-07 08:12:01 +00:00
|
|
|
static Constant *AbortFCache = 0;
|
2006-11-27 01:05:10 +00:00
|
|
|
ReplaceCallWith("abort", CI, CI->op_end(), CI->op_end(),
|
2007-01-07 08:12:01 +00:00
|
|
|
Type::VoidTy, AbortFCache);
|
2003-12-28 08:19:41 +00:00
|
|
|
break;
|
2004-06-05 01:05:19 +00:00
|
|
|
}
|
2007-04-01 07:35:23 +00:00
|
|
|
case Intrinsic::ctpop:
|
For PR411:
This patch is an incremental step towards supporting a flat symbol table.
It de-overloads the intrinsic functions by providing type-specific intrinsics
and arranging for automatically upgrading from the old overloaded name to
the new non-overloaded name. Specifically:
llvm.isunordered -> llvm.isunordered.f32, llvm.isunordered.f64
llvm.sqrt -> llvm.sqrt.f32, llvm.sqrt.f64
llvm.ctpop -> llvm.ctpop.i8, llvm.ctpop.i16, llvm.ctpop.i32, llvm.ctpop.i64
llvm.ctlz -> llvm.ctlz.i8, llvm.ctlz.i16, llvm.ctlz.i32, llvm.ctlz.i64
llvm.cttz -> llvm.cttz.i8, llvm.cttz.i16, llvm.cttz.i32, llvm.cttz.i64
New code should not use the overloaded intrinsic names. Warnings will be
emitted if they are used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25366 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-16 21:12:35 +00:00
|
|
|
CI->replaceAllUsesWith(LowerCTPOP(CI->getOperand(1), CI));
|
|
|
|
break;
|
|
|
|
|
2007-04-01 07:35:23 +00:00
|
|
|
case Intrinsic::bswap:
|
2006-01-16 07:57:00 +00:00
|
|
|
CI->replaceAllUsesWith(LowerBSWAP(CI->getOperand(1), CI));
|
|
|
|
break;
|
|
|
|
|
2007-04-01 07:35:23 +00:00
|
|
|
case Intrinsic::ctlz:
|
2005-05-11 20:24:12 +00:00
|
|
|
CI->replaceAllUsesWith(LowerCTLZ(CI->getOperand(1), CI));
|
2005-05-03 17:19:30 +00:00
|
|
|
break;
|
2006-01-16 07:57:00 +00:00
|
|
|
|
2007-04-01 07:35:23 +00:00
|
|
|
case Intrinsic::cttz: {
|
2005-05-11 20:02:14 +00:00
|
|
|
// cttz(x) -> ctpop(~X & (X-1))
|
2005-05-03 17:19:30 +00:00
|
|
|
Value *Src = CI->getOperand(1);
|
2005-05-11 19:42:05 +00:00
|
|
|
Value *NotSrc = BinaryOperator::createNot(Src, Src->getName()+".not", CI);
|
2005-05-11 20:02:14 +00:00
|
|
|
Value *SrcM1 = ConstantInt::get(Src->getType(), 1);
|
|
|
|
SrcM1 = BinaryOperator::createSub(Src, SrcM1, "", CI);
|
|
|
|
Src = LowerCTPOP(BinaryOperator::createAnd(NotSrc, SrcM1, "", CI), CI);
|
2005-05-03 17:19:30 +00:00
|
|
|
CI->replaceAllUsesWith(Src);
|
|
|
|
break;
|
|
|
|
}
|
2004-01-05 05:36:30 +00:00
|
|
|
|
2007-04-10 03:20:39 +00:00
|
|
|
case Intrinsic::part_select:
|
2007-04-12 02:48:46 +00:00
|
|
|
CI->replaceAllUsesWith(LowerPartSelect(CI));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Intrinsic::part_set:
|
|
|
|
CI->replaceAllUsesWith(LowerPartSet(CI));
|
2007-04-04 23:48:25 +00:00
|
|
|
break;
|
|
|
|
|
2006-01-13 02:22:08 +00:00
|
|
|
case Intrinsic::stacksave:
|
|
|
|
case Intrinsic::stackrestore: {
|
|
|
|
static bool Warned = false;
|
|
|
|
if (!Warned)
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << "WARNING: this target does not support the llvm.stack"
|
|
|
|
<< (Callee->getIntrinsicID() == Intrinsic::stacksave ?
|
|
|
|
"save" : "restore") << " intrinsic.\n";
|
2006-01-13 02:22:08 +00:00
|
|
|
Warned = true;
|
|
|
|
if (Callee->getIntrinsicID() == Intrinsic::stacksave)
|
|
|
|
CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-02-14 02:47:17 +00:00
|
|
|
case Intrinsic::returnaddress:
|
|
|
|
case Intrinsic::frameaddress:
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << "WARNING: this target does not support the llvm."
|
|
|
|
<< (Callee->getIntrinsicID() == Intrinsic::returnaddress ?
|
|
|
|
"return" : "frame") << "address intrinsic.\n";
|
2004-02-14 02:47:17 +00:00
|
|
|
CI->replaceAllUsesWith(ConstantPointerNull::get(
|
|
|
|
cast<PointerType>(CI->getType())));
|
|
|
|
break;
|
|
|
|
|
2005-02-28 19:27:23 +00:00
|
|
|
case Intrinsic::prefetch:
|
|
|
|
break; // Simply strip out prefetches on unsupported architectures
|
|
|
|
|
2005-03-28 20:05:49 +00:00
|
|
|
case Intrinsic::pcmarker:
|
|
|
|
break; // Simply strip out pcmarker on unsupported architectures
|
2005-11-11 16:47:30 +00:00
|
|
|
case Intrinsic::readcyclecounter: {
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << "WARNING: this target does not support the llvm.readcyclecoun"
|
|
|
|
<< "ter intrinsic. It is being lowered to a constant 0\n";
|
2006-12-31 05:55:36 +00:00
|
|
|
CI->replaceAllUsesWith(ConstantInt::get(Type::Int64Ty, 0));
|
2005-11-11 16:47:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-03-28 20:05:49 +00:00
|
|
|
|
2004-01-05 05:36:30 +00:00
|
|
|
case Intrinsic::dbg_stoppoint:
|
|
|
|
case Intrinsic::dbg_region_start:
|
|
|
|
case Intrinsic::dbg_region_end:
|
|
|
|
case Intrinsic::dbg_func_start:
|
2006-03-23 18:06:46 +00:00
|
|
|
case Intrinsic::dbg_declare:
|
2007-07-06 14:46:23 +00:00
|
|
|
break; // Simply strip out debugging intrinsics
|
|
|
|
|
2007-02-21 22:53:45 +00:00
|
|
|
case Intrinsic::eh_exception:
|
2007-09-07 11:39:35 +00:00
|
|
|
case Intrinsic::eh_selector_i32:
|
|
|
|
case Intrinsic::eh_selector_i64:
|
2007-07-06 14:46:23 +00:00
|
|
|
CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
|
|
|
|
break;
|
|
|
|
|
2007-09-07 11:39:35 +00:00
|
|
|
case Intrinsic::eh_typeid_for_i32:
|
|
|
|
case Intrinsic::eh_typeid_for_i64:
|
2007-07-06 14:46:23 +00:00
|
|
|
// Return something different to eh_selector.
|
|
|
|
CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), 1));
|
|
|
|
break;
|
2004-02-12 17:01:09 +00:00
|
|
|
|
2007-06-15 22:26:58 +00:00
|
|
|
case Intrinsic::var_annotation:
|
|
|
|
break; // Strip out annotate intrinsic
|
|
|
|
|
2007-02-06 19:06:38 +00:00
|
|
|
case Intrinsic::memcpy_i32:
|
2006-11-27 01:05:10 +00:00
|
|
|
case Intrinsic::memcpy_i64: {
|
2007-01-07 08:12:01 +00:00
|
|
|
static Constant *MemcpyFCache = 0;
|
2007-02-06 19:06:38 +00:00
|
|
|
Value *Size = CI->getOperand(3);
|
|
|
|
const Type *IntPtr = TD.getIntPtrType();
|
|
|
|
if (Size->getType()->getPrimitiveSizeInBits() <
|
|
|
|
IntPtr->getPrimitiveSizeInBits())
|
|
|
|
Size = new ZExtInst(Size, IntPtr, "", CI);
|
|
|
|
else if (Size->getType()->getPrimitiveSizeInBits() >
|
|
|
|
IntPtr->getPrimitiveSizeInBits())
|
|
|
|
Size = new TruncInst(Size, IntPtr, "", CI);
|
|
|
|
Value *Ops[3];
|
|
|
|
Ops[0] = CI->getOperand(1);
|
|
|
|
Ops[1] = CI->getOperand(2);
|
|
|
|
Ops[2] = Size;
|
|
|
|
ReplaceCallWith("memcpy", CI, Ops, Ops+3, CI->getOperand(1)->getType(),
|
|
|
|
MemcpyFCache);
|
2004-02-12 17:01:09 +00:00
|
|
|
break;
|
2004-06-05 01:05:19 +00:00
|
|
|
}
|
2007-02-06 19:06:38 +00:00
|
|
|
case Intrinsic::memmove_i32:
|
2006-03-03 00:00:25 +00:00
|
|
|
case Intrinsic::memmove_i64: {
|
2007-01-07 08:12:01 +00:00
|
|
|
static Constant *MemmoveFCache = 0;
|
2007-02-06 19:06:38 +00:00
|
|
|
Value *Size = CI->getOperand(3);
|
2007-02-06 06:07:51 +00:00
|
|
|
const Type *IntPtr = TD.getIntPtrType();
|
|
|
|
if (Size->getType()->getPrimitiveSizeInBits() <
|
|
|
|
IntPtr->getPrimitiveSizeInBits())
|
|
|
|
Size = new ZExtInst(Size, IntPtr, "", CI);
|
|
|
|
else if (Size->getType()->getPrimitiveSizeInBits() >
|
|
|
|
IntPtr->getPrimitiveSizeInBits())
|
|
|
|
Size = new TruncInst(Size, IntPtr, "", CI);
|
2007-02-06 19:06:38 +00:00
|
|
|
Value *Ops[3];
|
|
|
|
Ops[0] = CI->getOperand(1);
|
|
|
|
Ops[1] = CI->getOperand(2);
|
|
|
|
Ops[2] = Size;
|
|
|
|
ReplaceCallWith("memmove", CI, Ops, Ops+3, CI->getOperand(1)->getType(),
|
|
|
|
MemmoveFCache);
|
|
|
|
break;
|
2006-11-27 01:05:10 +00:00
|
|
|
}
|
2007-02-06 19:06:38 +00:00
|
|
|
case Intrinsic::memset_i32:
|
2006-03-03 00:00:25 +00:00
|
|
|
case Intrinsic::memset_i64: {
|
2007-01-07 08:12:01 +00:00
|
|
|
static Constant *MemsetFCache = 0;
|
2007-02-06 19:06:38 +00:00
|
|
|
Value *Size = CI->getOperand(3);
|
2007-02-06 06:07:51 +00:00
|
|
|
const Type *IntPtr = TD.getIntPtrType();
|
|
|
|
if (Size->getType()->getPrimitiveSizeInBits() <
|
|
|
|
IntPtr->getPrimitiveSizeInBits())
|
|
|
|
Size = new ZExtInst(Size, IntPtr, "", CI);
|
|
|
|
else if (Size->getType()->getPrimitiveSizeInBits() >
|
|
|
|
IntPtr->getPrimitiveSizeInBits())
|
|
|
|
Size = new TruncInst(Size, IntPtr, "", CI);
|
2007-02-06 19:06:38 +00:00
|
|
|
Value *Ops[3];
|
|
|
|
Ops[0] = CI->getOperand(1);
|
|
|
|
// Extend the amount to i32.
|
|
|
|
Ops[1] = new ZExtInst(CI->getOperand(2), Type::Int32Ty, "", CI);
|
|
|
|
Ops[2] = Size;
|
|
|
|
ReplaceCallWith("memset", CI, Ops, Ops+3, CI->getOperand(1)->getType(),
|
|
|
|
MemsetFCache);
|
2004-02-14 02:47:17 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-11-27 01:05:10 +00:00
|
|
|
case Intrinsic::sqrt_f32: {
|
2007-01-07 08:12:01 +00:00
|
|
|
static Constant *sqrtfFCache = 0;
|
2006-11-27 01:05:10 +00:00
|
|
|
ReplaceCallWith("sqrtf", CI, CI->op_begin()+1, CI->op_end(),
|
2007-01-07 08:12:01 +00:00
|
|
|
Type::FloatTy, sqrtfFCache);
|
2006-11-27 01:05:10 +00:00
|
|
|
break;
|
|
|
|
}
|
For PR411:
This patch is an incremental step towards supporting a flat symbol table.
It de-overloads the intrinsic functions by providing type-specific intrinsics
and arranging for automatically upgrading from the old overloaded name to
the new non-overloaded name. Specifically:
llvm.isunordered -> llvm.isunordered.f32, llvm.isunordered.f64
llvm.sqrt -> llvm.sqrt.f32, llvm.sqrt.f64
llvm.ctpop -> llvm.ctpop.i8, llvm.ctpop.i16, llvm.ctpop.i32, llvm.ctpop.i64
llvm.ctlz -> llvm.ctlz.i8, llvm.ctlz.i16, llvm.ctlz.i32, llvm.ctlz.i64
llvm.cttz -> llvm.cttz.i8, llvm.cttz.i16, llvm.cttz.i32, llvm.cttz.i64
New code should not use the overloaded intrinsic names. Warnings will be
emitted if they are used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25366 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-16 21:12:35 +00:00
|
|
|
case Intrinsic::sqrt_f64: {
|
2007-01-07 08:12:01 +00:00
|
|
|
static Constant *sqrtFCache = 0;
|
2006-11-27 01:05:10 +00:00
|
|
|
ReplaceCallWith("sqrt", CI, CI->op_begin()+1, CI->op_end(),
|
2007-01-07 08:12:01 +00:00
|
|
|
Type::DoubleTy, sqrtFCache);
|
2005-04-30 04:07:50 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-09-28 18:06:58 +00:00
|
|
|
case Intrinsic::sqrt_f80: {
|
|
|
|
static Constant *sqrtF80Cache = 0;
|
|
|
|
ReplaceCallWith("sqrtl", CI, CI->op_begin()+1, CI->op_end(),
|
|
|
|
Type::X86_FP80Ty, sqrtF80Cache);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Intrinsic::sqrt_f128: {
|
|
|
|
static Constant *sqrtF128Cache = 0;
|
|
|
|
ReplaceCallWith("sqrtl", CI, CI->op_begin()+1, CI->op_end(),
|
|
|
|
Type::FP128Ty, sqrtF128Cache);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Intrinsic::sqrt_ppcf128: {
|
|
|
|
static Constant *sqrtppcF128Cache = 0;
|
|
|
|
ReplaceCallWith("sqrtl", CI, CI->op_begin()+1, CI->op_end(),
|
|
|
|
Type::PPC_FP128Ty, sqrtppcF128Cache);
|
|
|
|
break;
|
|
|
|
}
|
2004-06-05 01:05:19 +00:00
|
|
|
}
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2003-12-28 08:19:41 +00:00
|
|
|
assert(CI->use_empty() &&
|
|
|
|
"Lowering should have eliminated any uses of the intrinsic call!");
|
2005-05-11 19:42:05 +00:00
|
|
|
CI->eraseFromParent();
|
2003-12-28 08:19:41 +00:00
|
|
|
}
|