2008-09-09 05:33:45 +08:00
|
|
|
//===----- CGCall.h - Encapsulate calling convention details ----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// These classes wrap the information about a call or function
|
|
|
|
// definition used to handle ABI compliancy.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CGCall.h"
|
|
|
|
#include "CodeGenFunction.h"
|
2008-09-10 08:41:16 +08:00
|
|
|
#include "CodeGenModule.h"
|
2008-10-14 01:02:26 +08:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2008-09-09 05:33:45 +08:00
|
|
|
#include "clang/AST/Decl.h"
|
2009-04-04 06:48:58 +08:00
|
|
|
#include "clang/AST/DeclCXX.h"
|
2008-09-09 05:33:45 +08:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2009-06-05 07:32:02 +08:00
|
|
|
#include "clang/Frontend/CompileOptions.h"
|
2008-09-24 09:01:36 +08:00
|
|
|
#include "llvm/Attributes.h"
|
2009-03-02 12:32:35 +08:00
|
|
|
#include "llvm/Support/CallSite.h"
|
2009-01-27 09:36:03 +08:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2009-02-03 09:05:53 +08:00
|
|
|
|
|
|
|
#include "ABIInfo.h"
|
|
|
|
|
2008-09-09 05:33:45 +08:00
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
|
|
|
// FIXME: Use iterator and sidestep silly type array creation.
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
const
|
2009-02-27 07:50:07 +08:00
|
|
|
CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionNoProtoType *FTNP) {
|
2009-09-12 06:24:53 +08:00
|
|
|
// FIXME: Set calling convention correctly, it needs to be associated with the
|
|
|
|
// type somehow.
|
2009-09-09 23:08:12 +08:00
|
|
|
return getFunctionInfo(FTNP->getResultType(),
|
2009-09-12 06:24:53 +08:00
|
|
|
llvm::SmallVector<QualType, 16>(), 0);
|
2008-09-10 12:01:49 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
const
|
2009-02-27 07:50:07 +08:00
|
|
|
CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionProtoType *FTP) {
|
2009-02-03 07:23:47 +08:00
|
|
|
llvm::SmallVector<QualType, 16> ArgTys;
|
|
|
|
// FIXME: Kill copy.
|
2008-09-10 12:01:49 +08:00
|
|
|
for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
|
2009-02-03 07:23:47 +08:00
|
|
|
ArgTys.push_back(FTP->getArgType(i));
|
2009-09-12 06:24:53 +08:00
|
|
|
// FIXME: Set calling convention correctly, it needs to be associated with the
|
|
|
|
// type somehow.
|
|
|
|
return getFunctionInfo(FTP->getResultType(), ArgTys, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned getCallingConventionForDecl(const Decl *D) {
|
|
|
|
// Set the appropriate calling convention for the Function.
|
|
|
|
if (D->hasAttr<StdCallAttr>())
|
|
|
|
return llvm::CallingConv::X86_StdCall;
|
|
|
|
|
|
|
|
if (D->hasAttr<FastCallAttr>())
|
|
|
|
return llvm::CallingConv::X86_FastCall;
|
|
|
|
|
|
|
|
return llvm::CallingConv::C;
|
2008-09-10 12:01:49 +08:00
|
|
|
}
|
|
|
|
|
2009-10-04 03:43:08 +08:00
|
|
|
const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXRecordDecl *RD,
|
|
|
|
const FunctionProtoType *FTP) {
|
|
|
|
llvm::SmallVector<QualType, 16> ArgTys;
|
|
|
|
|
|
|
|
// Add the 'this' pointer.
|
|
|
|
ArgTys.push_back(Context.getPointerType(Context.getTagDeclType(RD)));
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
|
|
|
|
ArgTys.push_back(FTP->getArgType(i));
|
|
|
|
|
|
|
|
// FIXME: Set calling convention correctly, it needs to be associated with the
|
|
|
|
// type somehow.
|
|
|
|
return getFunctionInfo(FTP->getResultType(), ArgTys, 0);
|
|
|
|
}
|
|
|
|
|
2009-04-04 06:48:58 +08:00
|
|
|
const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXMethodDecl *MD) {
|
|
|
|
llvm::SmallVector<QualType, 16> ArgTys;
|
2009-05-13 04:27:19 +08:00
|
|
|
// Add the 'this' pointer unless this is a static method.
|
|
|
|
if (MD->isInstance())
|
|
|
|
ArgTys.push_back(MD->getThisType(Context));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-22 07:43:11 +08:00
|
|
|
const FunctionProtoType *FTP = MD->getType()->getAs<FunctionProtoType>();
|
2009-04-04 06:48:58 +08:00
|
|
|
for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
|
|
|
|
ArgTys.push_back(FTP->getArgType(i));
|
2009-09-12 06:24:53 +08:00
|
|
|
return getFunctionInfo(FTP->getResultType(), ArgTys,
|
|
|
|
getCallingConventionForDecl(MD));
|
2009-04-04 06:48:58 +08:00
|
|
|
}
|
|
|
|
|
2009-02-03 07:23:47 +08:00
|
|
|
const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionDecl *FD) {
|
2009-05-13 04:27:19 +08:00
|
|
|
if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
|
2009-04-04 06:48:58 +08:00
|
|
|
if (MD->isInstance())
|
|
|
|
return getFunctionInfo(MD);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-12 06:24:53 +08:00
|
|
|
unsigned CallingConvention = getCallingConventionForDecl(FD);
|
2009-09-22 07:43:11 +08:00
|
|
|
const FunctionType *FTy = FD->getType()->getAs<FunctionType>();
|
2009-09-12 06:24:53 +08:00
|
|
|
if (const FunctionNoProtoType *FNTP = dyn_cast<FunctionNoProtoType>(FTy))
|
|
|
|
return getFunctionInfo(FNTP->getResultType(),
|
|
|
|
llvm::SmallVector<QualType, 16>(),
|
|
|
|
CallingConvention);
|
|
|
|
|
|
|
|
const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy);
|
|
|
|
llvm::SmallVector<QualType, 16> ArgTys;
|
|
|
|
// FIXME: Kill copy.
|
|
|
|
for (unsigned i = 0, e = FPT->getNumArgs(); i != e; ++i)
|
|
|
|
ArgTys.push_back(FPT->getArgType(i));
|
|
|
|
return getFunctionInfo(FPT->getResultType(), ArgTys, CallingConvention);
|
2008-09-09 05:33:45 +08:00
|
|
|
}
|
|
|
|
|
2009-02-03 07:23:47 +08:00
|
|
|
const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const ObjCMethodDecl *MD) {
|
|
|
|
llvm::SmallVector<QualType, 16> ArgTys;
|
|
|
|
ArgTys.push_back(MD->getSelfDecl()->getType());
|
|
|
|
ArgTys.push_back(Context.getObjCSelType());
|
|
|
|
// FIXME: Kill copy?
|
2009-02-20 14:23:21 +08:00
|
|
|
for (ObjCMethodDecl::param_iterator i = MD->param_begin(),
|
2008-09-09 05:33:45 +08:00
|
|
|
e = MD->param_end(); i != e; ++i)
|
2009-02-03 07:23:47 +08:00
|
|
|
ArgTys.push_back((*i)->getType());
|
2009-09-12 06:24:53 +08:00
|
|
|
return getFunctionInfo(MD->getResultType(), ArgTys,
|
|
|
|
getCallingConventionForDecl(MD));
|
2008-09-09 05:33:45 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
|
2009-09-12 06:24:53 +08:00
|
|
|
const CallArgList &Args,
|
|
|
|
unsigned CallingConvention){
|
2009-02-03 07:23:47 +08:00
|
|
|
// FIXME: Kill copy.
|
|
|
|
llvm::SmallVector<QualType, 16> ArgTys;
|
2009-09-09 23:08:12 +08:00
|
|
|
for (CallArgList::const_iterator i = Args.begin(), e = Args.end();
|
2009-01-31 10:19:00 +08:00
|
|
|
i != e; ++i)
|
2009-02-03 07:23:47 +08:00
|
|
|
ArgTys.push_back(i->second);
|
2009-09-12 06:24:53 +08:00
|
|
|
return getFunctionInfo(ResTy, ArgTys, CallingConvention);
|
2008-09-09 05:33:45 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
|
2009-09-12 06:24:53 +08:00
|
|
|
const FunctionArgList &Args,
|
|
|
|
unsigned CallingConvention){
|
2009-02-03 07:23:47 +08:00
|
|
|
// FIXME: Kill copy.
|
|
|
|
llvm::SmallVector<QualType, 16> ArgTys;
|
2009-09-09 23:08:12 +08:00
|
|
|
for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
|
2009-02-03 05:43:58 +08:00
|
|
|
i != e; ++i)
|
2009-02-03 07:23:47 +08:00
|
|
|
ArgTys.push_back(i->second);
|
2009-09-12 06:24:53 +08:00
|
|
|
return getFunctionInfo(ResTy, ArgTys, CallingConvention);
|
2009-02-03 07:23:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
|
2009-09-12 06:24:53 +08:00
|
|
|
const llvm::SmallVector<QualType, 16> &ArgTys,
|
|
|
|
unsigned CallingConvention){
|
2009-02-03 08:07:12 +08:00
|
|
|
// Lookup or create unique function info.
|
|
|
|
llvm::FoldingSetNodeID ID;
|
2009-09-12 06:24:53 +08:00
|
|
|
CGFunctionInfo::Profile(ID, CallingConvention, ResTy,
|
|
|
|
ArgTys.begin(), ArgTys.end());
|
2009-02-03 08:07:12 +08:00
|
|
|
|
|
|
|
void *InsertPos = 0;
|
|
|
|
CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
if (FI)
|
|
|
|
return *FI;
|
|
|
|
|
2009-02-03 13:31:23 +08:00
|
|
|
// Construct the function info.
|
2009-09-12 06:24:53 +08:00
|
|
|
FI = new CGFunctionInfo(CallingConvention, ResTy, ArgTys);
|
2009-02-05 08:00:23 +08:00
|
|
|
FunctionInfos.InsertNode(FI, InsertPos);
|
2009-02-03 07:23:47 +08:00
|
|
|
|
2009-02-03 13:31:23 +08:00
|
|
|
// Compute ABI information.
|
2009-07-15 07:10:40 +08:00
|
|
|
getABIInfo().computeInfo(*FI, getContext(), TheModule.getContext());
|
2009-02-03 07:23:47 +08:00
|
|
|
|
2009-02-03 13:31:23 +08:00
|
|
|
return *FI;
|
2008-09-09 05:33:45 +08:00
|
|
|
}
|
2008-09-10 07:27:19 +08:00
|
|
|
|
2009-09-12 06:24:53 +08:00
|
|
|
CGFunctionInfo::CGFunctionInfo(unsigned _CallingConvention,
|
|
|
|
QualType ResTy,
|
|
|
|
const llvm::SmallVector<QualType, 16> &ArgTys)
|
2009-09-12 08:59:20 +08:00
|
|
|
: CallingConvention(_CallingConvention),
|
|
|
|
EffectiveCallingConvention(_CallingConvention)
|
2009-09-12 06:24:53 +08:00
|
|
|
{
|
2009-02-03 13:31:23 +08:00
|
|
|
NumArgs = ArgTys.size();
|
|
|
|
Args = new ArgInfo[1 + NumArgs];
|
|
|
|
Args[0].type = ResTy;
|
|
|
|
for (unsigned i = 0; i < NumArgs; ++i)
|
|
|
|
Args[1 + i].type = ArgTys[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void CodeGenTypes::GetExpandedTypes(QualType Ty,
|
2008-09-17 08:51:38 +08:00
|
|
|
std::vector<const llvm::Type*> &ArgTys) {
|
|
|
|
const RecordType *RT = Ty->getAsStructureType();
|
|
|
|
assert(RT && "Can only expand structure types.");
|
|
|
|
const RecordDecl *RD = RT->getDecl();
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(!RD->hasFlexibleArrayMember() &&
|
2008-09-17 08:51:38 +08:00
|
|
|
"Cannot expand structure with flexible array.");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-30 10:36:12 +08:00
|
|
|
for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
|
|
|
|
i != e; ++i) {
|
2008-09-17 08:51:38 +08:00
|
|
|
const FieldDecl *FD = *i;
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(!FD->isBitField() &&
|
2008-09-17 08:51:38 +08:00
|
|
|
"Cannot expand structure with bit-field members.");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-17 08:51:38 +08:00
|
|
|
QualType FT = FD->getType();
|
|
|
|
if (CodeGenFunction::hasAggregateLLVMType(FT)) {
|
|
|
|
GetExpandedTypes(FT, ArgTys);
|
|
|
|
} else {
|
|
|
|
ArgTys.push_back(ConvertType(FT));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Function::arg_iterator
|
2008-09-17 08:51:38 +08:00
|
|
|
CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
|
|
|
|
llvm::Function::arg_iterator AI) {
|
|
|
|
const RecordType *RT = Ty->getAsStructureType();
|
|
|
|
assert(RT && "Can only expand structure types.");
|
|
|
|
|
|
|
|
RecordDecl *RD = RT->getDecl();
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(LV.isSimple() &&
|
|
|
|
"Unexpected non-simple lvalue during struct expansion.");
|
2008-09-17 08:51:38 +08:00
|
|
|
llvm::Value *Addr = LV.getAddress();
|
2009-06-30 10:36:12 +08:00
|
|
|
for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
|
|
|
|
i != e; ++i) {
|
2009-09-09 23:08:12 +08:00
|
|
|
FieldDecl *FD = *i;
|
2008-09-17 08:51:38 +08:00
|
|
|
QualType FT = FD->getType();
|
|
|
|
|
|
|
|
// FIXME: What are the right qualifiers here?
|
|
|
|
LValue LV = EmitLValueForField(Addr, FD, false, 0);
|
|
|
|
if (CodeGenFunction::hasAggregateLLVMType(FT)) {
|
|
|
|
AI = ExpandTypeFromArgs(FT, LV, AI);
|
|
|
|
} else {
|
|
|
|
EmitStoreThroughLValue(RValue::get(AI), LV, FT);
|
|
|
|
++AI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return AI;
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
|
|
|
CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
|
2008-09-17 08:51:38 +08:00
|
|
|
llvm::SmallVector<llvm::Value*, 16> &Args) {
|
|
|
|
const RecordType *RT = Ty->getAsStructureType();
|
|
|
|
assert(RT && "Can only expand structure types.");
|
|
|
|
|
|
|
|
RecordDecl *RD = RT->getDecl();
|
|
|
|
assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
|
|
|
|
llvm::Value *Addr = RV.getAggregateAddr();
|
2009-06-30 10:36:12 +08:00
|
|
|
for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
|
|
|
|
i != e; ++i) {
|
2009-09-09 23:08:12 +08:00
|
|
|
FieldDecl *FD = *i;
|
2008-09-17 08:51:38 +08:00
|
|
|
QualType FT = FD->getType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-17 08:51:38 +08:00
|
|
|
// FIXME: What are the right qualifiers here?
|
|
|
|
LValue LV = EmitLValueForField(Addr, FD, false, 0);
|
|
|
|
if (CodeGenFunction::hasAggregateLLVMType(FT)) {
|
|
|
|
ExpandTypeToArgs(FT, RValue::getAggregate(LV.getAddress()), Args);
|
|
|
|
} else {
|
|
|
|
RValue RV = EmitLoadOfLValue(LV, FT);
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(RV.isScalar() &&
|
2008-09-17 08:51:38 +08:00
|
|
|
"Unexpected non-scalar rvalue during struct expansion.");
|
|
|
|
Args.push_back(RV.getScalarVal());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-03 03:06:38 +08:00
|
|
|
/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
|
|
|
|
/// a pointer to an object of type \arg Ty.
|
|
|
|
///
|
|
|
|
/// This safely handles the case when the src type is smaller than the
|
|
|
|
/// destination type; in this situation the values of bits which not
|
|
|
|
/// present in the src are undefined.
|
|
|
|
static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
|
|
|
|
const llvm::Type *Ty,
|
|
|
|
CodeGenFunction &CGF) {
|
2009-09-09 23:08:12 +08:00
|
|
|
const llvm::Type *SrcTy =
|
2009-02-03 03:06:38 +08:00
|
|
|
cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
|
2009-05-09 15:08:47 +08:00
|
|
|
uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
|
|
|
|
uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(Ty);
|
2009-02-03 03:06:38 +08:00
|
|
|
|
2009-02-03 13:59:18 +08:00
|
|
|
// If load is legal, just bitcast the src pointer.
|
2009-05-14 02:54:26 +08:00
|
|
|
if (SrcSize >= DstSize) {
|
2009-05-16 15:57:57 +08:00
|
|
|
// Generally SrcSize is never greater than DstSize, since this means we are
|
|
|
|
// losing bits. However, this can happen in cases where the structure has
|
|
|
|
// additional padding, for example due to a user specified alignment.
|
2009-05-14 02:54:26 +08:00
|
|
|
//
|
2009-05-16 15:57:57 +08:00
|
|
|
// FIXME: Assert that we aren't truncating non-padding bits when have access
|
|
|
|
// to that information.
|
2009-02-03 03:06:38 +08:00
|
|
|
llvm::Value *Casted =
|
|
|
|
CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
|
2009-02-07 10:46:03 +08:00
|
|
|
llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
|
|
|
|
// FIXME: Use better alignment / avoid requiring aligned load.
|
|
|
|
Load->setAlignment(1);
|
|
|
|
return Load;
|
2009-02-03 03:06:38 +08:00
|
|
|
} else {
|
|
|
|
// Otherwise do coercion through memory. This is stupid, but
|
|
|
|
// simple.
|
|
|
|
llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *Casted =
|
2009-02-03 03:06:38 +08:00
|
|
|
CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(SrcTy));
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::StoreInst *Store =
|
2009-02-07 10:46:03 +08:00
|
|
|
CGF.Builder.CreateStore(CGF.Builder.CreateLoad(SrcPtr), Casted);
|
|
|
|
// FIXME: Use better alignment / avoid requiring aligned store.
|
|
|
|
Store->setAlignment(1);
|
2009-02-03 03:06:38 +08:00
|
|
|
return CGF.Builder.CreateLoad(Tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
|
|
|
|
/// where the source and destination may have different types.
|
|
|
|
///
|
|
|
|
/// This safely handles the case when the src type is larger than the
|
|
|
|
/// destination type; the upper bits of the src will be lost.
|
|
|
|
static void CreateCoercedStore(llvm::Value *Src,
|
|
|
|
llvm::Value *DstPtr,
|
|
|
|
CodeGenFunction &CGF) {
|
|
|
|
const llvm::Type *SrcTy = Src->getType();
|
2009-09-09 23:08:12 +08:00
|
|
|
const llvm::Type *DstTy =
|
2009-02-03 03:06:38 +08:00
|
|
|
cast<llvm::PointerType>(DstPtr->getType())->getElementType();
|
|
|
|
|
2009-05-09 15:08:47 +08:00
|
|
|
uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
|
|
|
|
uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
|
2009-02-03 03:06:38 +08:00
|
|
|
|
2009-02-03 13:31:23 +08:00
|
|
|
// If store is legal, just bitcast the src pointer.
|
2009-06-05 15:58:54 +08:00
|
|
|
if (SrcSize <= DstSize) {
|
2009-02-03 03:06:38 +08:00
|
|
|
llvm::Value *Casted =
|
|
|
|
CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
|
2009-02-07 10:46:03 +08:00
|
|
|
// FIXME: Use better alignment / avoid requiring aligned store.
|
|
|
|
CGF.Builder.CreateStore(Src, Casted)->setAlignment(1);
|
2009-02-03 03:06:38 +08:00
|
|
|
} else {
|
|
|
|
// Otherwise do coercion through memory. This is stupid, but
|
|
|
|
// simple.
|
2009-06-05 15:58:54 +08:00
|
|
|
|
|
|
|
// Generally SrcSize is never greater than DstSize, since this means we are
|
|
|
|
// losing bits. However, this can happen in cases where the structure has
|
|
|
|
// additional padding, for example due to a user specified alignment.
|
|
|
|
//
|
|
|
|
// FIXME: Assert that we aren't truncating non-padding bits when have access
|
|
|
|
// to that information.
|
2009-02-03 03:06:38 +08:00
|
|
|
llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
|
|
|
|
CGF.Builder.CreateStore(Src, Tmp);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *Casted =
|
2009-02-03 03:06:38 +08:00
|
|
|
CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
|
2009-02-07 10:46:03 +08:00
|
|
|
llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
|
|
|
|
// FIXME: Use better alignment / avoid requiring aligned load.
|
|
|
|
Load->setAlignment(1);
|
|
|
|
CGF.Builder.CreateStore(Load, DstPtr);
|
2009-02-03 03:06:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-17 08:51:38 +08:00
|
|
|
/***/
|
|
|
|
|
2009-02-03 06:03:45 +08:00
|
|
|
bool CodeGenModule::ReturnTypeUsesSret(const CGFunctionInfo &FI) {
|
2009-02-05 16:00:50 +08:00
|
|
|
return FI.getReturnInfo().isIndirect();
|
2009-02-03 05:43:58 +08:00
|
|
|
}
|
|
|
|
|
2008-09-10 12:01:49 +08:00
|
|
|
const llvm::FunctionType *
|
2009-02-03 05:43:58 +08:00
|
|
|
CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic) {
|
2008-09-10 12:01:49 +08:00
|
|
|
std::vector<const llvm::Type*> ArgTys;
|
|
|
|
|
|
|
|
const llvm::Type *ResultType = 0;
|
|
|
|
|
2009-02-03 07:43:58 +08:00
|
|
|
QualType RetTy = FI.getReturnType();
|
2009-02-03 13:59:18 +08:00
|
|
|
const ABIArgInfo &RetAI = FI.getReturnInfo();
|
2008-09-11 09:48:57 +08:00
|
|
|
switch (RetAI.getKind()) {
|
|
|
|
case ABIArgInfo::Expand:
|
|
|
|
assert(0 && "Invalid ABI kind for return argument");
|
|
|
|
|
2009-06-06 17:36:29 +08:00
|
|
|
case ABIArgInfo::Extend:
|
2009-02-03 14:17:37 +08:00
|
|
|
case ABIArgInfo::Direct:
|
|
|
|
ResultType = ConvertType(RetTy);
|
|
|
|
break;
|
|
|
|
|
2009-02-05 16:00:50 +08:00
|
|
|
case ABIArgInfo::Indirect: {
|
|
|
|
assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
|
2009-08-14 05:57:51 +08:00
|
|
|
ResultType = llvm::Type::getVoidTy(getLLVMContext());
|
2008-09-10 15:00:50 +08:00
|
|
|
const llvm::Type *STy = ConvertType(RetTy);
|
2008-09-10 12:01:49 +08:00
|
|
|
ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-01-27 05:26:08 +08:00
|
|
|
case ABIArgInfo::Ignore:
|
2009-08-14 05:57:51 +08:00
|
|
|
ResultType = llvm::Type::getVoidTy(getLLVMContext());
|
2009-01-27 05:26:08 +08:00
|
|
|
break;
|
|
|
|
|
2008-09-10 12:01:49 +08:00
|
|
|
case ABIArgInfo::Coerce:
|
2008-09-10 15:04:09 +08:00
|
|
|
ResultType = RetAI.getCoerceToType();
|
2008-09-10 12:01:49 +08:00
|
|
|
break;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
|
2009-02-03 13:31:23 +08:00
|
|
|
ie = FI.arg_end(); it != ie; ++it) {
|
|
|
|
const ABIArgInfo &AI = it->info;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-11 09:48:57 +08:00
|
|
|
switch (AI.getKind()) {
|
2009-01-27 05:26:08 +08:00
|
|
|
case ABIArgInfo::Ignore:
|
|
|
|
break;
|
|
|
|
|
2008-09-17 08:51:38 +08:00
|
|
|
case ABIArgInfo::Coerce:
|
2009-02-04 03:12:28 +08:00
|
|
|
ArgTys.push_back(AI.getCoerceToType());
|
|
|
|
break;
|
|
|
|
|
2009-02-10 09:51:39 +08:00
|
|
|
case ABIArgInfo::Indirect: {
|
2009-02-05 16:00:50 +08:00
|
|
|
// indirect arguments are always on the stack, which is addr space #0.
|
2009-02-10 09:51:39 +08:00
|
|
|
const llvm::Type *LTy = ConvertTypeForMem(it->type);
|
|
|
|
ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
|
2008-09-11 09:48:57 +08:00
|
|
|
break;
|
2009-02-10 09:51:39 +08:00
|
|
|
}
|
2009-06-06 17:36:29 +08:00
|
|
|
|
|
|
|
case ABIArgInfo::Extend:
|
2009-02-03 14:17:37 +08:00
|
|
|
case ABIArgInfo::Direct:
|
2009-02-05 17:16:39 +08:00
|
|
|
ArgTys.push_back(ConvertType(it->type));
|
2008-09-11 09:48:57 +08:00
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-11 09:48:57 +08:00
|
|
|
case ABIArgInfo::Expand:
|
2009-02-03 13:31:23 +08:00
|
|
|
GetExpandedTypes(it->type, ArgTys);
|
2008-09-11 09:48:57 +08:00
|
|
|
break;
|
|
|
|
}
|
2008-09-10 12:01:49 +08:00
|
|
|
}
|
|
|
|
|
2009-02-03 05:43:58 +08:00
|
|
|
return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
|
2008-09-10 07:48:28 +08:00
|
|
|
}
|
|
|
|
|
2009-02-03 07:43:58 +08:00
|
|
|
void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
|
2009-02-03 06:03:45 +08:00
|
|
|
const Decl *TargetDecl,
|
2009-09-12 08:59:20 +08:00
|
|
|
AttributeListType &PAL,
|
|
|
|
unsigned &CallingConv) {
|
2008-09-10 08:32:18 +08:00
|
|
|
unsigned FuncAttrs = 0;
|
2008-09-27 06:53:57 +08:00
|
|
|
unsigned RetAttrs = 0;
|
2008-09-10 08:32:18 +08:00
|
|
|
|
2009-09-12 08:59:20 +08:00
|
|
|
CallingConv = FI.getEffectiveCallingConvention();
|
|
|
|
|
2009-04-04 08:49:24 +08:00
|
|
|
// FIXME: handle sseregparm someday...
|
2008-09-10 08:32:18 +08:00
|
|
|
if (TargetDecl) {
|
2009-06-30 10:34:44 +08:00
|
|
|
if (TargetDecl->hasAttr<NoThrowAttr>())
|
2008-09-26 05:02:23 +08:00
|
|
|
FuncAttrs |= llvm::Attribute::NoUnwind;
|
2009-06-30 10:34:44 +08:00
|
|
|
if (TargetDecl->hasAttr<NoReturnAttr>())
|
2008-09-26 05:02:23 +08:00
|
|
|
FuncAttrs |= llvm::Attribute::NoReturn;
|
2009-06-30 10:34:44 +08:00
|
|
|
if (TargetDecl->hasAttr<ConstAttr>())
|
2008-10-06 07:32:53 +08:00
|
|
|
FuncAttrs |= llvm::Attribute::ReadNone;
|
2009-06-30 10:34:44 +08:00
|
|
|
else if (TargetDecl->hasAttr<PureAttr>())
|
2009-04-11 06:14:52 +08:00
|
|
|
FuncAttrs |= llvm::Attribute::ReadOnly;
|
2009-08-10 04:07:29 +08:00
|
|
|
if (TargetDecl->hasAttr<MallocAttr>())
|
|
|
|
RetAttrs |= llvm::Attribute::NoAlias;
|
2008-09-10 08:32:18 +08:00
|
|
|
}
|
|
|
|
|
2009-06-05 07:32:02 +08:00
|
|
|
if (CompileOpts.DisableRedZone)
|
|
|
|
FuncAttrs |= llvm::Attribute::NoRedZone;
|
2009-06-06 06:05:48 +08:00
|
|
|
if (CompileOpts.NoImplicitFloat)
|
|
|
|
FuncAttrs |= llvm::Attribute::NoImplicitFloat;
|
2009-06-05 07:32:02 +08:00
|
|
|
|
2009-06-29 07:01:01 +08:00
|
|
|
if (Features.getStackProtectorMode() == LangOptions::SSPOn)
|
2009-06-28 15:36:13 +08:00
|
|
|
FuncAttrs |= llvm::Attribute::StackProtect;
|
2009-06-29 07:01:01 +08:00
|
|
|
else if (Features.getStackProtectorMode() == LangOptions::SSPReq)
|
2009-06-28 15:36:13 +08:00
|
|
|
FuncAttrs |= llvm::Attribute::StackProtectReq;
|
|
|
|
|
2009-02-03 07:43:58 +08:00
|
|
|
QualType RetTy = FI.getReturnType();
|
2008-09-10 08:32:18 +08:00
|
|
|
unsigned Index = 1;
|
2009-02-03 13:59:18 +08:00
|
|
|
const ABIArgInfo &RetAI = FI.getReturnInfo();
|
2008-09-10 12:01:49 +08:00
|
|
|
switch (RetAI.getKind()) {
|
2009-06-06 17:36:29 +08:00
|
|
|
case ABIArgInfo::Extend:
|
|
|
|
if (RetTy->isSignedIntegerType()) {
|
|
|
|
RetAttrs |= llvm::Attribute::SExt;
|
|
|
|
} else if (RetTy->isUnsignedIntegerType()) {
|
|
|
|
RetAttrs |= llvm::Attribute::ZExt;
|
|
|
|
}
|
|
|
|
// FALLTHROUGH
|
2009-02-03 14:17:37 +08:00
|
|
|
case ABIArgInfo::Direct:
|
2008-09-10 10:41:04 +08:00
|
|
|
break;
|
|
|
|
|
2009-02-05 16:00:50 +08:00
|
|
|
case ABIArgInfo::Indirect:
|
2009-09-09 23:08:12 +08:00
|
|
|
PAL.push_back(llvm::AttributeWithIndex::get(Index,
|
2009-01-31 10:19:00 +08:00
|
|
|
llvm::Attribute::StructRet |
|
|
|
|
llvm::Attribute::NoAlias));
|
2008-09-10 08:32:18 +08:00
|
|
|
++Index;
|
2009-03-19 03:51:01 +08:00
|
|
|
// sret disables readnone and readonly
|
|
|
|
FuncAttrs &= ~(llvm::Attribute::ReadOnly |
|
|
|
|
llvm::Attribute::ReadNone);
|
2008-09-10 10:41:04 +08:00
|
|
|
break;
|
|
|
|
|
2009-01-27 05:26:08 +08:00
|
|
|
case ABIArgInfo::Ignore:
|
2008-09-10 10:41:04 +08:00
|
|
|
case ABIArgInfo::Coerce:
|
|
|
|
break;
|
2008-09-11 09:48:57 +08:00
|
|
|
|
|
|
|
case ABIArgInfo::Expand:
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(0 && "Invalid ABI kind for return argument");
|
2008-09-10 08:32:18 +08:00
|
|
|
}
|
2008-09-10 10:41:04 +08:00
|
|
|
|
2008-09-27 06:53:57 +08:00
|
|
|
if (RetAttrs)
|
|
|
|
PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
|
2009-04-04 08:49:24 +08:00
|
|
|
|
|
|
|
// FIXME: we need to honour command line settings also...
|
|
|
|
// FIXME: RegParm should be reduced in case of nested functions and/or global
|
|
|
|
// register variable.
|
|
|
|
signed RegParm = 0;
|
|
|
|
if (TargetDecl)
|
2009-09-09 23:08:12 +08:00
|
|
|
if (const RegparmAttr *RegParmAttr
|
2009-06-30 10:34:44 +08:00
|
|
|
= TargetDecl->getAttr<RegparmAttr>())
|
2009-04-04 08:49:24 +08:00
|
|
|
RegParm = RegParmAttr->getNumParams();
|
|
|
|
|
|
|
|
unsigned PointerWidth = getContext().Target.getPointerWidth(0);
|
2009-09-09 23:08:12 +08:00
|
|
|
for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
|
2009-02-03 13:31:23 +08:00
|
|
|
ie = FI.arg_end(); it != ie; ++it) {
|
|
|
|
QualType ParamType = it->type;
|
|
|
|
const ABIArgInfo &AI = it->info;
|
2008-09-26 05:02:23 +08:00
|
|
|
unsigned Attributes = 0;
|
2009-04-04 08:49:24 +08:00
|
|
|
|
2008-09-11 09:48:57 +08:00
|
|
|
switch (AI.getKind()) {
|
2009-02-04 03:12:28 +08:00
|
|
|
case ABIArgInfo::Coerce:
|
|
|
|
break;
|
|
|
|
|
2009-02-05 16:00:50 +08:00
|
|
|
case ABIArgInfo::Indirect:
|
2009-09-16 23:53:40 +08:00
|
|
|
if (AI.getIndirectByVal())
|
|
|
|
Attributes |= llvm::Attribute::ByVal;
|
|
|
|
|
2009-04-04 08:49:24 +08:00
|
|
|
Attributes |=
|
2009-02-05 16:00:50 +08:00
|
|
|
llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
|
2009-03-19 03:51:01 +08:00
|
|
|
// byval disables readnone and readonly.
|
|
|
|
FuncAttrs &= ~(llvm::Attribute::ReadOnly |
|
|
|
|
llvm::Attribute::ReadNone);
|
2008-09-11 09:48:57 +08:00
|
|
|
break;
|
2009-06-06 17:36:29 +08:00
|
|
|
|
|
|
|
case ABIArgInfo::Extend:
|
|
|
|
if (ParamType->isSignedIntegerType()) {
|
|
|
|
Attributes |= llvm::Attribute::SExt;
|
|
|
|
} else if (ParamType->isUnsignedIntegerType()) {
|
|
|
|
Attributes |= llvm::Attribute::ZExt;
|
|
|
|
}
|
|
|
|
// FALLS THROUGH
|
2009-02-03 14:17:37 +08:00
|
|
|
case ABIArgInfo::Direct:
|
2009-04-04 08:49:24 +08:00
|
|
|
if (RegParm > 0 &&
|
|
|
|
(ParamType->isIntegerType() || ParamType->isPointerType())) {
|
|
|
|
RegParm -=
|
|
|
|
(Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
|
|
|
|
if (RegParm >= 0)
|
|
|
|
Attributes |= llvm::Attribute::InReg;
|
|
|
|
}
|
|
|
|
// FIXME: handle sseregparm someday...
|
2008-09-11 09:48:57 +08:00
|
|
|
break;
|
2009-04-04 08:49:24 +08:00
|
|
|
|
2009-01-27 05:26:08 +08:00
|
|
|
case ABIArgInfo::Ignore:
|
|
|
|
// Skip increment, no matching LLVM parameter.
|
2009-09-09 23:08:12 +08:00
|
|
|
continue;
|
2009-01-27 05:26:08 +08:00
|
|
|
|
2008-09-17 08:51:38 +08:00
|
|
|
case ABIArgInfo::Expand: {
|
2009-09-09 23:08:12 +08:00
|
|
|
std::vector<const llvm::Type*> Tys;
|
2009-05-16 15:57:57 +08:00
|
|
|
// FIXME: This is rather inefficient. Do we ever actually need to do
|
|
|
|
// anything here? The result should be just reconstructed on the other
|
|
|
|
// side, so extension should be a non-issue.
|
2008-09-17 08:51:38 +08:00
|
|
|
getTypes().GetExpandedTypes(ParamType, Tys);
|
|
|
|
Index += Tys.size();
|
|
|
|
continue;
|
|
|
|
}
|
2008-09-10 08:32:18 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-26 05:02:23 +08:00
|
|
|
if (Attributes)
|
|
|
|
PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
|
2008-09-17 08:51:38 +08:00
|
|
|
++Index;
|
2008-09-10 08:32:18 +08:00
|
|
|
}
|
2008-09-27 06:53:57 +08:00
|
|
|
if (FuncAttrs)
|
|
|
|
PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
|
2008-09-10 08:32:18 +08:00
|
|
|
}
|
|
|
|
|
2009-02-03 06:03:45 +08:00
|
|
|
void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
|
|
|
|
llvm::Function *Fn,
|
2008-09-10 07:27:19 +08:00
|
|
|
const FunctionArgList &Args) {
|
2009-07-28 09:00:58 +08:00
|
|
|
// If this is an implicit-return-zero function, go ahead and
|
|
|
|
// initialize the return value. TODO: it might be nice to have
|
|
|
|
// a more general mechanism for this that didn't require synthesized
|
|
|
|
// return statements.
|
2009-08-09 07:24:23 +08:00
|
|
|
if (const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl)) {
|
2009-07-28 09:00:58 +08:00
|
|
|
if (FD->hasImplicitReturnZero()) {
|
|
|
|
QualType RetTy = FD->getResultType().getUnqualifiedType();
|
|
|
|
const llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
|
2009-08-01 04:28:54 +08:00
|
|
|
llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
|
2009-07-28 09:00:58 +08:00
|
|
|
Builder.CreateStore(Zero, ReturnValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-16 15:57:57 +08:00
|
|
|
// FIXME: We no longer need the types from FunctionArgList; lift up and
|
|
|
|
// simplify.
|
2009-02-03 14:02:10 +08:00
|
|
|
|
2008-09-10 07:27:19 +08:00
|
|
|
// Emit allocs for param decls. Give the LLVM Argument nodes names.
|
|
|
|
llvm::Function::arg_iterator AI = Fn->arg_begin();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-10 07:27:19 +08:00
|
|
|
// Name the struct return argument.
|
2009-02-03 06:03:45 +08:00
|
|
|
if (CGM.ReturnTypeUsesSret(FI)) {
|
2008-09-10 07:27:19 +08:00
|
|
|
AI->setName("agg.result");
|
|
|
|
++AI;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-02-05 05:17:21 +08:00
|
|
|
assert(FI.arg_size() == Args.size() &&
|
|
|
|
"Mismatch between function signature & arguments.");
|
2009-02-03 13:59:18 +08:00
|
|
|
CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
|
2008-09-10 07:27:19 +08:00
|
|
|
for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
|
2009-02-03 13:59:18 +08:00
|
|
|
i != e; ++i, ++info_it) {
|
2008-09-10 07:27:19 +08:00
|
|
|
const VarDecl *Arg = i->first;
|
2009-02-03 13:59:18 +08:00
|
|
|
QualType Ty = info_it->type;
|
|
|
|
const ABIArgInfo &ArgI = info_it->info;
|
2008-09-11 09:48:57 +08:00
|
|
|
|
|
|
|
switch (ArgI.getKind()) {
|
2009-02-05 17:16:39 +08:00
|
|
|
case ABIArgInfo::Indirect: {
|
|
|
|
llvm::Value* V = AI;
|
|
|
|
if (hasAggregateLLVMType(Ty)) {
|
|
|
|
// Do nothing, aggregates and complex variables are accessed by
|
|
|
|
// reference.
|
|
|
|
} else {
|
|
|
|
// Load scalar value from indirect argument.
|
2009-02-10 09:51:39 +08:00
|
|
|
V = EmitLoadOfScalar(V, false, Ty);
|
2009-02-05 17:16:39 +08:00
|
|
|
if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
|
|
|
|
// This must be a promotion, for something like
|
|
|
|
// "void a(x) short x; {..."
|
|
|
|
V = EmitScalarConversion(V, Ty, Arg->getType());
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
EmitParmDecl(*Arg, V);
|
2009-02-05 17:16:39 +08:00
|
|
|
break;
|
|
|
|
}
|
2009-06-06 17:36:29 +08:00
|
|
|
|
|
|
|
case ABIArgInfo::Extend:
|
2009-02-03 14:17:37 +08:00
|
|
|
case ABIArgInfo::Direct: {
|
2008-09-11 09:48:57 +08:00
|
|
|
assert(AI != Fn->arg_end() && "Argument mismatch!");
|
|
|
|
llvm::Value* V = AI;
|
2009-02-05 19:13:54 +08:00
|
|
|
if (hasAggregateLLVMType(Ty)) {
|
|
|
|
// Create a temporary alloca to hold the argument; the rest of
|
|
|
|
// codegen expects to access aggregates & complex values by
|
|
|
|
// reference.
|
2009-02-10 09:51:39 +08:00
|
|
|
V = CreateTempAlloca(ConvertTypeForMem(Ty));
|
2009-02-05 19:13:54 +08:00
|
|
|
Builder.CreateStore(AI, V);
|
|
|
|
} else {
|
|
|
|
if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
|
|
|
|
// This must be a promotion, for something like
|
|
|
|
// "void a(x) short x; {..."
|
|
|
|
V = EmitScalarConversion(V, Ty, Arg->getType());
|
|
|
|
}
|
2008-09-10 07:27:19 +08:00
|
|
|
}
|
2008-09-11 09:48:57 +08:00
|
|
|
EmitParmDecl(*Arg, V);
|
|
|
|
break;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-17 08:51:38 +08:00
|
|
|
case ABIArgInfo::Expand: {
|
2009-02-03 13:59:18 +08:00
|
|
|
// If this structure was expanded into multiple arguments then
|
2008-09-17 08:51:38 +08:00
|
|
|
// we need to create a temporary and reconstruct it from the
|
|
|
|
// arguments.
|
2008-11-24 12:00:27 +08:00
|
|
|
std::string Name = Arg->getNameAsString();
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(Ty),
|
2008-09-17 08:51:38 +08:00
|
|
|
(Name + ".addr").c_str());
|
|
|
|
// FIXME: What are the right qualifiers here?
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Function::arg_iterator End =
|
2009-09-25 03:53:00 +08:00
|
|
|
ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp, Qualifiers()), AI);
|
2008-09-17 08:51:38 +08:00
|
|
|
EmitParmDecl(*Arg, Temp);
|
|
|
|
|
|
|
|
// Name the arguments used in expansion and increment AI.
|
|
|
|
unsigned Index = 0;
|
|
|
|
for (; AI != End; ++AI, ++Index)
|
2009-08-02 09:43:57 +08:00
|
|
|
AI->setName(Name + "." + llvm::Twine(Index));
|
2008-09-17 08:51:38 +08:00
|
|
|
continue;
|
|
|
|
}
|
2009-01-27 05:26:08 +08:00
|
|
|
|
|
|
|
case ABIArgInfo::Ignore:
|
2009-02-10 08:06:49 +08:00
|
|
|
// Initialize the local variable appropriately.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (hasAggregateLLVMType(Ty)) {
|
2009-02-10 09:51:39 +08:00
|
|
|
EmitParmDecl(*Arg, CreateTempAlloca(ConvertTypeForMem(Ty)));
|
2009-02-10 08:06:49 +08:00
|
|
|
} else {
|
|
|
|
EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-02-04 04:00:13 +08:00
|
|
|
// Skip increment, no matching LLVM parameter.
|
2009-09-09 23:08:12 +08:00
|
|
|
continue;
|
2009-01-27 05:26:08 +08:00
|
|
|
|
2009-02-04 03:12:28 +08:00
|
|
|
case ABIArgInfo::Coerce: {
|
|
|
|
assert(AI != Fn->arg_end() && "Argument mismatch!");
|
2009-05-16 15:57:57 +08:00
|
|
|
// FIXME: This is very wasteful; EmitParmDecl is just going to drop the
|
|
|
|
// result in a new alloca anyway, so we could just store into that
|
|
|
|
// directly if we broke the abstraction down more.
|
2009-02-10 09:51:39 +08:00
|
|
|
llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(Ty), "coerce");
|
2009-02-04 03:12:28 +08:00
|
|
|
CreateCoercedStore(AI, V, *this);
|
|
|
|
// Match to what EmitParmDecl is expecting for this type.
|
2009-02-04 15:22:24 +08:00
|
|
|
if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
|
2009-02-10 09:51:39 +08:00
|
|
|
V = EmitLoadOfScalar(V, false, Ty);
|
2009-02-04 15:22:24 +08:00
|
|
|
if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
|
|
|
|
// This must be a promotion, for something like
|
|
|
|
// "void a(x) short x; {..."
|
|
|
|
V = EmitScalarConversion(V, Ty, Arg->getType());
|
|
|
|
}
|
|
|
|
}
|
2009-02-04 03:12:28 +08:00
|
|
|
EmitParmDecl(*Arg, V);
|
|
|
|
break;
|
|
|
|
}
|
2008-09-11 09:48:57 +08:00
|
|
|
}
|
2008-09-17 08:51:38 +08:00
|
|
|
|
|
|
|
++AI;
|
2008-09-10 07:27:19 +08:00
|
|
|
}
|
|
|
|
assert(AI == Fn->arg_end() && "Argument mismatch!");
|
|
|
|
}
|
|
|
|
|
2009-02-03 06:03:45 +08:00
|
|
|
void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
|
2008-09-10 07:27:19 +08:00
|
|
|
llvm::Value *ReturnValue) {
|
2008-09-10 10:41:04 +08:00
|
|
|
llvm::Value *RV = 0;
|
|
|
|
|
|
|
|
// Functions with no result always return void.
|
2009-06-06 17:36:29 +08:00
|
|
|
if (ReturnValue) {
|
2009-02-03 06:03:45 +08:00
|
|
|
QualType RetTy = FI.getReturnType();
|
2009-02-03 13:59:18 +08:00
|
|
|
const ABIArgInfo &RetAI = FI.getReturnInfo();
|
2009-06-06 17:36:29 +08:00
|
|
|
|
2008-09-10 10:41:04 +08:00
|
|
|
switch (RetAI.getKind()) {
|
2009-02-05 16:00:50 +08:00
|
|
|
case ABIArgInfo::Indirect:
|
2008-12-18 12:52:14 +08:00
|
|
|
if (RetTy->isAnyComplexType()) {
|
|
|
|
ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
|
|
|
|
StoreComplexToAddr(RT, CurFn->arg_begin(), false);
|
|
|
|
} else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
|
|
|
|
EmitAggregateCopy(CurFn->arg_begin(), ReturnValue, RetTy);
|
|
|
|
} else {
|
2009-06-06 17:36:29 +08:00
|
|
|
EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
|
2009-05-20 02:50:41 +08:00
|
|
|
false, RetTy);
|
2008-12-18 12:52:14 +08:00
|
|
|
}
|
2008-09-10 10:41:04 +08:00
|
|
|
break;
|
2008-09-11 09:48:57 +08:00
|
|
|
|
2009-06-06 17:36:29 +08:00
|
|
|
case ABIArgInfo::Extend:
|
2009-02-03 14:17:37 +08:00
|
|
|
case ABIArgInfo::Direct:
|
2009-02-05 19:13:54 +08:00
|
|
|
// The internal return value temp always will have
|
|
|
|
// pointer-to-return-type type.
|
2008-09-10 10:41:04 +08:00
|
|
|
RV = Builder.CreateLoad(ReturnValue);
|
|
|
|
break;
|
|
|
|
|
2009-01-27 05:26:08 +08:00
|
|
|
case ABIArgInfo::Ignore:
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-02-10 09:51:39 +08:00
|
|
|
case ABIArgInfo::Coerce:
|
2009-01-27 09:36:03 +08:00
|
|
|
RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
|
2008-09-11 09:48:57 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ABIArgInfo::Expand:
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(0 && "Invalid ABI kind for return argument");
|
2008-09-10 07:27:19 +08:00
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-10 10:41:04 +08:00
|
|
|
if (RV) {
|
|
|
|
Builder.CreateRet(RV);
|
|
|
|
} else {
|
|
|
|
Builder.CreateRetVoid();
|
|
|
|
}
|
2008-09-10 07:27:19 +08:00
|
|
|
}
|
|
|
|
|
2009-04-09 04:47:54 +08:00
|
|
|
RValue CodeGenFunction::EmitCallArg(const Expr *E, QualType ArgType) {
|
2009-05-20 08:24:07 +08:00
|
|
|
if (ArgType->isReferenceType())
|
|
|
|
return EmitReferenceBindingToExpr(E, ArgType);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-09 04:47:54 +08:00
|
|
|
return EmitAnyExprToTemp(E);
|
|
|
|
}
|
|
|
|
|
2009-02-03 06:03:45 +08:00
|
|
|
RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *Callee,
|
2009-02-21 02:06:48 +08:00
|
|
|
const CallArgList &CallArgs,
|
|
|
|
const Decl *TargetDecl) {
|
2009-05-16 15:57:57 +08:00
|
|
|
// FIXME: We no longer need the types from CallArgs; lift up and simplify.
|
2008-09-10 07:27:19 +08:00
|
|
|
llvm::SmallVector<llvm::Value*, 16> Args;
|
|
|
|
|
|
|
|
// Handle struct-return functions by passing a pointer to the
|
|
|
|
// location that we would like to return into.
|
2009-02-03 05:43:58 +08:00
|
|
|
QualType RetTy = CallInfo.getReturnType();
|
2009-02-03 13:59:18 +08:00
|
|
|
const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
2009-06-13 08:26:38 +08:00
|
|
|
// If the call returns a temporary with struct return, create a temporary
|
|
|
|
// alloca to hold the result.
|
|
|
|
if (CGM.ReturnTypeUsesSret(CallInfo))
|
2009-02-10 09:51:39 +08:00
|
|
|
Args.push_back(CreateTempAlloca(ConvertTypeForMem(RetTy)));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-02-05 05:17:21 +08:00
|
|
|
assert(CallInfo.arg_size() == CallArgs.size() &&
|
|
|
|
"Mismatch between function signature & arguments.");
|
2009-02-03 13:59:18 +08:00
|
|
|
CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
|
2009-09-09 23:08:12 +08:00
|
|
|
for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
|
2009-02-03 13:59:18 +08:00
|
|
|
I != E; ++I, ++info_it) {
|
|
|
|
const ABIArgInfo &ArgInfo = info_it->info;
|
2008-09-10 07:27:19 +08:00
|
|
|
RValue RV = I->first;
|
2008-09-17 08:51:38 +08:00
|
|
|
|
|
|
|
switch (ArgInfo.getKind()) {
|
2009-02-05 16:00:50 +08:00
|
|
|
case ABIArgInfo::Indirect:
|
2009-02-05 17:16:39 +08:00
|
|
|
if (RV.isScalar() || RV.isComplex()) {
|
|
|
|
// Make a temporary alloca to pass the argument.
|
2009-02-10 09:51:39 +08:00
|
|
|
Args.push_back(CreateTempAlloca(ConvertTypeForMem(I->second)));
|
2009-02-05 17:16:39 +08:00
|
|
|
if (RV.isScalar())
|
2009-05-20 02:50:41 +08:00
|
|
|
EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false, I->second);
|
2009-02-05 17:16:39 +08:00
|
|
|
else
|
2009-09-09 23:08:12 +08:00
|
|
|
StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
|
2009-02-05 17:16:39 +08:00
|
|
|
} else {
|
|
|
|
Args.push_back(RV.getAggregateAddr());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-06-06 17:36:29 +08:00
|
|
|
case ABIArgInfo::Extend:
|
2009-02-03 14:17:37 +08:00
|
|
|
case ABIArgInfo::Direct:
|
2008-09-17 08:51:38 +08:00
|
|
|
if (RV.isScalar()) {
|
|
|
|
Args.push_back(RV.getScalarVal());
|
|
|
|
} else if (RV.isComplex()) {
|
2009-02-05 19:13:54 +08:00
|
|
|
llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
|
|
|
|
Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
|
|
|
|
Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
|
|
|
|
Args.push_back(Tmp);
|
2008-09-17 08:51:38 +08:00
|
|
|
} else {
|
2009-02-05 19:13:54 +08:00
|
|
|
Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
|
2008-09-17 08:51:38 +08:00
|
|
|
}
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-01-27 05:26:08 +08:00
|
|
|
case ABIArgInfo::Ignore:
|
|
|
|
break;
|
|
|
|
|
2009-02-04 03:12:28 +08:00
|
|
|
case ABIArgInfo::Coerce: {
|
|
|
|
// FIXME: Avoid the conversion through memory if possible.
|
|
|
|
llvm::Value *SrcPtr;
|
|
|
|
if (RV.isScalar()) {
|
2009-02-04 07:04:57 +08:00
|
|
|
SrcPtr = CreateTempAlloca(ConvertTypeForMem(I->second), "coerce");
|
2009-05-20 02:50:41 +08:00
|
|
|
EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false, I->second);
|
2009-02-04 03:12:28 +08:00
|
|
|
} else if (RV.isComplex()) {
|
2009-02-10 09:51:39 +08:00
|
|
|
SrcPtr = CreateTempAlloca(ConvertTypeForMem(I->second), "coerce");
|
2009-02-04 03:12:28 +08:00
|
|
|
StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
} else
|
2009-02-04 03:12:28 +08:00
|
|
|
SrcPtr = RV.getAggregateAddr();
|
2009-09-09 23:08:12 +08:00
|
|
|
Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
|
2009-02-04 03:12:28 +08:00
|
|
|
*this));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-09-17 08:51:38 +08:00
|
|
|
case ABIArgInfo::Expand:
|
|
|
|
ExpandTypeToArgs(I->second, RV, Args);
|
|
|
|
break;
|
2008-09-10 07:27:19 +08:00
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-13 08:26:38 +08:00
|
|
|
// If the callee is a bitcast of a function to a varargs pointer to function
|
|
|
|
// type, check to see if we can remove the bitcast. This handles some cases
|
|
|
|
// with unprototyped functions.
|
|
|
|
if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
|
|
|
|
if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
|
|
|
|
const llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
|
|
|
|
const llvm::FunctionType *CurFT =
|
|
|
|
cast<llvm::FunctionType>(CurPT->getElementType());
|
|
|
|
const llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-13 08:26:38 +08:00
|
|
|
if (CE->getOpcode() == llvm::Instruction::BitCast &&
|
|
|
|
ActualFT->getReturnType() == CurFT->getReturnType() &&
|
2009-06-23 09:38:41 +08:00
|
|
|
ActualFT->getNumParams() == CurFT->getNumParams() &&
|
|
|
|
ActualFT->getNumParams() == Args.size()) {
|
2009-06-13 08:26:38 +08:00
|
|
|
bool ArgsMatch = true;
|
|
|
|
for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
|
|
|
|
if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
|
|
|
|
ArgsMatch = false;
|
|
|
|
break;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-13 08:26:38 +08:00
|
|
|
// Strip the cast if we can get away with it. This is a nice cleanup,
|
|
|
|
// but also allows us to inline the function at -O0 if it is marked
|
|
|
|
// always_inline.
|
|
|
|
if (ArgsMatch)
|
|
|
|
Callee = CalleeF;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-10 07:27:19 +08:00
|
|
|
|
2009-02-24 01:26:39 +08:00
|
|
|
llvm::BasicBlock *InvokeDest = getInvokeDest();
|
2009-09-12 08:59:20 +08:00
|
|
|
unsigned CallingConv;
|
2008-09-26 05:02:23 +08:00
|
|
|
CodeGen::AttributeListType AttributeList;
|
2009-09-12 08:59:20 +08:00
|
|
|
CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, CallingConv);
|
2009-02-24 01:26:39 +08:00
|
|
|
llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
|
|
|
|
AttributeList.end());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-02 12:32:35 +08:00
|
|
|
llvm::CallSite CS;
|
|
|
|
if (!InvokeDest || (Attrs.getFnAttributes() & llvm::Attribute::NoUnwind)) {
|
2009-05-21 17:52:38 +08:00
|
|
|
CS = Builder.CreateCall(Callee, Args.data(), Args.data()+Args.size());
|
2009-02-24 01:26:39 +08:00
|
|
|
} else {
|
|
|
|
llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
|
2009-09-09 23:08:12 +08:00
|
|
|
CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
|
2009-05-21 17:52:38 +08:00
|
|
|
Args.data(), Args.data()+Args.size());
|
2009-02-24 01:26:39 +08:00
|
|
|
EmitBlock(Cont);
|
2009-02-21 02:54:31 +08:00
|
|
|
}
|
|
|
|
|
2009-03-02 12:32:35 +08:00
|
|
|
CS.setAttributes(Attrs);
|
2009-09-12 08:59:20 +08:00
|
|
|
CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
|
2009-03-02 12:32:35 +08:00
|
|
|
|
|
|
|
// If the call doesn't return, finish the basic block and clear the
|
|
|
|
// insertion point; this allows the rest of IRgen to discard
|
|
|
|
// unreachable code.
|
|
|
|
if (CS.doesNotReturn()) {
|
|
|
|
Builder.CreateUnreachable();
|
|
|
|
Builder.ClearInsertionPoint();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-16 15:57:57 +08:00
|
|
|
// FIXME: For now, emit a dummy basic block because expr emitters in
|
|
|
|
// generally are not ready to handle emitting expressions at unreachable
|
|
|
|
// points.
|
2009-03-02 12:32:35 +08:00
|
|
|
EnsureInsertPoint();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-02 12:32:35 +08:00
|
|
|
// Return a reasonable RValue.
|
|
|
|
return GetUndefRValue(RetTy);
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|
2009-03-02 12:32:35 +08:00
|
|
|
|
|
|
|
llvm::Instruction *CI = CS.getInstruction();
|
2009-08-14 05:57:51 +08:00
|
|
|
if (Builder.isNamePreserving() &&
|
|
|
|
CI->getType() != llvm::Type::getVoidTy(VMContext))
|
2008-09-10 07:27:19 +08:00
|
|
|
CI->setName("call");
|
2008-09-10 10:41:04 +08:00
|
|
|
|
|
|
|
switch (RetAI.getKind()) {
|
2009-02-05 16:00:50 +08:00
|
|
|
case ABIArgInfo::Indirect:
|
2008-09-10 10:41:04 +08:00
|
|
|
if (RetTy->isAnyComplexType())
|
2008-09-17 08:51:38 +08:00
|
|
|
return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
|
2009-03-22 08:32:22 +08:00
|
|
|
if (CodeGenFunction::hasAggregateLLVMType(RetTy))
|
2008-09-17 08:51:38 +08:00
|
|
|
return RValue::getAggregate(Args[0]);
|
2009-03-22 08:32:22 +08:00
|
|
|
return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
|
2008-09-11 09:48:57 +08:00
|
|
|
|
2009-06-06 17:36:29 +08:00
|
|
|
case ABIArgInfo::Extend:
|
2009-02-03 14:17:37 +08:00
|
|
|
case ABIArgInfo::Direct:
|
2009-02-05 19:13:54 +08:00
|
|
|
if (RetTy->isAnyComplexType()) {
|
|
|
|
llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
|
|
|
|
llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
|
|
|
|
return RValue::getComplex(std::make_pair(Real, Imag));
|
2009-03-22 08:32:22 +08:00
|
|
|
}
|
|
|
|
if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
|
2009-02-10 09:51:39 +08:00
|
|
|
llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(RetTy), "agg.tmp");
|
2009-02-05 19:13:54 +08:00
|
|
|
Builder.CreateStore(CI, V);
|
|
|
|
return RValue::getAggregate(V);
|
2009-03-22 08:32:22 +08:00
|
|
|
}
|
|
|
|
return RValue::get(CI);
|
2008-09-10 10:41:04 +08:00
|
|
|
|
2009-01-27 05:26:08 +08:00
|
|
|
case ABIArgInfo::Ignore:
|
2009-02-03 14:30:17 +08:00
|
|
|
// If we are ignoring an argument that had a result, make sure to
|
|
|
|
// construct the appropriate return value for our caller.
|
2009-02-05 15:09:07 +08:00
|
|
|
return GetUndefRValue(RetTy);
|
2009-01-27 05:26:08 +08:00
|
|
|
|
2008-09-10 15:04:09 +08:00
|
|
|
case ABIArgInfo::Coerce: {
|
2009-02-04 03:12:28 +08:00
|
|
|
// FIXME: Avoid the conversion through memory if possible.
|
2009-02-10 09:51:39 +08:00
|
|
|
llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(RetTy), "coerce");
|
2009-01-27 09:36:03 +08:00
|
|
|
CreateCoercedStore(CI, V, *this);
|
2008-11-26 06:21:48 +08:00
|
|
|
if (RetTy->isAnyComplexType())
|
|
|
|
return RValue::getComplex(LoadComplexFromAddr(V, false));
|
2009-03-22 08:32:22 +08:00
|
|
|
if (CodeGenFunction::hasAggregateLLVMType(RetTy))
|
2008-11-26 06:21:48 +08:00
|
|
|
return RValue::getAggregate(V);
|
2009-03-22 08:32:22 +08:00
|
|
|
return RValue::get(EmitLoadOfScalar(V, false, RetTy));
|
2008-09-10 15:04:09 +08:00
|
|
|
}
|
2008-09-11 09:48:57 +08:00
|
|
|
|
|
|
|
case ABIArgInfo::Expand:
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(0 && "Invalid ABI kind for return argument");
|
2008-09-10 07:27:19 +08:00
|
|
|
}
|
2008-09-10 10:41:04 +08:00
|
|
|
|
|
|
|
assert(0 && "Unhandled ABIArgInfo::Kind");
|
|
|
|
return RValue::get(0);
|
2008-09-10 07:27:19 +08:00
|
|
|
}
|
2009-02-11 04:44:09 +08:00
|
|
|
|
|
|
|
/* VarArg handling */
|
|
|
|
|
|
|
|
llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
|
|
|
|
return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
|
|
|
|
}
|