blob: 5072d63593f3109181251ca08df4c6ca2ef00130 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGStmt.cpp - Emit LLVM Code from Statements ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Stmt nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000014#include "CGDebugInfo.h"
15#include "CodeGenModule.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "CodeGenFunction.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/StmtVisitor.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000018#include "clang/Basic/TargetInfo.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000019#include "llvm/ADT/StringExtras.h"
Anders Carlsson17d28a32008-12-12 05:52:00 +000020#include "llvm/InlineAsm.h"
21#include "llvm/Intrinsics.h"
Anders Carlssonebaae2a2009-01-12 02:22:13 +000022#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24using namespace CodeGen;
25
26//===----------------------------------------------------------------------===//
27// Statement Emission
28//===----------------------------------------------------------------------===//
29
Daniel Dunbar09124252008-11-12 08:21:33 +000030void CodeGenFunction::EmitStopPoint(const Stmt *S) {
31 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
32 DI->setLocation(S->getLocStart());
33 DI->EmitStopPoint(CurFn, Builder);
34 }
35}
36
Reid Spencer5f016e22007-07-11 17:01:13 +000037void CodeGenFunction::EmitStmt(const Stmt *S) {
38 assert(S && "Null statement?");
Daniel Dunbara448fb22008-11-11 23:11:34 +000039
Daniel Dunbar09124252008-11-12 08:21:33 +000040 // Check if we can handle this without bothering to generate an
41 // insert point or debug info.
42 if (EmitSimpleStmt(S))
43 return;
44
Daniel Dunbara448fb22008-11-11 23:11:34 +000045 // If we happen to be at an unreachable point just create a dummy
46 // basic block to hold the code. We could change parts of irgen to
47 // simply not generate this code, but this situation is rare and
48 // probably not worth the effort.
49 // FIXME: Verify previous performance/effort claim.
50 EnsureInsertPoint();
Reid Spencer5f016e22007-07-11 17:01:13 +000051
Daniel Dunbar09124252008-11-12 08:21:33 +000052 // Generate a stoppoint if we are emitting debug info.
53 EmitStopPoint(S);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000054
Reid Spencer5f016e22007-07-11 17:01:13 +000055 switch (S->getStmtClass()) {
56 default:
Chris Lattner1e4d21e2007-08-26 22:58:05 +000057 // Must be an expression in a stmt context. Emit the value (to get
58 // side-effects) and ignore the result.
Reid Spencer5f016e22007-07-11 17:01:13 +000059 if (const Expr *E = dyn_cast<Expr>(S)) {
Chris Lattner1e4d21e2007-08-26 22:58:05 +000060 if (!hasAggregateLLVMType(E->getType()))
61 EmitScalarExpr(E);
Chris Lattner9b2dc282008-04-04 16:54:41 +000062 else if (E->getType()->isAnyComplexType())
Chris Lattner1e4d21e2007-08-26 22:58:05 +000063 EmitComplexExpr(E);
64 else
65 EmitAggExpr(E, 0, false);
Reid Spencer5f016e22007-07-11 17:01:13 +000066 } else {
Daniel Dunbar488e9932008-08-16 00:56:44 +000067 ErrorUnsupported(S, "statement");
Reid Spencer5f016e22007-07-11 17:01:13 +000068 }
69 break;
Daniel Dunbar0ffb1252008-08-04 16:51:22 +000070 case Stmt::IndirectGotoStmtClass:
71 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break;
Reid Spencer5f016e22007-07-11 17:01:13 +000072
73 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
74 case Stmt::WhileStmtClass: EmitWhileStmt(cast<WhileStmt>(*S)); break;
75 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break;
76 case Stmt::ForStmtClass: EmitForStmt(cast<ForStmt>(*S)); break;
77
78 case Stmt::ReturnStmtClass: EmitReturnStmt(cast<ReturnStmt>(*S)); break;
79 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
Daniel Dunbara4275d12008-10-02 18:02:06 +000080
Devang Patel51b09f22007-10-04 23:45:31 +000081 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000082 case Stmt::AsmStmtClass: EmitAsmStmt(cast<AsmStmt>(*S)); break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000083
84 case Stmt::ObjCAtTryStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000085 EmitObjCAtTryStmt(cast<ObjCAtTryStmt>(*S));
86 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000087 case Stmt::ObjCAtCatchStmtClass:
Anders Carlssondde0a942008-09-11 09:15:33 +000088 assert(0 && "@catch statements should be handled by EmitObjCAtTryStmt");
89 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000090 case Stmt::ObjCAtFinallyStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000091 assert(0 && "@finally statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +000092 break;
93 case Stmt::ObjCAtThrowStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000094 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000095 break;
96 case Stmt::ObjCAtSynchronizedStmtClass:
Chris Lattner10cac6f2008-11-15 21:26:17 +000097 EmitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000098 break;
Anders Carlsson3d8400d2008-08-30 19:51:14 +000099 case Stmt::ObjCForCollectionStmtClass:
100 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000101 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 }
103}
104
Daniel Dunbar09124252008-11-12 08:21:33 +0000105bool CodeGenFunction::EmitSimpleStmt(const Stmt *S) {
106 switch (S->getStmtClass()) {
107 default: return false;
108 case Stmt::NullStmtClass: break;
109 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
110 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break;
111 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break;
112 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
113 case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break;
114 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break;
115 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
116 }
117
118 return true;
119}
120
Chris Lattner33793202007-08-31 22:09:40 +0000121/// EmitCompoundStmt - Emit a compound statement {..} node. If GetLast is true,
122/// this captures the expression result of the last sub-statement and returns it
123/// (for use by the statement expression extension).
Chris Lattner9b655512007-08-31 22:49:20 +0000124RValue CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
125 llvm::Value *AggLoc, bool isAggVol) {
Anders Carlssonc71c8452009-02-07 23:50:39 +0000126
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000127 CGDebugInfo *DI = CGM.getDebugInfo();
128 if (DI) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000129 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000130 DI->setLocation(S.getLBracLoc());
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000131 DI->EmitRegionStart(CurFn, Builder);
132 }
133
Anders Carlssonc71c8452009-02-07 23:50:39 +0000134 // Keep track of the current cleanup stack depth.
135 size_t CleanupStackDepth = CleanupEntries.size();
136
Anders Carlsson17d28a32008-12-12 05:52:00 +0000137 // Push a null stack save value.
138 StackSaveValues.push_back(0);
139
Chris Lattner33793202007-08-31 22:09:40 +0000140 for (CompoundStmt::const_body_iterator I = S.body_begin(),
141 E = S.body_end()-GetLast; I != E; ++I)
Reid Spencer5f016e22007-07-11 17:01:13 +0000142 EmitStmt(*I);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000143
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000144 if (DI) {
Daniel Dunbara448fb22008-11-11 23:11:34 +0000145 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000146 DI->setLocation(S.getRBracLoc());
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000147 DI->EmitRegionEnd(CurFn, Builder);
148 }
149
Anders Carlsson17d28a32008-12-12 05:52:00 +0000150 RValue RV;
151 if (!GetLast)
152 RV = RValue::get(0);
153 else {
154 // We have to special case labels here. They are statements, but when put
155 // at the end of a statement expression, they yield the value of their
156 // subexpression. Handle this by walking through all labels we encounter,
157 // emitting them before we evaluate the subexpr.
158 const Stmt *LastStmt = S.body_back();
159 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
160 EmitLabel(*LS);
161 LastStmt = LS->getSubStmt();
162 }
Chris Lattner9b655512007-08-31 22:49:20 +0000163
Anders Carlsson17d28a32008-12-12 05:52:00 +0000164 EnsureInsertPoint();
165
166 RV = EmitAnyExpr(cast<Expr>(LastStmt), AggLoc);
167 }
168
169 if (llvm::Value *V = StackSaveValues.pop_back_val()) {
Mike Stump36a2ada2009-02-07 12:52:26 +0000170 StackDepth = V;
Anders Carlsson17d28a32008-12-12 05:52:00 +0000171 V = Builder.CreateLoad(V, "tmp");
172
173 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::stackrestore);
174 Builder.CreateCall(F, V);
Chris Lattner91d723d2008-07-26 20:23:23 +0000175 }
176
Anders Carlssonc71c8452009-02-07 23:50:39 +0000177 EmitCleanupBlocks(CleanupStackDepth);
178
Anders Carlsson17d28a32008-12-12 05:52:00 +0000179 return RV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000180}
181
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000182void CodeGenFunction::EmitBlock(llvm::BasicBlock *BB, bool IsFinished) {
Daniel Dunbard57a8712008-11-11 09:41:28 +0000183 // Fall out of the current block (if necessary).
184 EmitBranch(BB);
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000185
186 if (IsFinished && BB->use_empty()) {
187 delete BB;
188 return;
189 }
190
Anders Carlssonbd6fa3d2009-02-08 00:16:35 +0000191 // If necessary, associate the block with the cleanup stack size.
192 if (!CleanupEntries.empty()) {
193 BlockScopes[BB] = CleanupEntries.size() - 1;
194 CleanupEntries.back().Blocks.push_back(BB);
195 }
196
Reid Spencer5f016e22007-07-11 17:01:13 +0000197 CurFn->getBasicBlockList().push_back(BB);
198 Builder.SetInsertPoint(BB);
199}
200
Mike Stumpec9771d2009-02-08 09:22:19 +0000201bool CodeGenFunction::EmitStackUpdate(llvm::Value *V) {
Mike Stump36a2ada2009-02-07 12:52:26 +0000202 // V can be 0 here, if it is, be sure to start searching from the
203 // top of the function, as we want the next save after that point.
204 for (unsigned int i = 0; i < StackSaveValues.size(); ++i)
205 if (StackSaveValues[i] == V) {
206 // The actual depth is actually in the next used slot, if any.
207 while (++i < StackSaveValues.size()
208 && (V = StackSaveValues[i]) == 0) ;
209 // If there were no other depth changes, we don't need any
210 // adjustments.
211 if (V) {
212 V = Builder.CreateLoad(V, "tmp");
213 // and restore it.
214 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::stackrestore);
215 Builder.CreateCall(F, V);
216 }
Mike Stumpec9771d2009-02-08 09:22:19 +0000217 } else return true;
218 return false;
219}
220
221bool CodeGenFunction::EmitStackUpdate(const void *S) {
222 if (StackDepthMap.find(S) == StackDepthMap.end()) {
223 // If we can't find it, just remember the depth now,
224 // so we can validate it later.
225 // FIXME: We need to save a place to insert the adjustment,
226 // if needed, here, sa that later in EmitLabel, we can
227 // backpatch the adjustment into that place, instead of
228 // saying unsupported.
229 StackDepthMap[S] = StackDepth;
230 return false;
231 }
232
233 // Find applicable stack depth, if any...
234 llvm::Value *V = StackDepthMap[S];
235 return EmitStackUpdate(V);
Mike Stump36a2ada2009-02-07 12:52:26 +0000236}
237
Daniel Dunbard57a8712008-11-11 09:41:28 +0000238void CodeGenFunction::EmitBranch(llvm::BasicBlock *Target) {
239 // Emit a branch from the current block to the target one if this
240 // was a real block. If this was just a fall-through block after a
241 // terminator, don't emit it.
242 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
243
244 if (!CurBB || CurBB->getTerminator()) {
245 // If there is no insert point or the previous block is already
246 // terminated, don't touch it.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000247 } else {
248 // Otherwise, create a fall-through branch.
249 Builder.CreateBr(Target);
250 }
Daniel Dunbar5e08ad32008-11-11 22:06:59 +0000251
252 Builder.ClearInsertionPoint();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000253}
254
Mike Stumpec9771d2009-02-08 09:22:19 +0000255bool CodeGenFunction::StackFixupAtLabel(const void *S) {
256 if (StackDepthMap.find(S) == StackDepthMap.end()) {
Mike Stump36a2ada2009-02-07 12:52:26 +0000257 // We need to remember the stack depth so that we can readjust the
258 // stack back to the right depth for this label if we want to
259 // transfer here from a different depth.
Mike Stumpec9771d2009-02-08 09:22:19 +0000260 StackDepthMap[S] = StackDepth;
Mike Stump36a2ada2009-02-07 12:52:26 +0000261 } else {
Mike Stumpec9771d2009-02-08 09:22:19 +0000262 if (StackDepthMap[S] != StackDepth) {
Mike Stump36a2ada2009-02-07 12:52:26 +0000263 // FIXME: Sema needs to ckeck for jumps that cross decls with
264 // initializations for C++, and all VLAs, not just the first in
265 // a block that does a stacksave.
266 // FIXME: We need to save a place to insert the adjustment
267 // when we do a EmitStackUpdate on a forward jump, and then
268 // backpatch the adjustment into that place.
Mike Stumpec9771d2009-02-08 09:22:19 +0000269 return true;
Mike Stump36a2ada2009-02-07 12:52:26 +0000270 }
271 }
Mike Stumpec9771d2009-02-08 09:22:19 +0000272 return false;
273}
274
275void CodeGenFunction::EmitLabel(const LabelStmt &S) {
276 llvm::BasicBlock *NextBB = getBasicBlockForLabel(&S);
277 if (StackFixupAtLabel(&S))
278 CGM.ErrorUnsupported(&S, "forward goto inside scope with VLA");
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 EmitBlock(NextBB);
Chris Lattner91d723d2008-07-26 20:23:23 +0000280}
281
282
283void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
284 EmitLabel(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000285 EmitStmt(S.getSubStmt());
286}
287
288void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
Daniel Dunbara4275d12008-10-02 18:02:06 +0000289 // FIXME: Implement goto out in @try or @catch blocks.
290 if (!ObjCEHStack.empty()) {
291 CGM.ErrorUnsupported(&S, "goto inside an Obj-C exception block");
292 return;
293 }
294
Daniel Dunbar09124252008-11-12 08:21:33 +0000295 // If this code is reachable then emit a stop point (if generating
296 // debug info). We have to do this ourselves because we are on the
297 // "simple" statement path.
298 if (HaveInsertPoint())
299 EmitStopPoint(&S);
Mike Stump36a2ada2009-02-07 12:52:26 +0000300
301 // We need to adjust the stack, if the destination was (will be) at
302 // a different depth.
Mike Stumpec9771d2009-02-08 09:22:19 +0000303 if (EmitStackUpdate(S.getLabel()))
304 // FIXME: Move to semq and assert here, codegen isn't the right
305 // time to be checking.
306 CGM.ErrorUnsupported(S.getLabel(),
307 "invalid goto to VLA scope that has finished");
Mike Stump36a2ada2009-02-07 12:52:26 +0000308
Daniel Dunbard57a8712008-11-11 09:41:28 +0000309 EmitBranch(getBasicBlockForLabel(S.getLabel()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000310}
311
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000312void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) {
Daniel Dunbara4275d12008-10-02 18:02:06 +0000313 // FIXME: Implement indirect goto in @try or @catch blocks.
314 if (!ObjCEHStack.empty()) {
315 CGM.ErrorUnsupported(&S, "goto inside an Obj-C exception block");
316 return;
317 }
318
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000319 // Emit initial switch which will be patched up later by
320 // EmitIndirectSwitches(). We need a default dest, so we use the
321 // current BB, but this is overwritten.
322 llvm::Value *V = Builder.CreatePtrToInt(EmitScalarExpr(S.getTarget()),
323 llvm::Type::Int32Ty,
324 "addr");
325 llvm::SwitchInst *I = Builder.CreateSwitch(V, Builder.GetInsertBlock());
326 IndirectSwitches.push_back(I);
327
Daniel Dunbara448fb22008-11-11 23:11:34 +0000328 // Clear the insertion point to indicate we are in unreachable code.
329 Builder.ClearInsertionPoint();
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000330}
331
Chris Lattner62b72f62008-11-11 07:24:28 +0000332void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000333 // C99 6.8.4.1: The first substatement is executed if the expression compares
334 // unequal to 0. The condition must be a scalar type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000335
Chris Lattner9bc47e22008-11-12 07:46:33 +0000336 // If the condition constant folds and can be elided, try to avoid emitting
337 // the condition and the dead arm of the if/else.
Chris Lattner31a09842008-11-12 08:04:58 +0000338 if (int Cond = ConstantFoldsToSimpleInteger(S.getCond())) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000339 // Figure out which block (then or else) is executed.
340 const Stmt *Executed = S.getThen(), *Skipped = S.getElse();
Chris Lattner9bc47e22008-11-12 07:46:33 +0000341 if (Cond == -1) // Condition false?
Chris Lattner62b72f62008-11-11 07:24:28 +0000342 std::swap(Executed, Skipped);
Chris Lattner9bc47e22008-11-12 07:46:33 +0000343
Chris Lattner62b72f62008-11-11 07:24:28 +0000344 // If the skipped block has no labels in it, just emit the executed block.
345 // This avoids emitting dead code and simplifies the CFG substantially.
Chris Lattner9bc47e22008-11-12 07:46:33 +0000346 if (!ContainsLabel(Skipped)) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000347 if (Executed)
348 EmitStmt(Executed);
349 return;
350 }
351 }
Chris Lattner9bc47e22008-11-12 07:46:33 +0000352
353 // Otherwise, the condition did not fold, or we couldn't elide it. Just emit
354 // the conditional branch.
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000355 llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
356 llvm::BasicBlock *ContBlock = createBasicBlock("if.end");
357 llvm::BasicBlock *ElseBlock = ContBlock;
Reid Spencer5f016e22007-07-11 17:01:13 +0000358 if (S.getElse())
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000359 ElseBlock = createBasicBlock("if.else");
360 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000361
362 // Emit the 'then' code.
363 EmitBlock(ThenBlock);
364 EmitStmt(S.getThen());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000365 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000366
367 // Emit the 'else' code if present.
368 if (const Stmt *Else = S.getElse()) {
369 EmitBlock(ElseBlock);
370 EmitStmt(Else);
Daniel Dunbard57a8712008-11-11 09:41:28 +0000371 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000372 }
373
374 // Emit the continuation block for code after the if.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000375 EmitBlock(ContBlock, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000376}
377
378void CodeGenFunction::EmitWhileStmt(const WhileStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000379 // Emit the header for the loop, insert it, which will create an uncond br to
380 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000381 llvm::BasicBlock *LoopHeader = createBasicBlock("while.cond");
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 EmitBlock(LoopHeader);
Mike Stump72cac2c2009-02-07 18:08:12 +0000383
384 // Create an exit block for when the condition fails, create a block for the
385 // body of the loop.
386 llvm::BasicBlock *ExitBlock = createBasicBlock("while.end");
387 llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
388
389 // Store the blocks to use for break and continue.
390 BreakContinuePush(ExitBlock, LoopHeader);
Reid Spencer5f016e22007-07-11 17:01:13 +0000391
Mike Stump16b16202009-02-07 17:18:33 +0000392 // Evaluate the conditional in the while header. C99 6.8.5.1: The
393 // evaluation of the controlling expression takes place before each
394 // execution of the loop body.
Reid Spencer5f016e22007-07-11 17:01:13 +0000395 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel2c30d8f2007-10-09 20:51:27 +0000396
397 // while(1) is common, avoid extra exit blocks. Be sure
Reid Spencer5f016e22007-07-11 17:01:13 +0000398 // to correctly handle break/continue though.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000399 bool EmitBoolCondBranch = true;
400 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
401 if (C->isOne())
402 EmitBoolCondBranch = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000403
Reid Spencer5f016e22007-07-11 17:01:13 +0000404 // As long as the condition is true, go to the loop body.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000405 if (EmitBoolCondBranch)
406 Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock);
Chris Lattner31a09842008-11-12 08:04:58 +0000407
Reid Spencer5f016e22007-07-11 17:01:13 +0000408 // Emit the loop body.
409 EmitBlock(LoopBody);
410 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000411
Mike Stump36a2ada2009-02-07 12:52:26 +0000412 BreakContinuePop();
Reid Spencer5f016e22007-07-11 17:01:13 +0000413
414 // Cycle to the condition.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000415 EmitBranch(LoopHeader);
Reid Spencer5f016e22007-07-11 17:01:13 +0000416
417 // Emit the exit block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000418 EmitBlock(ExitBlock, true);
Devang Patel2c30d8f2007-10-09 20:51:27 +0000419
420 // If LoopHeader is a simple forwarding block then eliminate it.
421 if (!EmitBoolCondBranch
422 && &LoopHeader->front() == LoopHeader->getTerminator()) {
423 LoopHeader->replaceAllUsesWith(LoopBody);
424 LoopHeader->getTerminator()->eraseFromParent();
425 LoopHeader->eraseFromParent();
426 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000427}
428
429void CodeGenFunction::EmitDoStmt(const DoStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000430 // Emit the body for the loop, insert it, which will create an uncond br to
431 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000432 llvm::BasicBlock *LoopBody = createBasicBlock("do.body");
433 llvm::BasicBlock *AfterDo = createBasicBlock("do.end");
Reid Spencer5f016e22007-07-11 17:01:13 +0000434 EmitBlock(LoopBody);
Chris Lattnerda138702007-07-16 21:28:45 +0000435
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000436 llvm::BasicBlock *DoCond = createBasicBlock("do.cond");
Chris Lattnerda138702007-07-16 21:28:45 +0000437
438 // Store the blocks to use for break and continue.
Mike Stump36a2ada2009-02-07 12:52:26 +0000439 BreakContinuePush(AfterDo, DoCond);
Reid Spencer5f016e22007-07-11 17:01:13 +0000440
441 // Emit the body of the loop into the block.
442 EmitStmt(S.getBody());
443
Mike Stump36a2ada2009-02-07 12:52:26 +0000444 BreakContinuePop();
Chris Lattnerda138702007-07-16 21:28:45 +0000445
446 EmitBlock(DoCond);
447
Reid Spencer5f016e22007-07-11 17:01:13 +0000448 // C99 6.8.5.2: "The evaluation of the controlling expression takes place
449 // after each execution of the loop body."
450
451 // Evaluate the conditional in the while header.
452 // C99 6.8.5p2/p4: The first substatement is executed if the expression
453 // compares unequal to 0. The condition must be a scalar type.
454 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000455
456 // "do {} while (0)" is common in macros, avoid extra blocks. Be sure
457 // to correctly handle break/continue though.
458 bool EmitBoolCondBranch = true;
459 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
460 if (C->isZero())
461 EmitBoolCondBranch = false;
462
Reid Spencer5f016e22007-07-11 17:01:13 +0000463 // As long as the condition is true, iterate the loop.
Devang Patel05f6e6b2007-10-09 20:33:39 +0000464 if (EmitBoolCondBranch)
465 Builder.CreateCondBr(BoolCondVal, LoopBody, AfterDo);
Reid Spencer5f016e22007-07-11 17:01:13 +0000466
467 // Emit the exit block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000468 EmitBlock(AfterDo, true);
Devang Patel05f6e6b2007-10-09 20:33:39 +0000469
470 // If DoCond is a simple forwarding block then eliminate it.
471 if (!EmitBoolCondBranch && &DoCond->front() == DoCond->getTerminator()) {
472 DoCond->replaceAllUsesWith(AfterDo);
473 DoCond->getTerminator()->eraseFromParent();
474 DoCond->eraseFromParent();
475 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000476}
477
478void CodeGenFunction::EmitForStmt(const ForStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000479 // FIXME: What do we do if the increment (f.e.) contains a stmt expression,
480 // which contains a continue/break?
Chris Lattnerda138702007-07-16 21:28:45 +0000481
Reid Spencer5f016e22007-07-11 17:01:13 +0000482 // Evaluate the first part before the loop.
483 if (S.getInit())
484 EmitStmt(S.getInit());
485
486 // Start the loop with a block that tests the condition.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000487 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
488 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Chris Lattnerda138702007-07-16 21:28:45 +0000489
Reid Spencer5f016e22007-07-11 17:01:13 +0000490 EmitBlock(CondBlock);
491
Mike Stump3e9da662009-02-07 23:02:10 +0000492 llvm::Value *saveStackDepth = StackDepth;
493
Mike Stump20926c62009-02-07 20:14:12 +0000494 // Evaluate the condition if present. If not, treat it as a
495 // non-zero-constant according to 6.8.5.3p2, aka, true.
Reid Spencer5f016e22007-07-11 17:01:13 +0000496 if (S.getCond()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000497 // As long as the condition is true, iterate the loop.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000498 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Chris Lattner31a09842008-11-12 08:04:58 +0000499
500 // C99 6.8.5p2/p4: The first substatement is executed if the expression
501 // compares unequal to 0. The condition must be a scalar type.
502 EmitBranchOnBoolExpr(S.getCond(), ForBody, AfterFor);
503
Reid Spencer5f016e22007-07-11 17:01:13 +0000504 EmitBlock(ForBody);
505 } else {
506 // Treat it as a non-zero constant. Don't even create a new block for the
507 // body, just fall into it.
508 }
509
Chris Lattnerda138702007-07-16 21:28:45 +0000510 // If the for loop doesn't have an increment we can just use the
511 // condition as the continue block.
512 llvm::BasicBlock *ContinueBlock;
513 if (S.getInc())
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000514 ContinueBlock = createBasicBlock("for.inc");
Chris Lattnerda138702007-07-16 21:28:45 +0000515 else
516 ContinueBlock = CondBlock;
517
518 // Store the blocks to use for break and continue.
Mike Stump3e9da662009-02-07 23:02:10 +0000519 // Ensure any vlas created between there and here, are undone
520 BreakContinuePush(AfterFor, ContinueBlock,
521 saveStackDepth, saveStackDepth);
522
Reid Spencer5f016e22007-07-11 17:01:13 +0000523 // If the condition is true, execute the body of the for stmt.
524 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000525
Mike Stump36a2ada2009-02-07 12:52:26 +0000526 BreakContinuePop();
Chris Lattnerda138702007-07-16 21:28:45 +0000527
Reid Spencer5f016e22007-07-11 17:01:13 +0000528 // If there is an increment, emit it next.
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000529 if (S.getInc()) {
530 EmitBlock(ContinueBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000531 EmitStmt(S.getInc());
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000532 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000533
534 // Finally, branch back up to the condition for the next iteration.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000535 EmitBranch(CondBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000536
Chris Lattnerda138702007-07-16 21:28:45 +0000537 // Emit the fall-through block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000538 EmitBlock(AfterFor, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000539}
540
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000541void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
542 if (RV.isScalar()) {
543 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
544 } else if (RV.isAggregate()) {
545 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
546 } else {
547 StoreComplexToAddr(RV.getComplexVal(), ReturnValue, false);
548 }
Daniel Dunbard57a8712008-11-11 09:41:28 +0000549 EmitBranch(ReturnBlock);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000550}
551
Reid Spencer5f016e22007-07-11 17:01:13 +0000552/// EmitReturnStmt - Note that due to GCC extensions, this can have an operand
553/// if the function returns void, or may be missing one if the function returns
554/// non-void. Fun stuff :).
555void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
Eli Friedman20c802b2008-12-20 23:18:29 +0000556 for (unsigned i = 0; i < StackSaveValues.size(); i++) {
Anders Carlsson7e63b852008-12-20 21:33:38 +0000557 if (StackSaveValues[i]) {
558 CGM.ErrorUnsupported(&S, "return inside scope with VLA");
559 return;
560 }
Anders Carlssoneb91f0e2008-12-20 19:33:21 +0000561 }
562
Reid Spencer5f016e22007-07-11 17:01:13 +0000563 // Emit the result value, even if unused, to evalute the side effects.
564 const Expr *RV = S.getRetValue();
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000565
566 // FIXME: Clean this up by using an LValue for ReturnTemp,
567 // EmitStoreThroughLValue, and EmitAnyExpr.
568 if (!ReturnValue) {
569 // Make sure not to return anything, but evaluate the expression
570 // for side effects.
571 if (RV)
Eli Friedman144ac612008-05-22 01:22:33 +0000572 EmitAnyExpr(RV);
Reid Spencer5f016e22007-07-11 17:01:13 +0000573 } else if (RV == 0) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000574 // Do nothing (return value is left uninitialized)
Chris Lattner4b0029d2007-08-26 07:14:44 +0000575 } else if (!hasAggregateLLVMType(RV->getType())) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000576 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
Chris Lattner9b2dc282008-04-04 16:54:41 +0000577 } else if (RV->getType()->isAnyComplexType()) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000578 EmitComplexExprIntoAddr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000579 } else {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000580 EmitAggExpr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000581 }
Eli Friedman144ac612008-05-22 01:22:33 +0000582
Daniel Dunbar898d5082008-09-30 01:06:03 +0000583 if (!ObjCEHStack.empty()) {
584 for (ObjCEHStackType::reverse_iterator i = ObjCEHStack.rbegin(),
585 e = ObjCEHStack.rend(); i != e; ++i) {
Daniel Dunbar55e87422008-11-11 02:29:29 +0000586 llvm::BasicBlock *ReturnPad = createBasicBlock("return.pad");
Daniel Dunbar898d5082008-09-30 01:06:03 +0000587 EmitJumpThroughFinally(*i, ReturnPad);
588 EmitBlock(ReturnPad);
589 }
590 }
591
Daniel Dunbard57a8712008-11-11 09:41:28 +0000592 EmitBranch(ReturnBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000593}
594
595void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
Ted Kremeneke4ea1f42008-10-06 18:42:27 +0000596 for (DeclStmt::const_decl_iterator I = S.decl_begin(), E = S.decl_end();
597 I != E; ++I)
598 EmitDecl(**I);
Chris Lattner6fa5f092007-07-12 15:43:07 +0000599}
Chris Lattnerda138702007-07-16 21:28:45 +0000600
Daniel Dunbar09124252008-11-12 08:21:33 +0000601void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000602 assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
603
Daniel Dunbar09124252008-11-12 08:21:33 +0000604 // FIXME: Implement break in @try or @catch blocks.
Anders Carlssone21269b2008-12-13 22:52:24 +0000605 if (ObjCEHStack.size() != BreakContinueStack.back().EHStackSize) {
Anders Carlssoneb91f0e2008-12-20 19:33:21 +0000606 CGM.ErrorUnsupported(&S, "break inside an Obj-C exception block");
Daniel Dunbar09124252008-11-12 08:21:33 +0000607 return;
608 }
609
610 // If this code is reachable then emit a stop point (if generating
611 // debug info). We have to do this ourselves because we are on the
612 // "simple" statement path.
613 if (HaveInsertPoint())
614 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +0000615
616 // We need to adjust the stack, if the destination was (will be) at
617 // a different depth.
618 if (EmitStackUpdate(BreakContinueStack.back().SaveBreakStackDepth))
619 assert (0 && "break vla botch");
620
Chris Lattnerda138702007-07-16 21:28:45 +0000621 llvm::BasicBlock *Block = BreakContinueStack.back().BreakBlock;
Daniel Dunbard57a8712008-11-11 09:41:28 +0000622 EmitBranch(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000623}
624
Daniel Dunbar09124252008-11-12 08:21:33 +0000625void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000626 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
627
Daniel Dunbar09124252008-11-12 08:21:33 +0000628 // FIXME: Implement continue in @try or @catch blocks.
Anders Carlssone21269b2008-12-13 22:52:24 +0000629 if (ObjCEHStack.size() != BreakContinueStack.back().EHStackSize) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000630 CGM.ErrorUnsupported(&S, "continue inside an Obj-C exception block");
631 return;
632 }
633
634 // If this code is reachable then emit a stop point (if generating
635 // debug info). We have to do this ourselves because we are on the
636 // "simple" statement path.
637 if (HaveInsertPoint())
638 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +0000639
640 // We need to adjust the stack, if the destination was (will be) at
641 // a different depth.
642 if (EmitStackUpdate(BreakContinueStack.back().SaveContinueStackDepth))
643 assert (0 && "continue vla botch");
644
Chris Lattnerda138702007-07-16 21:28:45 +0000645 llvm::BasicBlock *Block = BreakContinueStack.back().ContinueBlock;
Daniel Dunbard57a8712008-11-11 09:41:28 +0000646 EmitBranch(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000647}
Devang Patel51b09f22007-10-04 23:45:31 +0000648
Devang Patelc049e4f2007-10-08 20:57:48 +0000649/// EmitCaseStmtRange - If case statement range is not too big then
650/// add multiple cases to switch instruction, one for each value within
651/// the range. If range is too big then emit "if" condition check.
652void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000653 assert(S.getRHS() && "Expected RHS value in CaseStmt");
Devang Patelc049e4f2007-10-08 20:57:48 +0000654
Anders Carlsson51fe9962008-11-22 21:04:56 +0000655 llvm::APSInt LHS = S.getLHS()->EvaluateAsInt(getContext());
656 llvm::APSInt RHS = S.getRHS()->EvaluateAsInt(getContext());
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000657
Daniel Dunbar16f23572008-07-25 01:11:38 +0000658 // Emit the code for this case. We do this first to make sure it is
659 // properly chained from our predecessor before generating the
660 // switch machinery to enter this block.
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000661 EmitBlock(createBasicBlock("sw.bb"));
Daniel Dunbar16f23572008-07-25 01:11:38 +0000662 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
663 EmitStmt(S.getSubStmt());
664
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000665 // If range is empty, do nothing.
666 if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))
667 return;
Devang Patelc049e4f2007-10-08 20:57:48 +0000668
669 llvm::APInt Range = RHS - LHS;
Daniel Dunbar16f23572008-07-25 01:11:38 +0000670 // FIXME: parameters such as this should not be hardcoded.
Devang Patelc049e4f2007-10-08 20:57:48 +0000671 if (Range.ult(llvm::APInt(Range.getBitWidth(), 64))) {
672 // Range is small enough to add multiple switch instruction cases.
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000673 for (unsigned i = 0, e = Range.getZExtValue() + 1; i != e; ++i) {
Devang Patel2d79d0f2007-10-05 20:54:07 +0000674 SwitchInsn->addCase(llvm::ConstantInt::get(LHS), CaseDest);
675 LHS++;
676 }
Devang Patelc049e4f2007-10-08 20:57:48 +0000677 return;
678 }
679
Daniel Dunbar16f23572008-07-25 01:11:38 +0000680 // The range is too big. Emit "if" condition into a new block,
681 // making sure to save and restore the current insertion point.
682 llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
Devang Patel2d79d0f2007-10-05 20:54:07 +0000683
Daniel Dunbar16f23572008-07-25 01:11:38 +0000684 // Push this test onto the chain of range checks (which terminates
685 // in the default basic block). The switch's default will be changed
686 // to the top of this chain after switch emission is complete.
687 llvm::BasicBlock *FalseDest = CaseRangeBlock;
Daniel Dunbar55e87422008-11-11 02:29:29 +0000688 CaseRangeBlock = createBasicBlock("sw.caserange");
Devang Patelc049e4f2007-10-08 20:57:48 +0000689
Daniel Dunbar16f23572008-07-25 01:11:38 +0000690 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
691 Builder.SetInsertPoint(CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000692
693 // Emit range check.
694 llvm::Value *Diff =
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000695 Builder.CreateSub(SwitchInsn->getCondition(), llvm::ConstantInt::get(LHS),
696 "tmp");
Devang Patelc049e4f2007-10-08 20:57:48 +0000697 llvm::Value *Cond =
698 Builder.CreateICmpULE(Diff, llvm::ConstantInt::get(Range), "tmp");
699 Builder.CreateCondBr(Cond, CaseDest, FalseDest);
700
Daniel Dunbar16f23572008-07-25 01:11:38 +0000701 // Restore the appropriate insertion point.
Daniel Dunbara448fb22008-11-11 23:11:34 +0000702 if (RestoreBB)
703 Builder.SetInsertPoint(RestoreBB);
704 else
705 Builder.ClearInsertionPoint();
Devang Patelc049e4f2007-10-08 20:57:48 +0000706}
707
708void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
709 if (S.getRHS()) {
710 EmitCaseStmtRange(S);
711 return;
712 }
713
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000714 EmitBlock(createBasicBlock("sw.bb"));
Devang Patelc049e4f2007-10-08 20:57:48 +0000715 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
Anders Carlsson51fe9962008-11-22 21:04:56 +0000716 llvm::APSInt CaseVal = S.getLHS()->EvaluateAsInt(getContext());
Daniel Dunbar55e87422008-11-11 02:29:29 +0000717 SwitchInsn->addCase(llvm::ConstantInt::get(CaseVal), CaseDest);
Devang Patel51b09f22007-10-04 23:45:31 +0000718 EmitStmt(S.getSubStmt());
719}
720
721void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
Daniel Dunbar16f23572008-07-25 01:11:38 +0000722 llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
Daniel Dunbar55e87422008-11-11 02:29:29 +0000723 assert(DefaultBlock->empty() &&
724 "EmitDefaultStmt: Default block already defined?");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000725 EmitBlock(DefaultBlock);
Devang Patel51b09f22007-10-04 23:45:31 +0000726 EmitStmt(S.getSubStmt());
727}
728
729void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
730 llvm::Value *CondV = EmitScalarExpr(S.getCond());
731
732 // Handle nested switch statements.
733 llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000734 llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000735
Mike Stump3e9da662009-02-07 23:02:10 +0000736 // Ensure any vlas created inside are destroyed on break.
737 llvm::Value *saveBreakStackDepth = StackDepth;
738
Daniel Dunbar16f23572008-07-25 01:11:38 +0000739 // Create basic block to hold stuff that comes after switch
740 // statement. We also need to create a default block now so that
741 // explicit case ranges tests can have a place to jump to on
742 // failure.
Daniel Dunbar55e87422008-11-11 02:29:29 +0000743 llvm::BasicBlock *NextBlock = createBasicBlock("sw.epilog");
744 llvm::BasicBlock *DefaultBlock = createBasicBlock("sw.default");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000745 SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
746 CaseRangeBlock = DefaultBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000747
Daniel Dunbar09124252008-11-12 08:21:33 +0000748 // Clear the insertion point to indicate we are in unreachable code.
749 Builder.ClearInsertionPoint();
Eli Friedmand28a80d2008-05-12 16:08:04 +0000750
Devang Patele9b8c0a2007-10-30 20:59:40 +0000751 // All break statements jump to NextBlock. If BreakContinueStack is non empty
752 // then reuse last ContinueBlock.
Devang Patel51b09f22007-10-04 23:45:31 +0000753 llvm::BasicBlock *ContinueBlock = NULL;
Mike Stump3e9da662009-02-07 23:02:10 +0000754 llvm::Value *saveContinueStackDepth = NULL;
755 if (!BreakContinueStack.empty()) {
Devang Patel51b09f22007-10-04 23:45:31 +0000756 ContinueBlock = BreakContinueStack.back().ContinueBlock;
Mike Stump3e9da662009-02-07 23:02:10 +0000757 saveContinueStackDepth = BreakContinueStack.back().SaveContinueStackDepth;
758 }
759 // Ensure any vlas created between there and here, are undone
760 BreakContinuePush(NextBlock, ContinueBlock,
761 saveBreakStackDepth, saveContinueStackDepth);
Devang Patel51b09f22007-10-04 23:45:31 +0000762
763 // Emit switch body.
764 EmitStmt(S.getBody());
Mike Stump36a2ada2009-02-07 12:52:26 +0000765 BreakContinuePop();
Devang Patel51b09f22007-10-04 23:45:31 +0000766
Daniel Dunbar16f23572008-07-25 01:11:38 +0000767 // Update the default block in case explicit case range tests have
768 // been chained on top.
769 SwitchInsn->setSuccessor(0, CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000770
Daniel Dunbar16f23572008-07-25 01:11:38 +0000771 // If a default was never emitted then reroute any jumps to it and
772 // discard.
773 if (!DefaultBlock->getParent()) {
774 DefaultBlock->replaceAllUsesWith(NextBlock);
775 delete DefaultBlock;
776 }
Devang Patel51b09f22007-10-04 23:45:31 +0000777
Daniel Dunbar16f23572008-07-25 01:11:38 +0000778 // Emit continuation.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000779 EmitBlock(NextBlock, true);
Daniel Dunbar16f23572008-07-25 01:11:38 +0000780
Devang Patel51b09f22007-10-04 23:45:31 +0000781 SwitchInsn = SavedSwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000782 CaseRangeBlock = SavedCRBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000783}
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000784
Anders Carlssonce179ab2008-11-09 18:54:14 +0000785static std::string ConvertAsmString(const AsmStmt& S, bool &Failed)
786{
787 // FIXME: No need to create new std::string here, we could just make sure
788 // that we don't read past the end of the string data.
789 std::string str(S.getAsmString()->getStrData(),
790 S.getAsmString()->getByteLength());
791 const char *Start = str.c_str();
792
793 unsigned NumOperands = S.getNumOutputs() + S.getNumInputs();
794 bool IsSimple = S.isSimple();
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000795 Failed = false;
796
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000797 static unsigned AsmCounter = 0;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000798 AsmCounter++;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000799 std::string Result;
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000800 if (IsSimple) {
801 while (*Start) {
802 switch (*Start) {
803 default:
804 Result += *Start;
805 break;
806 case '$':
807 Result += "$$";
808 break;
809 }
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000810 Start++;
811 }
812
813 return Result;
814 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000815
816 while (*Start) {
817 switch (*Start) {
818 default:
819 Result += *Start;
820 break;
821 case '$':
822 Result += "$$";
823 break;
824 case '%':
825 // Escaped character
826 Start++;
827 if (!*Start) {
828 // FIXME: This should be caught during Sema.
829 assert(0 && "Trailing '%' in asm string.");
830 }
831
832 char EscapedChar = *Start;
833 if (EscapedChar == '%') {
834 // Escaped percentage sign.
835 Result += '%';
Chris Lattner345f7202008-07-26 20:15:14 +0000836 } else if (EscapedChar == '=') {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000837 // Generate an unique ID.
838 Result += llvm::utostr(AsmCounter);
839 } else if (isdigit(EscapedChar)) {
840 // %n - Assembler operand n
841 char *End;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000842 unsigned long n = strtoul(Start, &End, 10);
843 if (Start == End) {
844 // FIXME: This should be caught during Sema.
845 assert(0 && "Missing operand!");
846 } else if (n >= NumOperands) {
847 // FIXME: This should be caught during Sema.
848 assert(0 && "Operand number out of range!");
849 }
850
851 Result += '$' + llvm::utostr(n);
Lauro Ramos Venancio7695f702008-02-26 19:19:58 +0000852 Start = End - 1;
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000853 } else if (isalpha(EscapedChar)) {
854 char *End;
855
856 unsigned long n = strtoul(Start + 1, &End, 10);
857 if (Start == End) {
858 // FIXME: This should be caught during Sema.
859 assert(0 && "Missing operand!");
860 } else if (n >= NumOperands) {
861 // FIXME: This should be caught during Sema.
862 assert(0 && "Operand number out of range!");
863 }
864
865 Result += "${" + llvm::utostr(n) + ':' + EscapedChar + '}';
Lauro Ramos Venancio7695f702008-02-26 19:19:58 +0000866 Start = End - 1;
Anders Carlssonce179ab2008-11-09 18:54:14 +0000867 } else if (EscapedChar == '[') {
868 std::string SymbolicName;
869
870 Start++;
871
872 while (*Start && *Start != ']') {
873 SymbolicName += *Start;
874
875 Start++;
876 }
877
878 if (!Start) {
879 // FIXME: Should be caught by sema.
880 assert(0 && "Could not parse symbolic name");
881 }
882
883 assert(*Start == ']' && "Error parsing symbolic name");
884
885 int Index = -1;
886
887 // Check if this is an output operand.
888 for (unsigned i = 0; i < S.getNumOutputs(); i++) {
889 if (S.getOutputName(i) == SymbolicName) {
890 Index = i;
891 break;
892 }
893 }
894
895 if (Index == -1) {
896 for (unsigned i = 0; i < S.getNumInputs(); i++) {
897 if (S.getInputName(i) == SymbolicName) {
898 Index = S.getNumOutputs() + i;
899 }
900 }
901 }
902
903 assert(Index != -1 && "Did not find right operand!");
904
905 Result += '$' + llvm::utostr(Index);
906
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000907 } else {
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000908 Failed = true;
909 return "";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000910 }
911 }
912 Start++;
913 }
914
915 return Result;
916}
917
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000918static std::string SimplifyConstraint(const char* Constraint,
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000919 TargetInfo &Target,
920 const std::string *OutputNamesBegin = 0,
921 const std::string *OutputNamesEnd = 0)
922{
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000923 std::string Result;
924
925 while (*Constraint) {
926 switch (*Constraint) {
927 default:
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000928 Result += Target.convertConstraint(*Constraint);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000929 break;
930 // Ignore these
931 case '*':
932 case '?':
933 case '!':
934 break;
935 case 'g':
936 Result += "imr";
937 break;
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000938 case '[': {
939 assert(OutputNamesBegin && OutputNamesEnd &&
940 "Must pass output names to constraints with a symbolic name");
941 unsigned Index;
942 bool result = Target.resolveSymbolicName(Constraint,
943 OutputNamesBegin,
944 OutputNamesEnd, Index);
Chris Lattner53637652009-01-21 07:35:26 +0000945 assert(result && "Could not resolve symbolic name"); result=result;
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000946 Result += llvm::utostr(Index);
947 break;
948 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000949 }
950
951 Constraint++;
952 }
953
954 return Result;
955}
956
Anders Carlsson63471722009-01-11 19:32:54 +0000957llvm::Value* CodeGenFunction::EmitAsmInput(const AsmStmt &S,
958 TargetInfo::ConstraintInfo Info,
959 const Expr *InputExpr,
960 std::string &ConstraintStr)
961{
962 llvm::Value *Arg;
963 if ((Info & TargetInfo::CI_AllowsRegister) ||
Anders Carlssonebaae2a2009-01-12 02:22:13 +0000964 !(Info & TargetInfo::CI_AllowsMemory)) {
965 const llvm::Type *Ty = ConvertType(InputExpr->getType());
966
967 if (Ty->isSingleValueType()) {
Anders Carlsson63471722009-01-11 19:32:54 +0000968 Arg = EmitScalarExpr(InputExpr);
969 } else {
Anders Carlssonebaae2a2009-01-12 02:22:13 +0000970 LValue Dest = EmitLValue(InputExpr);
971
972 uint64_t Size = CGM.getTargetData().getTypeSizeInBits(Ty);
973 if (Size <= 64 && llvm::isPowerOf2_64(Size)) {
974 Ty = llvm::IntegerType::get(Size);
975 Ty = llvm::PointerType::getUnqual(Ty);
976
977 Arg = Builder.CreateLoad(Builder.CreateBitCast(Dest.getAddress(), Ty));
978 } else {
979 Arg = Dest.getAddress();
980 ConstraintStr += '*';
981 }
Anders Carlsson63471722009-01-11 19:32:54 +0000982 }
983 } else {
984 LValue Dest = EmitLValue(InputExpr);
985 Arg = Dest.getAddress();
986 ConstraintStr += '*';
987 }
988
989 return Arg;
990}
991
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000992void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000993 bool Failed;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000994 std::string AsmString =
Anders Carlssonce179ab2008-11-09 18:54:14 +0000995 ConvertAsmString(S, Failed);
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000996
997 if (Failed) {
998 ErrorUnsupported(&S, "asm string");
999 return;
1000 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001001
1002 std::string Constraints;
1003
1004 llvm::Value *ResultAddr = 0;
1005 const llvm::Type *ResultType = llvm::Type::VoidTy;
1006
1007 std::vector<const llvm::Type*> ArgTypes;
1008 std::vector<llvm::Value*> Args;
Anders Carlssonf39a4212008-02-05 20:01:53 +00001009
1010 // Keep track of inout constraints.
1011 std::string InOutConstraints;
1012 std::vector<llvm::Value*> InOutArgs;
1013 std::vector<const llvm::Type*> InOutArgTypes;
Anders Carlsson03eb5432009-01-27 20:38:24 +00001014
1015 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
1016
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001017 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
1018 std::string OutputConstraint(S.getOutputConstraint(i)->getStrData(),
1019 S.getOutputConstraint(i)->getByteLength());
1020
1021 TargetInfo::ConstraintInfo Info;
1022 bool result = Target.validateOutputConstraint(OutputConstraint.c_str(),
1023 Info);
Chris Lattner3304e552008-10-12 00:31:50 +00001024 assert(result && "Failed to parse output constraint"); result=result;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001025
Anders Carlsson03eb5432009-01-27 20:38:24 +00001026 OutputConstraintInfos.push_back(Info);
1027
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001028 // Simplify the output constraint.
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +00001029 OutputConstraint = SimplifyConstraint(OutputConstraint.c_str() + 1, Target);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001030
1031 LValue Dest = EmitLValue(S.getOutputExpr(i));
1032 const llvm::Type *DestValueType =
1033 cast<llvm::PointerType>(Dest.getAddress()->getType())->getElementType();
1034
1035 // If the first output operand is not a memory dest, we'll
1036 // make it the return value.
1037 if (i == 0 && !(Info & TargetInfo::CI_AllowsMemory) &&
Dan Gohmand79a7262008-05-22 22:12:56 +00001038 DestValueType->isSingleValueType()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001039 ResultAddr = Dest.getAddress();
1040 ResultType = DestValueType;
1041 Constraints += "=" + OutputConstraint;
1042 } else {
1043 ArgTypes.push_back(Dest.getAddress()->getType());
Anders Carlssoncad3ab62008-02-05 16:57:38 +00001044 Args.push_back(Dest.getAddress());
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001045 if (i != 0)
1046 Constraints += ',';
Anders Carlssonf39a4212008-02-05 20:01:53 +00001047 Constraints += "=*";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001048 Constraints += OutputConstraint;
Anders Carlssonf39a4212008-02-05 20:01:53 +00001049 }
1050
1051 if (Info & TargetInfo::CI_ReadWrite) {
Anders Carlssonf39a4212008-02-05 20:01:53 +00001052 InOutConstraints += ',';
Anders Carlsson63471722009-01-11 19:32:54 +00001053
Anders Carlssonf39a4212008-02-05 20:01:53 +00001054 const Expr *InputExpr = S.getOutputExpr(i);
Anders Carlsson63471722009-01-11 19:32:54 +00001055 llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, InOutConstraints);
Anders Carlssonf39a4212008-02-05 20:01:53 +00001056
Anders Carlsson9f2505b2009-01-11 21:23:27 +00001057 if (Info & TargetInfo::CI_AllowsRegister)
1058 InOutConstraints += llvm::utostr(i);
1059 else
1060 InOutConstraints += OutputConstraint;
Anders Carlsson2763b3a2009-01-11 19:46:50 +00001061
Anders Carlssonf39a4212008-02-05 20:01:53 +00001062 InOutArgTypes.push_back(Arg->getType());
1063 InOutArgs.push_back(Arg);
Anders Carlssonf39a4212008-02-05 20:01:53 +00001064 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001065 }
1066
1067 unsigned NumConstraints = S.getNumOutputs() + S.getNumInputs();
1068
1069 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
1070 const Expr *InputExpr = S.getInputExpr(i);
1071
1072 std::string InputConstraint(S.getInputConstraint(i)->getStrData(),
1073 S.getInputConstraint(i)->getByteLength());
1074
1075 TargetInfo::ConstraintInfo Info;
1076 bool result = Target.validateInputConstraint(InputConstraint.c_str(),
Anders Carlsson45b050e2009-01-17 23:36:15 +00001077 S.begin_output_names(),
1078 S.end_output_names(),
Anders Carlsson03eb5432009-01-27 20:38:24 +00001079 &OutputConstraintInfos[0],
Chris Lattner53637652009-01-21 07:35:26 +00001080 Info); result=result;
Anders Carlsson42e1ee02009-01-18 01:56:57 +00001081 assert(result && "Failed to parse input constraint");
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001082
1083 if (i != 0 || S.getNumOutputs() > 0)
1084 Constraints += ',';
1085
1086 // Simplify the input constraint.
Anders Carlsson300fb5d2009-01-18 02:06:20 +00001087 InputConstraint = SimplifyConstraint(InputConstraint.c_str(), Target,
1088 S.begin_output_names(),
1089 S.end_output_names());
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001090
Anders Carlsson63471722009-01-11 19:32:54 +00001091 llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, Constraints);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001092
1093 ArgTypes.push_back(Arg->getType());
1094 Args.push_back(Arg);
1095 Constraints += InputConstraint;
1096 }
1097
Anders Carlssonf39a4212008-02-05 20:01:53 +00001098 // Append the "input" part of inout constraints last.
1099 for (unsigned i = 0, e = InOutArgs.size(); i != e; i++) {
1100 ArgTypes.push_back(InOutArgTypes[i]);
1101 Args.push_back(InOutArgs[i]);
1102 }
1103 Constraints += InOutConstraints;
1104
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001105 // Clobbers
1106 for (unsigned i = 0, e = S.getNumClobbers(); i != e; i++) {
1107 std::string Clobber(S.getClobber(i)->getStrData(),
1108 S.getClobber(i)->getByteLength());
1109
1110 Clobber = Target.getNormalizedGCCRegisterName(Clobber.c_str());
1111
Anders Carlssonea041752008-02-06 00:11:32 +00001112 if (i != 0 || NumConstraints != 0)
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001113 Constraints += ',';
Anders Carlssonea041752008-02-06 00:11:32 +00001114
1115 Constraints += "~{";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001116 Constraints += Clobber;
Anders Carlssonea041752008-02-06 00:11:32 +00001117 Constraints += '}';
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001118 }
1119
1120 // Add machine specific clobbers
Eli Friedmanccf614c2008-12-21 01:15:32 +00001121 std::string MachineClobbers = Target.getClobbers();
1122 if (!MachineClobbers.empty()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001123 if (!Constraints.empty())
1124 Constraints += ',';
Eli Friedmanccf614c2008-12-21 01:15:32 +00001125 Constraints += MachineClobbers;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001126 }
Anders Carlssonf39a4212008-02-05 20:01:53 +00001127
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001128 const llvm::FunctionType *FTy =
1129 llvm::FunctionType::get(ResultType, ArgTypes, false);
1130
1131 llvm::InlineAsm *IA =
1132 llvm::InlineAsm::get(FTy, AsmString, Constraints,
1133 S.isVolatile() || S.getNumOutputs() == 0);
1134 llvm::Value *Result = Builder.CreateCall(IA, Args.begin(), Args.end(), "");
Eli Friedman1e692ac2008-06-13 23:01:12 +00001135 if (ResultAddr) // FIXME: volatility
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001136 Builder.CreateStore(Result, ResultAddr);
1137}