blob: 5b17b7b90084c57c3a8ad5f7d7f25d04292996da [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"
Chris Lattner7d22bf02009-03-05 08:04:57 +000018#include "clang/Basic/PrettyStackTrace.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000019#include "clang/Basic/TargetInfo.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000020#include "llvm/ADT/StringExtras.h"
Anders Carlsson17d28a32008-12-12 05:52:00 +000021#include "llvm/InlineAsm.h"
22#include "llvm/Intrinsics.h"
Anders Carlssonebaae2a2009-01-12 02:22:13 +000023#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25using namespace CodeGen;
26
27//===----------------------------------------------------------------------===//
28// Statement Emission
29//===----------------------------------------------------------------------===//
30
Daniel Dunbar09124252008-11-12 08:21:33 +000031void CodeGenFunction::EmitStopPoint(const Stmt *S) {
Anders Carlssone896d982009-02-13 08:11:52 +000032 if (CGDebugInfo *DI = getDebugInfo()) {
Daniel Dunbar09124252008-11-12 08:21:33 +000033 DI->setLocation(S->getLocStart());
34 DI->EmitStopPoint(CurFn, Builder);
35 }
36}
37
Reid Spencer5f016e22007-07-11 17:01:13 +000038void CodeGenFunction::EmitStmt(const Stmt *S) {
39 assert(S && "Null statement?");
Daniel Dunbara448fb22008-11-11 23:11:34 +000040
Daniel Dunbar09124252008-11-12 08:21:33 +000041 // Check if we can handle this without bothering to generate an
42 // insert point or debug info.
43 if (EmitSimpleStmt(S))
44 return;
45
Daniel Dunbard286f052009-07-19 06:58:07 +000046 // Check if we are generating unreachable code.
47 if (!HaveInsertPoint()) {
48 // If so, and the statement doesn't contain a label, then we do not need to
49 // generate actual code. This is safe because (1) the current point is
50 // unreachable, so we don't need to execute the code, and (2) we've already
51 // handled the statements which update internal data structures (like the
52 // local variable map) which could be used by subsequent statements.
53 if (!ContainsLabel(S)) {
54 // Verify that any decl statements were handled as simple, they may be in
55 // scope of subsequent reachable statements.
56 assert(!isa<DeclStmt>(*S) && "Unexpected DeclStmt!");
57 return;
58 }
59
60 // Otherwise, make a new block to hold the code.
61 EnsureInsertPoint();
62 }
63
Daniel Dunbar09124252008-11-12 08:21:33 +000064 // Generate a stoppoint if we are emitting debug info.
65 EmitStopPoint(S);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000066
Reid Spencer5f016e22007-07-11 17:01:13 +000067 switch (S->getStmtClass()) {
68 default:
Chris Lattner1e4d21e2007-08-26 22:58:05 +000069 // Must be an expression in a stmt context. Emit the value (to get
70 // side-effects) and ignore the result.
Daniel Dunbarcd5e60e2009-07-19 08:23:12 +000071 if (!isa<Expr>(S))
Daniel Dunbar488e9932008-08-16 00:56:44 +000072 ErrorUnsupported(S, "statement");
Daniel Dunbarcd5e60e2009-07-19 08:23:12 +000073
74 EmitAnyExpr(cast<Expr>(S), 0, false, true);
75
76 // Expression emitters don't handle unreachable blocks yet, so look for one
77 // explicitly here. This handles the common case of a call to a noreturn
78 // function.
79 if (llvm::BasicBlock *CurBB = Builder.GetInsertBlock()) {
80 if (CurBB->empty() && CurBB->use_empty()) {
81 CurBB->eraseFromParent();
82 Builder.ClearInsertionPoint();
83 }
Reid Spencer5f016e22007-07-11 17:01:13 +000084 }
85 break;
Daniel Dunbar0ffb1252008-08-04 16:51:22 +000086 case Stmt::IndirectGotoStmtClass:
87 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break;
Reid Spencer5f016e22007-07-11 17:01:13 +000088
89 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
90 case Stmt::WhileStmtClass: EmitWhileStmt(cast<WhileStmt>(*S)); break;
91 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break;
92 case Stmt::ForStmtClass: EmitForStmt(cast<ForStmt>(*S)); break;
93
94 case Stmt::ReturnStmtClass: EmitReturnStmt(cast<ReturnStmt>(*S)); break;
Daniel Dunbara4275d12008-10-02 18:02:06 +000095
Devang Patel51b09f22007-10-04 23:45:31 +000096 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000097 case Stmt::AsmStmtClass: EmitAsmStmt(cast<AsmStmt>(*S)); break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000098
99 case Stmt::ObjCAtTryStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000100 EmitObjCAtTryStmt(cast<ObjCAtTryStmt>(*S));
101 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000102 case Stmt::ObjCAtCatchStmtClass:
Anders Carlssondde0a942008-09-11 09:15:33 +0000103 assert(0 && "@catch statements should be handled by EmitObjCAtTryStmt");
104 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000105 case Stmt::ObjCAtFinallyStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000106 assert(0 && "@finally statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000107 break;
108 case Stmt::ObjCAtThrowStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000109 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000110 break;
111 case Stmt::ObjCAtSynchronizedStmtClass:
Chris Lattner10cac6f2008-11-15 21:26:17 +0000112 EmitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000113 break;
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000114 case Stmt::ObjCForCollectionStmtClass:
115 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000116 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000117 }
118}
119
Daniel Dunbar09124252008-11-12 08:21:33 +0000120bool CodeGenFunction::EmitSimpleStmt(const Stmt *S) {
121 switch (S->getStmtClass()) {
122 default: return false;
123 case Stmt::NullStmtClass: break;
124 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
Daniel Dunbard286f052009-07-19 06:58:07 +0000125 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
Daniel Dunbar09124252008-11-12 08:21:33 +0000126 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break;
127 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break;
128 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
129 case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break;
130 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break;
131 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
132 }
133
134 return true;
135}
136
Chris Lattner33793202007-08-31 22:09:40 +0000137/// EmitCompoundStmt - Emit a compound statement {..} node. If GetLast is true,
138/// this captures the expression result of the last sub-statement and returns it
139/// (for use by the statement expression extension).
Chris Lattner9b655512007-08-31 22:49:20 +0000140RValue CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
141 llvm::Value *AggLoc, bool isAggVol) {
Chris Lattner7d22bf02009-03-05 08:04:57 +0000142 PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),S.getLBracLoc(),
143 "LLVM IR generation of compound statement ('{}')");
144
Anders Carlssone896d982009-02-13 08:11:52 +0000145 CGDebugInfo *DI = getDebugInfo();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000146 if (DI) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000147 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000148 DI->setLocation(S.getLBracLoc());
Chris Lattnerdcd808c2009-05-04 18:27:04 +0000149 // FIXME: The llvm backend is currently not ready to deal with region_end
150 // for block scoping. In the presence of always_inline functions it gets so
151 // confused that it doesn't emit any debug info. Just disable this for now.
152 //DI->EmitRegionStart(CurFn, Builder);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000153 }
154
Anders Carlssonc71c8452009-02-07 23:50:39 +0000155 // Keep track of the current cleanup stack depth.
156 size_t CleanupStackDepth = CleanupEntries.size();
Anders Carlsson74331892009-02-09 20:23:40 +0000157 bool OldDidCallStackSave = DidCallStackSave;
Anders Carlsson66b41512009-02-22 18:44:21 +0000158 DidCallStackSave = false;
Anders Carlsson74331892009-02-09 20:23:40 +0000159
Chris Lattner33793202007-08-31 22:09:40 +0000160 for (CompoundStmt::const_body_iterator I = S.body_begin(),
161 E = S.body_end()-GetLast; I != E; ++I)
Reid Spencer5f016e22007-07-11 17:01:13 +0000162 EmitStmt(*I);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000163
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000164 if (DI) {
Daniel Dunbara448fb22008-11-11 23:11:34 +0000165 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000166 DI->setLocation(S.getRBracLoc());
Chris Lattnerdcd808c2009-05-04 18:27:04 +0000167
168 // FIXME: The llvm backend is currently not ready to deal with region_end
169 // for block scoping. In the presence of always_inline functions it gets so
170 // confused that it doesn't emit any debug info. Just disable this for now.
171 //DI->EmitRegionEnd(CurFn, Builder);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000172 }
173
Anders Carlsson17d28a32008-12-12 05:52:00 +0000174 RValue RV;
175 if (!GetLast)
176 RV = RValue::get(0);
177 else {
178 // We have to special case labels here. They are statements, but when put
179 // at the end of a statement expression, they yield the value of their
180 // subexpression. Handle this by walking through all labels we encounter,
181 // emitting them before we evaluate the subexpr.
182 const Stmt *LastStmt = S.body_back();
183 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
184 EmitLabel(*LS);
185 LastStmt = LS->getSubStmt();
186 }
Chris Lattner9b655512007-08-31 22:49:20 +0000187
Anders Carlsson17d28a32008-12-12 05:52:00 +0000188 EnsureInsertPoint();
189
190 RV = EmitAnyExpr(cast<Expr>(LastStmt), AggLoc);
191 }
192
Anders Carlsson74331892009-02-09 20:23:40 +0000193 DidCallStackSave = OldDidCallStackSave;
194
Anders Carlssonc71c8452009-02-07 23:50:39 +0000195 EmitCleanupBlocks(CleanupStackDepth);
196
Anders Carlsson17d28a32008-12-12 05:52:00 +0000197 return RV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000198}
199
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000200void CodeGenFunction::SimplifyForwardingBlocks(llvm::BasicBlock *BB) {
201 llvm::BranchInst *BI = dyn_cast<llvm::BranchInst>(BB->getTerminator());
202
203 // If there is a cleanup stack, then we it isn't worth trying to
204 // simplify this block (we would need to remove it from the scope map
205 // and cleanup entry).
206 if (!CleanupEntries.empty())
207 return;
208
209 // Can only simplify direct branches.
210 if (!BI || !BI->isUnconditional())
211 return;
212
213 BB->replaceAllUsesWith(BI->getSuccessor(0));
214 BI->eraseFromParent();
215 BB->eraseFromParent();
216}
217
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000218void CodeGenFunction::EmitBlock(llvm::BasicBlock *BB, bool IsFinished) {
Daniel Dunbard57a8712008-11-11 09:41:28 +0000219 // Fall out of the current block (if necessary).
220 EmitBranch(BB);
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000221
222 if (IsFinished && BB->use_empty()) {
223 delete BB;
224 return;
225 }
226
Anders Carlssonbd6fa3d2009-02-08 00:16:35 +0000227 // If necessary, associate the block with the cleanup stack size.
228 if (!CleanupEntries.empty()) {
Anders Carlsson22ab8d82009-02-10 22:50:24 +0000229 // Check if the basic block has already been inserted.
230 BlockScopeMap::iterator I = BlockScopes.find(BB);
231 if (I != BlockScopes.end()) {
232 assert(I->second == CleanupEntries.size() - 1);
233 } else {
234 BlockScopes[BB] = CleanupEntries.size() - 1;
235 CleanupEntries.back().Blocks.push_back(BB);
236 }
Anders Carlssonbd6fa3d2009-02-08 00:16:35 +0000237 }
238
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 CurFn->getBasicBlockList().push_back(BB);
240 Builder.SetInsertPoint(BB);
241}
242
Daniel Dunbard57a8712008-11-11 09:41:28 +0000243void CodeGenFunction::EmitBranch(llvm::BasicBlock *Target) {
244 // Emit a branch from the current block to the target one if this
245 // was a real block. If this was just a fall-through block after a
246 // terminator, don't emit it.
247 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
248
249 if (!CurBB || CurBB->getTerminator()) {
250 // If there is no insert point or the previous block is already
251 // terminated, don't touch it.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000252 } else {
253 // Otherwise, create a fall-through branch.
254 Builder.CreateBr(Target);
255 }
Daniel Dunbar5e08ad32008-11-11 22:06:59 +0000256
257 Builder.ClearInsertionPoint();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000258}
259
Mike Stumpec9771d2009-02-08 09:22:19 +0000260void CodeGenFunction::EmitLabel(const LabelStmt &S) {
Anders Carlssonfa1f7562009-02-10 06:07:49 +0000261 EmitBlock(getBasicBlockForLabel(&S));
Chris Lattner91d723d2008-07-26 20:23:23 +0000262}
263
264
265void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
266 EmitLabel(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000267 EmitStmt(S.getSubStmt());
268}
269
270void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000271 // If this code is reachable then emit a stop point (if generating
272 // debug info). We have to do this ourselves because we are on the
273 // "simple" statement path.
274 if (HaveInsertPoint())
275 EmitStopPoint(&S);
Mike Stump36a2ada2009-02-07 12:52:26 +0000276
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000277 EmitBranchThroughCleanup(getBasicBlockForLabel(S.getLabel()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000278}
279
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000280void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) {
281 // Emit initial switch which will be patched up later by
282 // EmitIndirectSwitches(). We need a default dest, so we use the
283 // current BB, but this is overwritten.
284 llvm::Value *V = Builder.CreatePtrToInt(EmitScalarExpr(S.getTarget()),
285 llvm::Type::Int32Ty,
286 "addr");
287 llvm::SwitchInst *I = Builder.CreateSwitch(V, Builder.GetInsertBlock());
288 IndirectSwitches.push_back(I);
289
Daniel Dunbara448fb22008-11-11 23:11:34 +0000290 // Clear the insertion point to indicate we are in unreachable code.
291 Builder.ClearInsertionPoint();
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000292}
293
Chris Lattner62b72f62008-11-11 07:24:28 +0000294void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000295 // C99 6.8.4.1: The first substatement is executed if the expression compares
296 // unequal to 0. The condition must be a scalar type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000297
Chris Lattner9bc47e22008-11-12 07:46:33 +0000298 // If the condition constant folds and can be elided, try to avoid emitting
299 // the condition and the dead arm of the if/else.
Chris Lattner31a09842008-11-12 08:04:58 +0000300 if (int Cond = ConstantFoldsToSimpleInteger(S.getCond())) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000301 // Figure out which block (then or else) is executed.
302 const Stmt *Executed = S.getThen(), *Skipped = S.getElse();
Chris Lattner9bc47e22008-11-12 07:46:33 +0000303 if (Cond == -1) // Condition false?
Chris Lattner62b72f62008-11-11 07:24:28 +0000304 std::swap(Executed, Skipped);
Chris Lattner9bc47e22008-11-12 07:46:33 +0000305
Chris Lattner62b72f62008-11-11 07:24:28 +0000306 // If the skipped block has no labels in it, just emit the executed block.
307 // This avoids emitting dead code and simplifies the CFG substantially.
Chris Lattner9bc47e22008-11-12 07:46:33 +0000308 if (!ContainsLabel(Skipped)) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000309 if (Executed)
310 EmitStmt(Executed);
311 return;
312 }
313 }
Chris Lattner9bc47e22008-11-12 07:46:33 +0000314
315 // Otherwise, the condition did not fold, or we couldn't elide it. Just emit
316 // the conditional branch.
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000317 llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
318 llvm::BasicBlock *ContBlock = createBasicBlock("if.end");
319 llvm::BasicBlock *ElseBlock = ContBlock;
Reid Spencer5f016e22007-07-11 17:01:13 +0000320 if (S.getElse())
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000321 ElseBlock = createBasicBlock("if.else");
322 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000323
324 // Emit the 'then' code.
325 EmitBlock(ThenBlock);
326 EmitStmt(S.getThen());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000327 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000328
329 // Emit the 'else' code if present.
330 if (const Stmt *Else = S.getElse()) {
331 EmitBlock(ElseBlock);
332 EmitStmt(Else);
Daniel Dunbard57a8712008-11-11 09:41:28 +0000333 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 }
335
336 // Emit the continuation block for code after the if.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000337 EmitBlock(ContBlock, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000338}
339
340void CodeGenFunction::EmitWhileStmt(const WhileStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000341 // Emit the header for the loop, insert it, which will create an uncond br to
342 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000343 llvm::BasicBlock *LoopHeader = createBasicBlock("while.cond");
Reid Spencer5f016e22007-07-11 17:01:13 +0000344 EmitBlock(LoopHeader);
Mike Stump72cac2c2009-02-07 18:08:12 +0000345
346 // Create an exit block for when the condition fails, create a block for the
347 // body of the loop.
348 llvm::BasicBlock *ExitBlock = createBasicBlock("while.end");
349 llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
350
351 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000352 BreakContinueStack.push_back(BreakContinue(ExitBlock, LoopHeader));
Reid Spencer5f016e22007-07-11 17:01:13 +0000353
Mike Stump16b16202009-02-07 17:18:33 +0000354 // Evaluate the conditional in the while header. C99 6.8.5.1: The
355 // evaluation of the controlling expression takes place before each
356 // execution of the loop body.
Reid Spencer5f016e22007-07-11 17:01:13 +0000357 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel2c30d8f2007-10-09 20:51:27 +0000358
359 // while(1) is common, avoid extra exit blocks. Be sure
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 // to correctly handle break/continue though.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000361 bool EmitBoolCondBranch = true;
362 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
363 if (C->isOne())
364 EmitBoolCondBranch = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000365
Reid Spencer5f016e22007-07-11 17:01:13 +0000366 // As long as the condition is true, go to the loop body.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000367 if (EmitBoolCondBranch)
368 Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock);
Chris Lattner31a09842008-11-12 08:04:58 +0000369
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 // Emit the loop body.
371 EmitBlock(LoopBody);
372 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000373
Anders Carlssone4b6d342009-02-10 05:52:02 +0000374 BreakContinueStack.pop_back();
Reid Spencer5f016e22007-07-11 17:01:13 +0000375
376 // Cycle to the condition.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000377 EmitBranch(LoopHeader);
Reid Spencer5f016e22007-07-11 17:01:13 +0000378
379 // Emit the exit block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000380 EmitBlock(ExitBlock, true);
Devang Patel2c30d8f2007-10-09 20:51:27 +0000381
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000382 // The LoopHeader typically is just a branch if we skipped emitting
383 // a branch, try to erase it.
384 if (!EmitBoolCondBranch)
385 SimplifyForwardingBlocks(LoopHeader);
Reid Spencer5f016e22007-07-11 17:01:13 +0000386}
387
388void CodeGenFunction::EmitDoStmt(const DoStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000389 // Emit the body for the loop, insert it, which will create an uncond br to
390 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000391 llvm::BasicBlock *LoopBody = createBasicBlock("do.body");
392 llvm::BasicBlock *AfterDo = createBasicBlock("do.end");
Reid Spencer5f016e22007-07-11 17:01:13 +0000393 EmitBlock(LoopBody);
Chris Lattnerda138702007-07-16 21:28:45 +0000394
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000395 llvm::BasicBlock *DoCond = createBasicBlock("do.cond");
Chris Lattnerda138702007-07-16 21:28:45 +0000396
397 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000398 BreakContinueStack.push_back(BreakContinue(AfterDo, DoCond));
Reid Spencer5f016e22007-07-11 17:01:13 +0000399
400 // Emit the body of the loop into the block.
401 EmitStmt(S.getBody());
402
Anders Carlssone4b6d342009-02-10 05:52:02 +0000403 BreakContinueStack.pop_back();
Chris Lattnerda138702007-07-16 21:28:45 +0000404
405 EmitBlock(DoCond);
406
Reid Spencer5f016e22007-07-11 17:01:13 +0000407 // C99 6.8.5.2: "The evaluation of the controlling expression takes place
408 // after each execution of the loop body."
409
410 // Evaluate the conditional in the while header.
411 // C99 6.8.5p2/p4: The first substatement is executed if the expression
412 // compares unequal to 0. The condition must be a scalar type.
413 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000414
415 // "do {} while (0)" is common in macros, avoid extra blocks. Be sure
416 // to correctly handle break/continue though.
417 bool EmitBoolCondBranch = true;
418 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
419 if (C->isZero())
420 EmitBoolCondBranch = false;
421
Reid Spencer5f016e22007-07-11 17:01:13 +0000422 // As long as the condition is true, iterate the loop.
Devang Patel05f6e6b2007-10-09 20:33:39 +0000423 if (EmitBoolCondBranch)
424 Builder.CreateCondBr(BoolCondVal, LoopBody, AfterDo);
Reid Spencer5f016e22007-07-11 17:01:13 +0000425
426 // Emit the exit block.
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000427 EmitBlock(AfterDo);
Devang Patel05f6e6b2007-10-09 20:33:39 +0000428
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000429 // The DoCond block typically is just a branch if we skipped
430 // emitting a branch, try to erase it.
431 if (!EmitBoolCondBranch)
432 SimplifyForwardingBlocks(DoCond);
Reid Spencer5f016e22007-07-11 17:01:13 +0000433}
434
435void CodeGenFunction::EmitForStmt(const ForStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000436 // FIXME: What do we do if the increment (f.e.) contains a stmt expression,
437 // which contains a continue/break?
Chris Lattnerda138702007-07-16 21:28:45 +0000438
Reid Spencer5f016e22007-07-11 17:01:13 +0000439 // Evaluate the first part before the loop.
440 if (S.getInit())
441 EmitStmt(S.getInit());
442
443 // Start the loop with a block that tests the condition.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000444 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
445 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Chris Lattnerda138702007-07-16 21:28:45 +0000446
Reid Spencer5f016e22007-07-11 17:01:13 +0000447 EmitBlock(CondBlock);
448
Mike Stump20926c62009-02-07 20:14:12 +0000449 // Evaluate the condition if present. If not, treat it as a
450 // non-zero-constant according to 6.8.5.3p2, aka, true.
Reid Spencer5f016e22007-07-11 17:01:13 +0000451 if (S.getCond()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000452 // As long as the condition is true, iterate the loop.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000453 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Chris Lattner31a09842008-11-12 08:04:58 +0000454
455 // C99 6.8.5p2/p4: The first substatement is executed if the expression
456 // compares unequal to 0. The condition must be a scalar type.
457 EmitBranchOnBoolExpr(S.getCond(), ForBody, AfterFor);
458
Reid Spencer5f016e22007-07-11 17:01:13 +0000459 EmitBlock(ForBody);
460 } else {
461 // Treat it as a non-zero constant. Don't even create a new block for the
462 // body, just fall into it.
463 }
464
Chris Lattnerda138702007-07-16 21:28:45 +0000465 // If the for loop doesn't have an increment we can just use the
466 // condition as the continue block.
467 llvm::BasicBlock *ContinueBlock;
468 if (S.getInc())
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000469 ContinueBlock = createBasicBlock("for.inc");
Chris Lattnerda138702007-07-16 21:28:45 +0000470 else
471 ContinueBlock = CondBlock;
472
473 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000474 BreakContinueStack.push_back(BreakContinue(AfterFor, ContinueBlock));
Mike Stump3e9da662009-02-07 23:02:10 +0000475
Reid Spencer5f016e22007-07-11 17:01:13 +0000476 // If the condition is true, execute the body of the for stmt.
477 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000478
Anders Carlssone4b6d342009-02-10 05:52:02 +0000479 BreakContinueStack.pop_back();
Chris Lattnerda138702007-07-16 21:28:45 +0000480
Reid Spencer5f016e22007-07-11 17:01:13 +0000481 // If there is an increment, emit it next.
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000482 if (S.getInc()) {
483 EmitBlock(ContinueBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000484 EmitStmt(S.getInc());
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000485 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000486
487 // Finally, branch back up to the condition for the next iteration.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000488 EmitBranch(CondBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000489
Chris Lattnerda138702007-07-16 21:28:45 +0000490 // Emit the fall-through block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000491 EmitBlock(AfterFor, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000492}
493
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000494void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
495 if (RV.isScalar()) {
496 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
497 } else if (RV.isAggregate()) {
498 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
499 } else {
500 StoreComplexToAddr(RV.getComplexVal(), ReturnValue, false);
501 }
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000502 EmitBranchThroughCleanup(ReturnBlock);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000503}
504
Reid Spencer5f016e22007-07-11 17:01:13 +0000505/// EmitReturnStmt - Note that due to GCC extensions, this can have an operand
506/// if the function returns void, or may be missing one if the function returns
507/// non-void. Fun stuff :).
508void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000509 // Emit the result value, even if unused, to evalute the side effects.
510 const Expr *RV = S.getRetValue();
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000511
512 // FIXME: Clean this up by using an LValue for ReturnTemp,
513 // EmitStoreThroughLValue, and EmitAnyExpr.
514 if (!ReturnValue) {
515 // Make sure not to return anything, but evaluate the expression
516 // for side effects.
517 if (RV)
Eli Friedman144ac612008-05-22 01:22:33 +0000518 EmitAnyExpr(RV);
Reid Spencer5f016e22007-07-11 17:01:13 +0000519 } else if (RV == 0) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000520 // Do nothing (return value is left uninitialized)
Eli Friedmand54b6ac2009-05-27 04:56:12 +0000521 } else if (FnRetTy->isReferenceType()) {
522 // If this function returns a reference, take the address of the expression
523 // rather than the value.
524 Builder.CreateStore(EmitLValue(RV).getAddress(), ReturnValue);
Chris Lattner4b0029d2007-08-26 07:14:44 +0000525 } else if (!hasAggregateLLVMType(RV->getType())) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000526 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
Chris Lattner9b2dc282008-04-04 16:54:41 +0000527 } else if (RV->getType()->isAnyComplexType()) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000528 EmitComplexExprIntoAddr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000529 } else {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000530 EmitAggExpr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000531 }
Eli Friedman144ac612008-05-22 01:22:33 +0000532
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000533 EmitBranchThroughCleanup(ReturnBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000534}
535
536void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
Daniel Dunbar25b6ebf2009-07-19 07:03:11 +0000537 // As long as debug info is modeled with instructions, we have to ensure we
538 // have a place to insert here and write the stop point here.
539 if (getDebugInfo()) {
540 EnsureInsertPoint();
541 EmitStopPoint(&S);
542 }
543
Ted Kremeneke4ea1f42008-10-06 18:42:27 +0000544 for (DeclStmt::const_decl_iterator I = S.decl_begin(), E = S.decl_end();
545 I != E; ++I)
546 EmitDecl(**I);
Chris Lattner6fa5f092007-07-12 15:43:07 +0000547}
Chris Lattnerda138702007-07-16 21:28:45 +0000548
Daniel Dunbar09124252008-11-12 08:21:33 +0000549void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000550 assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
551
Daniel Dunbar09124252008-11-12 08:21:33 +0000552 // If this code is reachable then emit a stop point (if generating
553 // debug info). We have to do this ourselves because we are on the
554 // "simple" statement path.
555 if (HaveInsertPoint())
556 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +0000557
Chris Lattnerda138702007-07-16 21:28:45 +0000558 llvm::BasicBlock *Block = BreakContinueStack.back().BreakBlock;
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000559 EmitBranchThroughCleanup(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000560}
561
Daniel Dunbar09124252008-11-12 08:21:33 +0000562void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000563 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
564
Daniel Dunbar09124252008-11-12 08:21:33 +0000565 // If this code is reachable then emit a stop point (if generating
566 // debug info). We have to do this ourselves because we are on the
567 // "simple" statement path.
568 if (HaveInsertPoint())
569 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +0000570
Chris Lattnerda138702007-07-16 21:28:45 +0000571 llvm::BasicBlock *Block = BreakContinueStack.back().ContinueBlock;
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000572 EmitBranchThroughCleanup(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000573}
Devang Patel51b09f22007-10-04 23:45:31 +0000574
Devang Patelc049e4f2007-10-08 20:57:48 +0000575/// EmitCaseStmtRange - If case statement range is not too big then
576/// add multiple cases to switch instruction, one for each value within
577/// the range. If range is too big then emit "if" condition check.
578void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000579 assert(S.getRHS() && "Expected RHS value in CaseStmt");
Devang Patelc049e4f2007-10-08 20:57:48 +0000580
Anders Carlsson51fe9962008-11-22 21:04:56 +0000581 llvm::APSInt LHS = S.getLHS()->EvaluateAsInt(getContext());
582 llvm::APSInt RHS = S.getRHS()->EvaluateAsInt(getContext());
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000583
Daniel Dunbar16f23572008-07-25 01:11:38 +0000584 // Emit the code for this case. We do this first to make sure it is
585 // properly chained from our predecessor before generating the
586 // switch machinery to enter this block.
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000587 EmitBlock(createBasicBlock("sw.bb"));
Daniel Dunbar16f23572008-07-25 01:11:38 +0000588 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
589 EmitStmt(S.getSubStmt());
590
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000591 // If range is empty, do nothing.
592 if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))
593 return;
Devang Patelc049e4f2007-10-08 20:57:48 +0000594
595 llvm::APInt Range = RHS - LHS;
Daniel Dunbar16f23572008-07-25 01:11:38 +0000596 // FIXME: parameters such as this should not be hardcoded.
Devang Patelc049e4f2007-10-08 20:57:48 +0000597 if (Range.ult(llvm::APInt(Range.getBitWidth(), 64))) {
598 // Range is small enough to add multiple switch instruction cases.
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000599 for (unsigned i = 0, e = Range.getZExtValue() + 1; i != e; ++i) {
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000600 SwitchInsn->addCase(llvm::ConstantInt::get(VMContext, LHS), CaseDest);
Devang Patel2d79d0f2007-10-05 20:54:07 +0000601 LHS++;
602 }
Devang Patelc049e4f2007-10-08 20:57:48 +0000603 return;
604 }
605
Daniel Dunbar16f23572008-07-25 01:11:38 +0000606 // The range is too big. Emit "if" condition into a new block,
607 // making sure to save and restore the current insertion point.
608 llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
Devang Patel2d79d0f2007-10-05 20:54:07 +0000609
Daniel Dunbar16f23572008-07-25 01:11:38 +0000610 // Push this test onto the chain of range checks (which terminates
611 // in the default basic block). The switch's default will be changed
612 // to the top of this chain after switch emission is complete.
613 llvm::BasicBlock *FalseDest = CaseRangeBlock;
Daniel Dunbar55e87422008-11-11 02:29:29 +0000614 CaseRangeBlock = createBasicBlock("sw.caserange");
Devang Patelc049e4f2007-10-08 20:57:48 +0000615
Daniel Dunbar16f23572008-07-25 01:11:38 +0000616 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
617 Builder.SetInsertPoint(CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000618
619 // Emit range check.
620 llvm::Value *Diff =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000621 Builder.CreateSub(SwitchInsn->getCondition(),
622 llvm::ConstantInt::get(VMContext, LHS), "tmp");
Devang Patelc049e4f2007-10-08 20:57:48 +0000623 llvm::Value *Cond =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000624 Builder.CreateICmpULE(Diff,
625 llvm::ConstantInt::get(VMContext, Range), "tmp");
Devang Patelc049e4f2007-10-08 20:57:48 +0000626 Builder.CreateCondBr(Cond, CaseDest, FalseDest);
627
Daniel Dunbar16f23572008-07-25 01:11:38 +0000628 // Restore the appropriate insertion point.
Daniel Dunbara448fb22008-11-11 23:11:34 +0000629 if (RestoreBB)
630 Builder.SetInsertPoint(RestoreBB);
631 else
632 Builder.ClearInsertionPoint();
Devang Patelc049e4f2007-10-08 20:57:48 +0000633}
634
635void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
636 if (S.getRHS()) {
637 EmitCaseStmtRange(S);
638 return;
639 }
640
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000641 EmitBlock(createBasicBlock("sw.bb"));
Devang Patelc049e4f2007-10-08 20:57:48 +0000642 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
Anders Carlsson51fe9962008-11-22 21:04:56 +0000643 llvm::APSInt CaseVal = S.getLHS()->EvaluateAsInt(getContext());
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000644 SwitchInsn->addCase(llvm::ConstantInt::get(VMContext, CaseVal), CaseDest);
Chris Lattner5512f282009-03-04 04:46:18 +0000645
646 // Recursively emitting the statement is acceptable, but is not wonderful for
647 // code where we have many case statements nested together, i.e.:
648 // case 1:
649 // case 2:
650 // case 3: etc.
651 // Handling this recursively will create a new block for each case statement
652 // that falls through to the next case which is IR intensive. It also causes
653 // deep recursion which can run into stack depth limitations. Handle
654 // sequential non-range case statements specially.
655 const CaseStmt *CurCase = &S;
656 const CaseStmt *NextCase = dyn_cast<CaseStmt>(S.getSubStmt());
657
658 // Otherwise, iteratively add consequtive cases to this switch stmt.
659 while (NextCase && NextCase->getRHS() == 0) {
660 CurCase = NextCase;
661 CaseVal = CurCase->getLHS()->EvaluateAsInt(getContext());
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000662 SwitchInsn->addCase(llvm::ConstantInt::get(VMContext, CaseVal), CaseDest);
Chris Lattner5512f282009-03-04 04:46:18 +0000663
664 NextCase = dyn_cast<CaseStmt>(CurCase->getSubStmt());
665 }
666
667 // Normal default recursion for non-cases.
668 EmitStmt(CurCase->getSubStmt());
Devang Patel51b09f22007-10-04 23:45:31 +0000669}
670
671void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
Daniel Dunbar16f23572008-07-25 01:11:38 +0000672 llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
Daniel Dunbar55e87422008-11-11 02:29:29 +0000673 assert(DefaultBlock->empty() &&
674 "EmitDefaultStmt: Default block already defined?");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000675 EmitBlock(DefaultBlock);
Devang Patel51b09f22007-10-04 23:45:31 +0000676 EmitStmt(S.getSubStmt());
677}
678
679void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
680 llvm::Value *CondV = EmitScalarExpr(S.getCond());
681
682 // Handle nested switch statements.
683 llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000684 llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000685
Daniel Dunbar16f23572008-07-25 01:11:38 +0000686 // Create basic block to hold stuff that comes after switch
687 // statement. We also need to create a default block now so that
688 // explicit case ranges tests can have a place to jump to on
689 // failure.
Daniel Dunbar55e87422008-11-11 02:29:29 +0000690 llvm::BasicBlock *NextBlock = createBasicBlock("sw.epilog");
691 llvm::BasicBlock *DefaultBlock = createBasicBlock("sw.default");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000692 SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
693 CaseRangeBlock = DefaultBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000694
Daniel Dunbar09124252008-11-12 08:21:33 +0000695 // Clear the insertion point to indicate we are in unreachable code.
696 Builder.ClearInsertionPoint();
Eli Friedmand28a80d2008-05-12 16:08:04 +0000697
Devang Patele9b8c0a2007-10-30 20:59:40 +0000698 // All break statements jump to NextBlock. If BreakContinueStack is non empty
699 // then reuse last ContinueBlock.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000700 llvm::BasicBlock *ContinueBlock = 0;
701 if (!BreakContinueStack.empty())
Devang Patel51b09f22007-10-04 23:45:31 +0000702 ContinueBlock = BreakContinueStack.back().ContinueBlock;
Anders Carlssone4b6d342009-02-10 05:52:02 +0000703
Mike Stump3e9da662009-02-07 23:02:10 +0000704 // Ensure any vlas created between there and here, are undone
Anders Carlssone4b6d342009-02-10 05:52:02 +0000705 BreakContinueStack.push_back(BreakContinue(NextBlock, ContinueBlock));
Devang Patel51b09f22007-10-04 23:45:31 +0000706
707 // Emit switch body.
708 EmitStmt(S.getBody());
Anders Carlssone4b6d342009-02-10 05:52:02 +0000709
710 BreakContinueStack.pop_back();
Devang Patel51b09f22007-10-04 23:45:31 +0000711
Daniel Dunbar16f23572008-07-25 01:11:38 +0000712 // Update the default block in case explicit case range tests have
713 // been chained on top.
714 SwitchInsn->setSuccessor(0, CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000715
Daniel Dunbar16f23572008-07-25 01:11:38 +0000716 // If a default was never emitted then reroute any jumps to it and
717 // discard.
718 if (!DefaultBlock->getParent()) {
719 DefaultBlock->replaceAllUsesWith(NextBlock);
720 delete DefaultBlock;
721 }
Devang Patel51b09f22007-10-04 23:45:31 +0000722
Daniel Dunbar16f23572008-07-25 01:11:38 +0000723 // Emit continuation.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000724 EmitBlock(NextBlock, true);
Daniel Dunbar16f23572008-07-25 01:11:38 +0000725
Devang Patel51b09f22007-10-04 23:45:31 +0000726 SwitchInsn = SavedSwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000727 CaseRangeBlock = SavedCRBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000728}
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000729
Chris Lattner2819fa82009-04-26 17:57:12 +0000730static std::string
731SimplifyConstraint(const char *Constraint, TargetInfo &Target,
732 llvm::SmallVectorImpl<TargetInfo::ConstraintInfo> *OutCons=0) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000733 std::string Result;
734
735 while (*Constraint) {
736 switch (*Constraint) {
737 default:
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000738 Result += Target.convertConstraint(*Constraint);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000739 break;
740 // Ignore these
741 case '*':
742 case '?':
743 case '!':
744 break;
745 case 'g':
746 Result += "imr";
747 break;
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000748 case '[': {
Chris Lattner2819fa82009-04-26 17:57:12 +0000749 assert(OutCons &&
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000750 "Must pass output names to constraints with a symbolic name");
751 unsigned Index;
752 bool result = Target.resolveSymbolicName(Constraint,
Chris Lattner2819fa82009-04-26 17:57:12 +0000753 &(*OutCons)[0],
754 OutCons->size(), Index);
Chris Lattner53637652009-01-21 07:35:26 +0000755 assert(result && "Could not resolve symbolic name"); result=result;
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000756 Result += llvm::utostr(Index);
757 break;
758 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000759 }
760
761 Constraint++;
762 }
763
764 return Result;
765}
766
Anders Carlsson63471722009-01-11 19:32:54 +0000767llvm::Value* CodeGenFunction::EmitAsmInput(const AsmStmt &S,
Daniel Dunbarb84e8a62009-05-04 06:56:16 +0000768 const TargetInfo::ConstraintInfo &Info,
Anders Carlsson63471722009-01-11 19:32:54 +0000769 const Expr *InputExpr,
Chris Lattner63c8b142009-03-10 05:39:21 +0000770 std::string &ConstraintStr) {
Anders Carlsson63471722009-01-11 19:32:54 +0000771 llvm::Value *Arg;
Chris Lattner44def072009-04-26 07:16:29 +0000772 if (Info.allowsRegister() || !Info.allowsMemory()) {
Anders Carlssonebaae2a2009-01-12 02:22:13 +0000773 const llvm::Type *Ty = ConvertType(InputExpr->getType());
774
775 if (Ty->isSingleValueType()) {
Anders Carlsson63471722009-01-11 19:32:54 +0000776 Arg = EmitScalarExpr(InputExpr);
777 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000778 InputExpr = InputExpr->IgnoreParenNoopCasts(getContext());
Anders Carlssonebaae2a2009-01-12 02:22:13 +0000779 LValue Dest = EmitLValue(InputExpr);
780
781 uint64_t Size = CGM.getTargetData().getTypeSizeInBits(Ty);
782 if (Size <= 64 && llvm::isPowerOf2_64(Size)) {
783 Ty = llvm::IntegerType::get(Size);
784 Ty = llvm::PointerType::getUnqual(Ty);
785
786 Arg = Builder.CreateLoad(Builder.CreateBitCast(Dest.getAddress(), Ty));
787 } else {
788 Arg = Dest.getAddress();
789 ConstraintStr += '*';
790 }
Anders Carlsson63471722009-01-11 19:32:54 +0000791 }
792 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000793 InputExpr = InputExpr->IgnoreParenNoopCasts(getContext());
Anders Carlsson63471722009-01-11 19:32:54 +0000794 LValue Dest = EmitLValue(InputExpr);
795 Arg = Dest.getAddress();
796 ConstraintStr += '*';
797 }
798
799 return Arg;
800}
801
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000802void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
Chris Lattner458cd9c2009-03-10 23:21:44 +0000803 // Analyze the asm string to decompose it into its pieces. We know that Sema
804 // has already done this, so it is guaranteed to be successful.
805 llvm::SmallVector<AsmStmt::AsmStringPiece, 4> Pieces;
Chris Lattnerfb5058e2009-03-10 23:41:04 +0000806 unsigned DiagOffs;
807 S.AnalyzeAsmString(Pieces, getContext(), DiagOffs);
Chris Lattner458cd9c2009-03-10 23:21:44 +0000808
809 // Assemble the pieces into the final asm string.
810 std::string AsmString;
811 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
812 if (Pieces[i].isString())
813 AsmString += Pieces[i].getString();
814 else if (Pieces[i].getModifier() == '\0')
815 AsmString += '$' + llvm::utostr(Pieces[i].getOperandNo());
816 else
817 AsmString += "${" + llvm::utostr(Pieces[i].getOperandNo()) + ':' +
818 Pieces[i].getModifier() + '}';
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000819 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000820
Chris Lattner481fef92009-05-03 07:05:00 +0000821 // Get all the output and input constraints together.
822 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
823 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
824
825 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
826 TargetInfo::ConstraintInfo Info(S.getOutputConstraint(i),
827 S.getOutputName(i));
828 bool result = Target.validateOutputConstraint(Info);
829 assert(result && "Failed to parse output constraint"); result=result;
830 OutputConstraintInfos.push_back(Info);
831 }
832
833 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
834 TargetInfo::ConstraintInfo Info(S.getInputConstraint(i),
835 S.getInputName(i));
Jay Foadbeaaccd2009-05-21 09:52:38 +0000836 bool result = Target.validateInputConstraint(OutputConstraintInfos.data(),
Chris Lattner481fef92009-05-03 07:05:00 +0000837 S.getNumOutputs(),
838 Info); result=result;
839 assert(result && "Failed to parse input constraint");
840 InputConstraintInfos.push_back(Info);
841 }
842
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000843 std::string Constraints;
844
Chris Lattnerede9d902009-05-03 07:53:25 +0000845 std::vector<LValue> ResultRegDests;
846 std::vector<QualType> ResultRegQualTys;
Chris Lattnera077b5c2009-05-03 08:21:20 +0000847 std::vector<const llvm::Type *> ResultRegTypes;
848 std::vector<const llvm::Type *> ResultTruncRegTypes;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000849 std::vector<const llvm::Type*> ArgTypes;
850 std::vector<llvm::Value*> Args;
Anders Carlssonf39a4212008-02-05 20:01:53 +0000851
852 // Keep track of inout constraints.
853 std::string InOutConstraints;
854 std::vector<llvm::Value*> InOutArgs;
855 std::vector<const llvm::Type*> InOutArgTypes;
Anders Carlsson03eb5432009-01-27 20:38:24 +0000856
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000857 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
Chris Lattner481fef92009-05-03 07:05:00 +0000858 TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i];
Anders Carlsson03eb5432009-01-27 20:38:24 +0000859
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000860 // Simplify the output constraint.
Chris Lattner481fef92009-05-03 07:05:00 +0000861 std::string OutputConstraint(S.getOutputConstraint(i));
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000862 OutputConstraint = SimplifyConstraint(OutputConstraint.c_str() + 1, Target);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000863
Chris Lattner810f6d52009-03-13 17:38:01 +0000864 const Expr *OutExpr = S.getOutputExpr(i);
865 OutExpr = OutExpr->IgnoreParenNoopCasts(getContext());
866
867 LValue Dest = EmitLValue(OutExpr);
Chris Lattnerede9d902009-05-03 07:53:25 +0000868 if (!Constraints.empty())
Anders Carlssonbad3a942009-05-01 00:16:04 +0000869 Constraints += ',';
870
Chris Lattnera077b5c2009-05-03 08:21:20 +0000871 // If this is a register output, then make the inline asm return it
872 // by-value. If this is a memory result, return the value by-reference.
Chris Lattnerede9d902009-05-03 07:53:25 +0000873 if (!Info.allowsMemory() && !hasAggregateLLVMType(OutExpr->getType())) {
Chris Lattnera077b5c2009-05-03 08:21:20 +0000874 Constraints += "=" + OutputConstraint;
Chris Lattnerede9d902009-05-03 07:53:25 +0000875 ResultRegQualTys.push_back(OutExpr->getType());
876 ResultRegDests.push_back(Dest);
Chris Lattnera077b5c2009-05-03 08:21:20 +0000877 ResultRegTypes.push_back(ConvertTypeForMem(OutExpr->getType()));
878 ResultTruncRegTypes.push_back(ResultRegTypes.back());
879
880 // If this output is tied to an input, and if the input is larger, then
881 // we need to set the actual result type of the inline asm node to be the
882 // same as the input type.
883 if (Info.hasMatchingInput()) {
Chris Lattnerebfc9852009-05-03 08:38:58 +0000884 unsigned InputNo;
885 for (InputNo = 0; InputNo != S.getNumInputs(); ++InputNo) {
886 TargetInfo::ConstraintInfo &Input = InputConstraintInfos[InputNo];
887 if (Input.hasTiedOperand() &&
Chris Lattner0bdaa5b2009-05-03 09:05:53 +0000888 Input.getTiedOperand() == i)
Chris Lattnera077b5c2009-05-03 08:21:20 +0000889 break;
Chris Lattnerebfc9852009-05-03 08:38:58 +0000890 }
891 assert(InputNo != S.getNumInputs() && "Didn't find matching input!");
Chris Lattnera077b5c2009-05-03 08:21:20 +0000892
893 QualType InputTy = S.getInputExpr(InputNo)->getType();
894 QualType OutputTy = OutExpr->getType();
895
896 uint64_t InputSize = getContext().getTypeSize(InputTy);
897 if (getContext().getTypeSize(OutputTy) < InputSize) {
898 // Form the asm to return the value as a larger integer type.
899 ResultRegTypes.back() = llvm::IntegerType::get((unsigned)InputSize);
900 }
901 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000902 } else {
903 ArgTypes.push_back(Dest.getAddress()->getType());
Anders Carlssoncad3ab62008-02-05 16:57:38 +0000904 Args.push_back(Dest.getAddress());
Anders Carlssonf39a4212008-02-05 20:01:53 +0000905 Constraints += "=*";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000906 Constraints += OutputConstraint;
Anders Carlssonf39a4212008-02-05 20:01:53 +0000907 }
908
Chris Lattner44def072009-04-26 07:16:29 +0000909 if (Info.isReadWrite()) {
Anders Carlssonf39a4212008-02-05 20:01:53 +0000910 InOutConstraints += ',';
Anders Carlsson63471722009-01-11 19:32:54 +0000911
Anders Carlssonfca93612009-08-04 18:18:36 +0000912 const Expr *InputExpr = S.getOutputExpr(i);
913 llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, InOutConstraints);
914
Chris Lattner44def072009-04-26 07:16:29 +0000915 if (Info.allowsRegister())
Anders Carlsson9f2505b2009-01-11 21:23:27 +0000916 InOutConstraints += llvm::utostr(i);
917 else
918 InOutConstraints += OutputConstraint;
Anders Carlsson2763b3a2009-01-11 19:46:50 +0000919
Anders Carlssonfca93612009-08-04 18:18:36 +0000920 InOutArgTypes.push_back(Arg->getType());
921 InOutArgs.push_back(Arg);
Anders Carlssonf39a4212008-02-05 20:01:53 +0000922 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000923 }
924
925 unsigned NumConstraints = S.getNumOutputs() + S.getNumInputs();
926
927 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
928 const Expr *InputExpr = S.getInputExpr(i);
929
Chris Lattner481fef92009-05-03 07:05:00 +0000930 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
931
Chris Lattnerede9d902009-05-03 07:53:25 +0000932 if (!Constraints.empty())
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000933 Constraints += ',';
934
935 // Simplify the input constraint.
Chris Lattner481fef92009-05-03 07:05:00 +0000936 std::string InputConstraint(S.getInputConstraint(i));
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000937 InputConstraint = SimplifyConstraint(InputConstraint.c_str(), Target,
Chris Lattner2819fa82009-04-26 17:57:12 +0000938 &OutputConstraintInfos);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000939
Anders Carlsson63471722009-01-11 19:32:54 +0000940 llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, Constraints);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000941
Chris Lattner4df4ee02009-05-03 07:27:51 +0000942 // If this input argument is tied to a larger output result, extend the
943 // input to be the same size as the output. The LLVM backend wants to see
944 // the input and output of a matching constraint be the same size. Note
945 // that GCC does not define what the top bits are here. We use zext because
946 // that is usually cheaper, but LLVM IR should really get an anyext someday.
947 if (Info.hasTiedOperand()) {
948 unsigned Output = Info.getTiedOperand();
949 QualType OutputTy = S.getOutputExpr(Output)->getType();
950 QualType InputTy = InputExpr->getType();
951
952 if (getContext().getTypeSize(OutputTy) >
953 getContext().getTypeSize(InputTy)) {
954 // Use ptrtoint as appropriate so that we can do our extension.
955 if (isa<llvm::PointerType>(Arg->getType()))
956 Arg = Builder.CreatePtrToInt(Arg,
957 llvm::IntegerType::get(LLVMPointerWidth));
958 unsigned OutputSize = (unsigned)getContext().getTypeSize(OutputTy);
959 Arg = Builder.CreateZExt(Arg, llvm::IntegerType::get(OutputSize));
960 }
961 }
962
963
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000964 ArgTypes.push_back(Arg->getType());
965 Args.push_back(Arg);
966 Constraints += InputConstraint;
967 }
968
Anders Carlssonf39a4212008-02-05 20:01:53 +0000969 // Append the "input" part of inout constraints last.
970 for (unsigned i = 0, e = InOutArgs.size(); i != e; i++) {
971 ArgTypes.push_back(InOutArgTypes[i]);
972 Args.push_back(InOutArgs[i]);
973 }
974 Constraints += InOutConstraints;
975
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000976 // Clobbers
977 for (unsigned i = 0, e = S.getNumClobbers(); i != e; i++) {
978 std::string Clobber(S.getClobber(i)->getStrData(),
979 S.getClobber(i)->getByteLength());
980
981 Clobber = Target.getNormalizedGCCRegisterName(Clobber.c_str());
982
Anders Carlssonea041752008-02-06 00:11:32 +0000983 if (i != 0 || NumConstraints != 0)
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000984 Constraints += ',';
Anders Carlssonea041752008-02-06 00:11:32 +0000985
986 Constraints += "~{";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000987 Constraints += Clobber;
Anders Carlssonea041752008-02-06 00:11:32 +0000988 Constraints += '}';
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000989 }
990
991 // Add machine specific clobbers
Eli Friedmanccf614c2008-12-21 01:15:32 +0000992 std::string MachineClobbers = Target.getClobbers();
993 if (!MachineClobbers.empty()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000994 if (!Constraints.empty())
995 Constraints += ',';
Eli Friedmanccf614c2008-12-21 01:15:32 +0000996 Constraints += MachineClobbers;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000997 }
Anders Carlssonbad3a942009-05-01 00:16:04 +0000998
999 const llvm::Type *ResultType;
Chris Lattnera077b5c2009-05-03 08:21:20 +00001000 if (ResultRegTypes.empty())
Anders Carlssonbad3a942009-05-01 00:16:04 +00001001 ResultType = llvm::Type::VoidTy;
Chris Lattnera077b5c2009-05-03 08:21:20 +00001002 else if (ResultRegTypes.size() == 1)
1003 ResultType = ResultRegTypes[0];
Anders Carlssonbad3a942009-05-01 00:16:04 +00001004 else
Chris Lattnera077b5c2009-05-03 08:21:20 +00001005 ResultType = llvm::StructType::get(ResultRegTypes);
Anders Carlssonbad3a942009-05-01 00:16:04 +00001006
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001007 const llvm::FunctionType *FTy =
1008 llvm::FunctionType::get(ResultType, ArgTypes, false);
1009
1010 llvm::InlineAsm *IA =
1011 llvm::InlineAsm::get(FTy, AsmString, Constraints,
1012 S.isVolatile() || S.getNumOutputs() == 0);
Anders Carlssonbad3a942009-05-01 00:16:04 +00001013 llvm::CallInst *Result = Builder.CreateCall(IA, Args.begin(), Args.end());
Anders Carlssonbc0822b2009-03-02 19:58:15 +00001014 Result->addAttribute(~0, llvm::Attribute::NoUnwind);
1015
Chris Lattnera077b5c2009-05-03 08:21:20 +00001016
1017 // Extract all of the register value results from the asm.
1018 std::vector<llvm::Value*> RegResults;
1019 if (ResultRegTypes.size() == 1) {
1020 RegResults.push_back(Result);
Anders Carlssonbad3a942009-05-01 00:16:04 +00001021 } else {
Chris Lattnera077b5c2009-05-03 08:21:20 +00001022 for (unsigned i = 0, e = ResultRegTypes.size(); i != e; ++i) {
Anders Carlssonbad3a942009-05-01 00:16:04 +00001023 llvm::Value *Tmp = Builder.CreateExtractValue(Result, i, "asmresult");
Chris Lattnera077b5c2009-05-03 08:21:20 +00001024 RegResults.push_back(Tmp);
Anders Carlssonbad3a942009-05-01 00:16:04 +00001025 }
1026 }
Chris Lattnera077b5c2009-05-03 08:21:20 +00001027
1028 for (unsigned i = 0, e = RegResults.size(); i != e; ++i) {
1029 llvm::Value *Tmp = RegResults[i];
1030
1031 // If the result type of the LLVM IR asm doesn't match the result type of
1032 // the expression, do the conversion.
1033 if (ResultRegTypes[i] != ResultTruncRegTypes[i]) {
1034 const llvm::Type *TruncTy = ResultTruncRegTypes[i];
1035 // Truncate the integer result to the right size, note that
1036 // ResultTruncRegTypes can be a pointer.
1037 uint64_t ResSize = CGM.getTargetData().getTypeSizeInBits(TruncTy);
1038 Tmp = Builder.CreateTrunc(Tmp, llvm::IntegerType::get((unsigned)ResSize));
1039
1040 if (Tmp->getType() != TruncTy) {
1041 assert(isa<llvm::PointerType>(TruncTy));
1042 Tmp = Builder.CreateIntToPtr(Tmp, TruncTy);
1043 }
1044 }
1045
1046 EmitStoreThroughLValue(RValue::get(Tmp), ResultRegDests[i],
1047 ResultRegQualTys[i]);
1048 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001049}