blob: cb9de169d72a30b8c7b88b66bf43bbd341ff976c [file] [log] [blame]
Anders Carlssonacfde802009-02-12 00:39:25 +00001//===--- CGBlocks.cpp - Emit LLVM Code for declarations -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit blocks.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
16#include "llvm/Module.h"
Anders Carlssond5cab542009-02-12 17:55:02 +000017#include "llvm/Target/TargetData.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000018
19#include <algorithm>
20
21using namespace clang;
22using namespace CodeGen;
23
Anders Carlssond5cab542009-02-12 17:55:02 +000024enum {
Mike Stumpe5fee252009-02-13 16:19:19 +000025 BLOCK_NEEDS_FREE = (1 << 24),
26 BLOCK_HAS_COPY_DISPOSE = (1 << 25),
27 BLOCK_HAS_CXX_OBJ = (1 << 26),
28 BLOCK_IS_GC = (1 << 27),
29 BLOCK_IS_GLOBAL = (1 << 28),
30 BLOCK_HAS_DESCRIPTOR = (1 << 29)
Anders Carlssond5cab542009-02-12 17:55:02 +000031};
32
Mike Stumpe5fee252009-02-13 16:19:19 +000033llvm::Constant *CodeGenFunction::BuildDescriptorBlockDecl() {
34 // FIXME: Push up.
35 bool BlockHasCopyDispose = false;
36
37 const llvm::PointerType *PtrToInt8Ty
38 = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Mike Stump56129b12009-02-13 16:55:51 +000039 const llvm::Type *UnsignedLongTy
40 = CGM.getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpe5fee252009-02-13 16:19:19 +000041 llvm::Constant *C;
42 std::vector<llvm::Constant*> Elts;
43
44 // reserved
Mike Stump56129b12009-02-13 16:55:51 +000045 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpe5fee252009-02-13 16:19:19 +000046 Elts.push_back(C);
47
48 // Size
Mike Stump3ba82152009-02-13 17:03:17 +000049 int sz = CGM.getTargetData()
50 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
51 C = llvm::ConstantInt::get(UnsignedLongTy, sz);
Mike Stumpe5fee252009-02-13 16:19:19 +000052 Elts.push_back(C);
53
54 if (BlockHasCopyDispose) {
55 // copy_func_helper_decl
Mike Stump56129b12009-02-13 16:55:51 +000056 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpe5fee252009-02-13 16:19:19 +000057 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
58 Elts.push_back(C);
59
60 // destroy_func_decl
Mike Stump56129b12009-02-13 16:55:51 +000061 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpe5fee252009-02-13 16:19:19 +000062 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
63 Elts.push_back(C);
64 }
65
66 C = llvm::ConstantStruct::get(Elts);
67
Mike Stumpe5fee252009-02-13 16:19:19 +000068 C = new llvm::GlobalVariable(C->getType(), true,
69 llvm::GlobalValue::InternalLinkage,
Mike Stump7d6dc4f2009-02-13 20:17:16 +000070 C, "__block_descriptor_tmp", &CGM.getModule());
Mike Stumpe5fee252009-02-13 16:19:19 +000071 return C;
72}
73
Mike Stumpf99f1d02009-02-13 17:23:42 +000074llvm::Constant *CodeGenModule::getNSConcreteGlobalBlock() {
75 if (NSConcreteGlobalBlock)
76 return NSConcreteGlobalBlock;
77
78 const llvm::PointerType *PtrToInt8Ty
79 = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Mike Stumpf7448952009-02-13 19:38:12 +000080 // FIXME: We should have a CodeGenModule::AddRuntimeVariable that does the
Mike Stumpf99f1d02009-02-13 17:23:42 +000081 // same thing as CreateRuntimeFunction if there's already a variable with
82 // the same name.
83 NSConcreteGlobalBlock
84 = new llvm::GlobalVariable(PtrToInt8Ty, false,
85 llvm::GlobalValue::ExternalLinkage,
86 0, "_NSConcreteGlobalBlock",
87 &getModule());
88
89 return NSConcreteGlobalBlock;
90}
91
Mike Stump59c5b112009-02-13 19:29:27 +000092llvm::Constant *CodeGenModule::getNSConcreteStackBlock() {
93 if (NSConcreteStackBlock)
94 return NSConcreteStackBlock;
95
96 const llvm::PointerType *PtrToInt8Ty
97 = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Mike Stumpf7448952009-02-13 19:38:12 +000098 // FIXME: We should have a CodeGenModule::AddRuntimeVariable that does the
Mike Stump59c5b112009-02-13 19:29:27 +000099 // same thing as CreateRuntimeFunction if there's already a variable with
100 // the same name.
101 NSConcreteStackBlock
102 = new llvm::GlobalVariable(PtrToInt8Ty, false,
103 llvm::GlobalValue::ExternalLinkage,
104 0, "_NSConcreteStackBlock",
105 &getModule());
106
107 return NSConcreteStackBlock;
108}
109
Mike Stumpe5fee252009-02-13 16:19:19 +0000110llvm::Constant *CodeGenFunction::BuildBlockLiteralTmp() {
111 // FIXME: Push up
112 bool BlockHasCopyDispose = false;
113 bool insideFunction = false;
114 bool BlockRefDeclList = false;
115 bool BlockByrefDeclList = false;
116
117 std::vector<llvm::Constant*> Elts;
118 llvm::Constant *C;
119
Mike Stumpe5fee252009-02-13 16:19:19 +0000120 {
121 // C = BuildBlockStructInitlist();
122 unsigned int flags = BLOCK_HAS_DESCRIPTOR;
123
124 if (BlockHasCopyDispose)
125 flags |= BLOCK_HAS_COPY_DISPOSE;
126
Mike Stump7d6dc4f2009-02-13 20:17:16 +0000127 // __isa
Mike Stump59c5b112009-02-13 19:29:27 +0000128 C = CGM.getNSConcreteStackBlock();
Mike Stumpe5fee252009-02-13 16:19:19 +0000129 if (!insideFunction ||
130 (!BlockRefDeclList && !BlockByrefDeclList)) {
Mike Stumpf99f1d02009-02-13 17:23:42 +0000131 C = CGM.getNSConcreteGlobalBlock();
Mike Stumpe5fee252009-02-13 16:19:19 +0000132 flags |= BLOCK_IS_GLOBAL;
133 }
Mike Stump59c5b112009-02-13 19:29:27 +0000134 const llvm::PointerType *PtrToInt8Ty
135 = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Mike Stumpe5fee252009-02-13 16:19:19 +0000136 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
137 Elts.push_back(C);
138
139 // __flags
140 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
141 CGM.getTypes().ConvertType(CGM.getContext().IntTy));
142 C = llvm::ConstantInt::get(IntTy, flags);
143 Elts.push_back(C);
144
145 // __reserved
146 C = llvm::ConstantInt::get(IntTy, 0);
147 Elts.push_back(C);
148
149 // __FuncPtr
150 // FIXME: Build this up.
151 Elts.push_back(C);
152
153 // __descriptor
154 Elts.push_back(BuildDescriptorBlockDecl());
155
156 // FIXME: Add block_original_ref_decl_list and block_byref_decl_list.
157 }
158
159 C = llvm::ConstantStruct::get(Elts);
160
161 char Name[32];
Mike Stump26efc332009-02-13 18:36:05 +0000162 sprintf(Name, "__block_holder_tmp_%d", CGM.getGlobalUniqueCount());
Mike Stumpe5fee252009-02-13 16:19:19 +0000163 C = new llvm::GlobalVariable(C->getType(), true,
164 llvm::GlobalValue::InternalLinkage,
165 C, Name, &CGM.getModule());
166 return C;
167}
168
169
170
171
Mike Stumpab695142009-02-13 15:16:56 +0000172const llvm::Type *CodeGenModule::getBlockDescriptorType() {
173 if (BlockDescriptorType)
174 return BlockDescriptorType;
175
Mike Stumpa5448542009-02-13 15:32:32 +0000176 const llvm::Type *UnsignedLongTy =
Mike Stumpab695142009-02-13 15:16:56 +0000177 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000178
Mike Stumpab695142009-02-13 15:16:56 +0000179 // struct __block_descriptor {
180 // unsigned long reserved;
181 // unsigned long block_size;
182 // };
Mike Stumpa5448542009-02-13 15:32:32 +0000183 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy,
184 UnsignedLongTy,
Mike Stumpab695142009-02-13 15:16:56 +0000185 NULL);
186
187 getModule().addTypeName("struct.__block_descriptor",
188 BlockDescriptorType);
189
190 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000191}
192
Mike Stump9b8a7972009-02-13 15:25:34 +0000193const llvm::Type *
194CodeGenModule::getGenericBlockLiteralType() {
195 if (GenericBlockLiteralType)
196 return GenericBlockLiteralType;
197
Mike Stumpa5448542009-02-13 15:32:32 +0000198 const llvm::Type *Int8PtrTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000199 llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Mike Stumpa5448542009-02-13 15:32:32 +0000200
201 const llvm::Type *BlockDescPtrTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000202 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpa5448542009-02-13 15:32:32 +0000203
Mike Stump7cbb3602009-02-13 16:01:35 +0000204 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
205 getTypes().ConvertType(getContext().IntTy));
206
Mike Stump9b8a7972009-02-13 15:25:34 +0000207 // struct __block_literal_generic {
208 // void *isa;
209 // int flags;
210 // int reserved;
211 // void (*invoke)(void *);
212 // struct __block_descriptor *descriptor;
213 // };
214 GenericBlockLiteralType = llvm::StructType::get(Int8PtrTy,
Mike Stump7cbb3602009-02-13 16:01:35 +0000215 IntTy,
216 IntTy,
Mike Stump9b8a7972009-02-13 15:25:34 +0000217 Int8PtrTy,
218 BlockDescPtrTy,
219 NULL);
Mike Stumpa5448542009-02-13 15:32:32 +0000220
Mike Stump9b8a7972009-02-13 15:25:34 +0000221 getModule().addTypeName("struct.__block_literal_generic",
222 GenericBlockLiteralType);
Mike Stumpa5448542009-02-13 15:32:32 +0000223
Mike Stump9b8a7972009-02-13 15:25:34 +0000224 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000225}
226
Mike Stumpa5448542009-02-13 15:32:32 +0000227/// getBlockFunctionType - Given a BlockPointerType, will return the
Anders Carlssonacfde802009-02-12 00:39:25 +0000228/// function type for the block, including the first block literal argument.
229static QualType getBlockFunctionType(ASTContext &Ctx,
Anders Carlssond5cab542009-02-12 17:55:02 +0000230 const BlockPointerType *BPT) {
Anders Carlssonacfde802009-02-12 00:39:25 +0000231 const FunctionTypeProto *FTy = cast<FunctionTypeProto>(BPT->getPointeeType());
Mike Stumpa5448542009-02-13 15:32:32 +0000232
Anders Carlssonacfde802009-02-12 00:39:25 +0000233 llvm::SmallVector<QualType, 8> Types;
234 Types.push_back(Ctx.getPointerType(Ctx.VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000235
Anders Carlssonacfde802009-02-12 00:39:25 +0000236 for (FunctionTypeProto::arg_type_iterator i = FTy->arg_type_begin(),
237 e = FTy->arg_type_end(); i != e; ++i)
238 Types.push_back(*i);
Mike Stumpa5448542009-02-13 15:32:32 +0000239
Anders Carlssonacfde802009-02-12 00:39:25 +0000240 return Ctx.getFunctionType(FTy->getResultType(),
Mike Stumpa5448542009-02-13 15:32:32 +0000241 &Types[0], Types.size(),
Anders Carlssonacfde802009-02-12 00:39:25 +0000242 FTy->isVariadic(), 0);
243}
244
Anders Carlssond5cab542009-02-12 17:55:02 +0000245RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000246 const BlockPointerType *BPT =
Anders Carlssonacfde802009-02-12 00:39:25 +0000247 E->getCallee()->getType()->getAsBlockPointerType();
Mike Stumpa5448542009-02-13 15:32:32 +0000248
Anders Carlssonacfde802009-02-12 00:39:25 +0000249 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
250
251 // Get a pointer to the generic block literal.
252 const llvm::Type *BlockLiteralTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000253 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000254
255 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000256 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000257 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
258
259 // Get the function pointer from the literal.
260 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
261 llvm::Value *Func = Builder.CreateLoad(FuncPtr, FuncPtr, "tmp");
262
263 // Cast the function pointer to the right type.
Mike Stumpa5448542009-02-13 15:32:32 +0000264 const llvm::Type *BlockFTy =
Anders Carlssonacfde802009-02-12 00:39:25 +0000265 ConvertType(getBlockFunctionType(getContext(), BPT));
266 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
267 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
268
Mike Stumpa5448542009-02-13 15:32:32 +0000269 BlockLiteral =
270 Builder.CreateBitCast(BlockLiteral,
Anders Carlssonacfde802009-02-12 00:39:25 +0000271 llvm::PointerType::getUnqual(llvm::Type::Int8Ty),
272 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000273
Anders Carlssonacfde802009-02-12 00:39:25 +0000274 // Add the block literal.
275 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
276 CallArgList Args;
277 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000278
Anders Carlssonacfde802009-02-12 00:39:25 +0000279 // And the rest of the arguments.
Mike Stumpa5448542009-02-13 15:32:32 +0000280 for (CallExpr::const_arg_iterator i = E->arg_begin(), e = E->arg_end();
Anders Carlssonacfde802009-02-12 00:39:25 +0000281 i != e; ++i)
Mike Stumpa5448542009-02-13 15:32:32 +0000282 Args.push_back(std::make_pair(EmitAnyExprToTemp(*i),
Anders Carlssonacfde802009-02-12 00:39:25 +0000283 i->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000284
Anders Carlssonacfde802009-02-12 00:39:25 +0000285 // And call the block.
Mike Stumpa5448542009-02-13 15:32:32 +0000286 return EmitCall(CGM.getTypes().getFunctionInfo(E->getType(), Args),
Anders Carlssonacfde802009-02-12 00:39:25 +0000287 Func, Args);
288}
Anders Carlssond5cab542009-02-12 17:55:02 +0000289
290llvm::Constant *CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *BE) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000291 // Generate the block descriptor.
292 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000293 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
294 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000295
Anders Carlssond5cab542009-02-12 17:55:02 +0000296 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000297
Anders Carlssond5cab542009-02-12 17:55:02 +0000298 // Reserved
299 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000300
Anders Carlssond5cab542009-02-12 17:55:02 +0000301 // Block literal size. For global blocks we just use the size of the generic
302 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000303 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000304 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Anders Carlssond5cab542009-02-12 17:55:02 +0000305 DescriptorFields[1] = llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000306
307 llvm::Constant *DescriptorStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000308 llvm::ConstantStruct::get(&DescriptorFields[0], 2);
Mike Stumpa5448542009-02-13 15:32:32 +0000309
Anders Carlssond5cab542009-02-12 17:55:02 +0000310 llvm::GlobalVariable *Descriptor =
311 new llvm::GlobalVariable(DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000312 llvm::GlobalVariable::InternalLinkage,
313 DescriptorStruct, "__block_descriptor_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000314 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000315
Anders Carlssond5cab542009-02-12 17:55:02 +0000316 // Generate the constants for the block literal.
317 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000318
Anders Carlssond5cab542009-02-12 17:55:02 +0000319 CodeGenFunction::BlockInfo Info(0, "global");
320 llvm::Function *Fn = CodeGenFunction(*this).GenerateBlockFunction(BE, Info);
Mike Stumpa5448542009-02-13 15:32:32 +0000321
Anders Carlssond5cab542009-02-12 17:55:02 +0000322 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000323 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000324
Anders Carlssond5cab542009-02-12 17:55:02 +0000325 // Flags
Mike Stumpe5fee252009-02-13 16:19:19 +0000326 LiteralFields[1] = llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL);
Mike Stumpa5448542009-02-13 15:32:32 +0000327
Anders Carlssond5cab542009-02-12 17:55:02 +0000328 // Reserved
Mike Stump7cbb3602009-02-13 16:01:35 +0000329 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000330
Anders Carlssond5cab542009-02-12 17:55:02 +0000331 // Function
332 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000333
Anders Carlssond5cab542009-02-12 17:55:02 +0000334 // Descriptor
335 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000336
337 llvm::Constant *BlockLiteralStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000338 llvm::ConstantStruct::get(&LiteralFields[0], 5);
Mike Stumpa5448542009-02-13 15:32:32 +0000339
340 llvm::GlobalVariable *BlockLiteral =
Anders Carlssond5cab542009-02-12 17:55:02 +0000341 new llvm::GlobalVariable(BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000342 llvm::GlobalVariable::InternalLinkage,
343 BlockLiteralStruct, "__block_literal_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000344 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000345
Anders Carlssond5cab542009-02-12 17:55:02 +0000346 return BlockLiteral;
347}
348
349llvm::Function *CodeGenFunction::GenerateBlockFunction(const BlockExpr *Expr,
350 const BlockInfo& Info)
351{
Mike Stumpa5448542009-02-13 15:32:32 +0000352 const FunctionTypeProto *FTy =
Anders Carlssond5cab542009-02-12 17:55:02 +0000353 cast<FunctionTypeProto>(Expr->getFunctionType());
Mike Stumpa5448542009-02-13 15:32:32 +0000354
Anders Carlssond5cab542009-02-12 17:55:02 +0000355 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000356
Anders Carlssond5cab542009-02-12 17:55:02 +0000357 const BlockDecl *BD = Expr->getBlockDecl();
358
359 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000360 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000361 ImplicitParamDecl::Create(getContext(), 0,
362 SourceLocation(), 0,
363 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000364
Anders Carlssond5cab542009-02-12 17:55:02 +0000365 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000366
367 for (BlockDecl::param_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000368 e = BD->param_end(); i != e; ++i)
369 Args.push_back(std::make_pair(*e, (*e)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000370
371 const CGFunctionInfo &FI =
Anders Carlssond5cab542009-02-12 17:55:02 +0000372 CGM.getTypes().getFunctionInfo(FTy->getResultType(), Args);
373
374 std::string Name = std::string("__block_function_") + Info.NameSuffix;
375
376 CodeGenTypes &Types = CGM.getTypes();
377 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, FTy->isVariadic());
Mike Stumpa5448542009-02-13 15:32:32 +0000378
379 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000380 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
381 Name,
382 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000383
384 StartFunction(BD, FTy->getResultType(), Fn, Args,
Anders Carlssond5cab542009-02-12 17:55:02 +0000385 Expr->getBody()->getLocEnd());
386 EmitStmt(Expr->getBody());
387 FinishFunction(cast<CompoundStmt>(Expr->getBody())->getRBracLoc());
388
389 return Fn;
390}