blob: b67996c676307a8abfee37a6818442d08180220a [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 Dunbara448fb22008-11-11 23:11:34 +000046 // If we happen to be at an unreachable point just create a dummy
47 // basic block to hold the code. We could change parts of irgen to
48 // simply not generate this code, but this situation is rare and
49 // probably not worth the effort.
50 // FIXME: Verify previous performance/effort claim.
51 EnsureInsertPoint();
Reid Spencer5f016e22007-07-11 17:01:13 +000052
Daniel Dunbar09124252008-11-12 08:21:33 +000053 // Generate a stoppoint if we are emitting debug info.
54 EmitStopPoint(S);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000055
Reid Spencer5f016e22007-07-11 17:01:13 +000056 switch (S->getStmtClass()) {
57 default:
Chris Lattner1e4d21e2007-08-26 22:58:05 +000058 // Must be an expression in a stmt context. Emit the value (to get
59 // side-effects) and ignore the result.
Reid Spencer5f016e22007-07-11 17:01:13 +000060 if (const Expr *E = dyn_cast<Expr>(S)) {
Mike Stump49d1cd52009-05-26 22:03:21 +000061 EmitAnyExpr(E, 0, false, true);
Reid Spencer5f016e22007-07-11 17:01:13 +000062 } else {
Daniel Dunbar488e9932008-08-16 00:56:44 +000063 ErrorUnsupported(S, "statement");
Reid Spencer5f016e22007-07-11 17:01:13 +000064 }
65 break;
Daniel Dunbar0ffb1252008-08-04 16:51:22 +000066 case Stmt::IndirectGotoStmtClass:
67 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break;
Reid Spencer5f016e22007-07-11 17:01:13 +000068
69 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
70 case Stmt::WhileStmtClass: EmitWhileStmt(cast<WhileStmt>(*S)); break;
71 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break;
72 case Stmt::ForStmtClass: EmitForStmt(cast<ForStmt>(*S)); break;
73
74 case Stmt::ReturnStmtClass: EmitReturnStmt(cast<ReturnStmt>(*S)); break;
75 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
Daniel Dunbara4275d12008-10-02 18:02:06 +000076
Devang Patel51b09f22007-10-04 23:45:31 +000077 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000078 case Stmt::AsmStmtClass: EmitAsmStmt(cast<AsmStmt>(*S)); break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000079
80 case Stmt::ObjCAtTryStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000081 EmitObjCAtTryStmt(cast<ObjCAtTryStmt>(*S));
82 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000083 case Stmt::ObjCAtCatchStmtClass:
Anders Carlssondde0a942008-09-11 09:15:33 +000084 assert(0 && "@catch statements should be handled by EmitObjCAtTryStmt");
85 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000086 case Stmt::ObjCAtFinallyStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000087 assert(0 && "@finally statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +000088 break;
89 case Stmt::ObjCAtThrowStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000090 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000091 break;
92 case Stmt::ObjCAtSynchronizedStmtClass:
Chris Lattner10cac6f2008-11-15 21:26:17 +000093 EmitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000094 break;
Anders Carlsson3d8400d2008-08-30 19:51:14 +000095 case Stmt::ObjCForCollectionStmtClass:
96 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000097 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000098 }
99}
100
Daniel Dunbar09124252008-11-12 08:21:33 +0000101bool CodeGenFunction::EmitSimpleStmt(const Stmt *S) {
102 switch (S->getStmtClass()) {
103 default: return false;
104 case Stmt::NullStmtClass: break;
105 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
106 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break;
107 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break;
108 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
109 case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break;
110 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break;
111 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
112 }
113
114 return true;
115}
116
Chris Lattner33793202007-08-31 22:09:40 +0000117/// EmitCompoundStmt - Emit a compound statement {..} node. If GetLast is true,
118/// this captures the expression result of the last sub-statement and returns it
119/// (for use by the statement expression extension).
Chris Lattner9b655512007-08-31 22:49:20 +0000120RValue CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
121 llvm::Value *AggLoc, bool isAggVol) {
Chris Lattner7d22bf02009-03-05 08:04:57 +0000122 PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),S.getLBracLoc(),
123 "LLVM IR generation of compound statement ('{}')");
124
Anders Carlssone896d982009-02-13 08:11:52 +0000125 CGDebugInfo *DI = getDebugInfo();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000126 if (DI) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000127 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000128 DI->setLocation(S.getLBracLoc());
Chris Lattnerdcd808c2009-05-04 18:27:04 +0000129 // FIXME: The llvm backend is currently not ready to deal with region_end
130 // for block scoping. In the presence of always_inline functions it gets so
131 // confused that it doesn't emit any debug info. Just disable this for now.
132 //DI->EmitRegionStart(CurFn, Builder);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000133 }
134
Anders Carlssonc71c8452009-02-07 23:50:39 +0000135 // Keep track of the current cleanup stack depth.
136 size_t CleanupStackDepth = CleanupEntries.size();
Anders Carlsson74331892009-02-09 20:23:40 +0000137 bool OldDidCallStackSave = DidCallStackSave;
Anders Carlsson66b41512009-02-22 18:44:21 +0000138 DidCallStackSave = false;
Anders Carlsson74331892009-02-09 20:23:40 +0000139
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());
Chris Lattnerdcd808c2009-05-04 18:27:04 +0000147
148 // FIXME: The llvm backend is currently not ready to deal with region_end
149 // for block scoping. In the presence of always_inline functions it gets so
150 // confused that it doesn't emit any debug info. Just disable this for now.
151 //DI->EmitRegionEnd(CurFn, Builder);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000152 }
153
Anders Carlsson17d28a32008-12-12 05:52:00 +0000154 RValue RV;
155 if (!GetLast)
156 RV = RValue::get(0);
157 else {
158 // We have to special case labels here. They are statements, but when put
159 // at the end of a statement expression, they yield the value of their
160 // subexpression. Handle this by walking through all labels we encounter,
161 // emitting them before we evaluate the subexpr.
162 const Stmt *LastStmt = S.body_back();
163 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
164 EmitLabel(*LS);
165 LastStmt = LS->getSubStmt();
166 }
Chris Lattner9b655512007-08-31 22:49:20 +0000167
Anders Carlsson17d28a32008-12-12 05:52:00 +0000168 EnsureInsertPoint();
169
170 RV = EmitAnyExpr(cast<Expr>(LastStmt), AggLoc);
171 }
172
Anders Carlsson74331892009-02-09 20:23:40 +0000173 DidCallStackSave = OldDidCallStackSave;
174
Anders Carlssonc71c8452009-02-07 23:50:39 +0000175 EmitCleanupBlocks(CleanupStackDepth);
176
Anders Carlsson17d28a32008-12-12 05:52:00 +0000177 return RV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000178}
179
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000180void CodeGenFunction::SimplifyForwardingBlocks(llvm::BasicBlock *BB) {
181 llvm::BranchInst *BI = dyn_cast<llvm::BranchInst>(BB->getTerminator());
182
183 // If there is a cleanup stack, then we it isn't worth trying to
184 // simplify this block (we would need to remove it from the scope map
185 // and cleanup entry).
186 if (!CleanupEntries.empty())
187 return;
188
189 // Can only simplify direct branches.
190 if (!BI || !BI->isUnconditional())
191 return;
192
193 BB->replaceAllUsesWith(BI->getSuccessor(0));
194 BI->eraseFromParent();
195 BB->eraseFromParent();
196}
197
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000198void CodeGenFunction::EmitBlock(llvm::BasicBlock *BB, bool IsFinished) {
Daniel Dunbard57a8712008-11-11 09:41:28 +0000199 // Fall out of the current block (if necessary).
200 EmitBranch(BB);
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000201
202 if (IsFinished && BB->use_empty()) {
203 delete BB;
204 return;
205 }
206
Anders Carlssonbd6fa3d2009-02-08 00:16:35 +0000207 // If necessary, associate the block with the cleanup stack size.
208 if (!CleanupEntries.empty()) {
Anders Carlsson22ab8d82009-02-10 22:50:24 +0000209 // Check if the basic block has already been inserted.
210 BlockScopeMap::iterator I = BlockScopes.find(BB);
211 if (I != BlockScopes.end()) {
212 assert(I->second == CleanupEntries.size() - 1);
213 } else {
214 BlockScopes[BB] = CleanupEntries.size() - 1;
215 CleanupEntries.back().Blocks.push_back(BB);
216 }
Anders Carlssonbd6fa3d2009-02-08 00:16:35 +0000217 }
218
Reid Spencer5f016e22007-07-11 17:01:13 +0000219 CurFn->getBasicBlockList().push_back(BB);
220 Builder.SetInsertPoint(BB);
221}
222
Daniel Dunbard57a8712008-11-11 09:41:28 +0000223void CodeGenFunction::EmitBranch(llvm::BasicBlock *Target) {
224 // Emit a branch from the current block to the target one if this
225 // was a real block. If this was just a fall-through block after a
226 // terminator, don't emit it.
227 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
228
229 if (!CurBB || CurBB->getTerminator()) {
230 // If there is no insert point or the previous block is already
231 // terminated, don't touch it.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000232 } else {
233 // Otherwise, create a fall-through branch.
234 Builder.CreateBr(Target);
235 }
Daniel Dunbar5e08ad32008-11-11 22:06:59 +0000236
237 Builder.ClearInsertionPoint();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000238}
239
Mike Stumpec9771d2009-02-08 09:22:19 +0000240void CodeGenFunction::EmitLabel(const LabelStmt &S) {
Anders Carlssonfa1f7562009-02-10 06:07:49 +0000241 EmitBlock(getBasicBlockForLabel(&S));
Chris Lattner91d723d2008-07-26 20:23:23 +0000242}
243
244
245void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
246 EmitLabel(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 EmitStmt(S.getSubStmt());
248}
249
250void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000251 // If this code is reachable then emit a stop point (if generating
252 // debug info). We have to do this ourselves because we are on the
253 // "simple" statement path.
254 if (HaveInsertPoint())
255 EmitStopPoint(&S);
Mike Stump36a2ada2009-02-07 12:52:26 +0000256
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000257 EmitBranchThroughCleanup(getBasicBlockForLabel(S.getLabel()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000258}
259
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000260void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) {
261 // Emit initial switch which will be patched up later by
262 // EmitIndirectSwitches(). We need a default dest, so we use the
263 // current BB, but this is overwritten.
264 llvm::Value *V = Builder.CreatePtrToInt(EmitScalarExpr(S.getTarget()),
265 llvm::Type::Int32Ty,
266 "addr");
267 llvm::SwitchInst *I = Builder.CreateSwitch(V, Builder.GetInsertBlock());
268 IndirectSwitches.push_back(I);
269
Daniel Dunbara448fb22008-11-11 23:11:34 +0000270 // Clear the insertion point to indicate we are in unreachable code.
271 Builder.ClearInsertionPoint();
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000272}
273
Chris Lattner62b72f62008-11-11 07:24:28 +0000274void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000275 // C99 6.8.4.1: The first substatement is executed if the expression compares
276 // unequal to 0. The condition must be a scalar type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000277
Chris Lattner9bc47e22008-11-12 07:46:33 +0000278 // If the condition constant folds and can be elided, try to avoid emitting
279 // the condition and the dead arm of the if/else.
Chris Lattner31a09842008-11-12 08:04:58 +0000280 if (int Cond = ConstantFoldsToSimpleInteger(S.getCond())) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000281 // Figure out which block (then or else) is executed.
282 const Stmt *Executed = S.getThen(), *Skipped = S.getElse();
Chris Lattner9bc47e22008-11-12 07:46:33 +0000283 if (Cond == -1) // Condition false?
Chris Lattner62b72f62008-11-11 07:24:28 +0000284 std::swap(Executed, Skipped);
Chris Lattner9bc47e22008-11-12 07:46:33 +0000285
Chris Lattner62b72f62008-11-11 07:24:28 +0000286 // If the skipped block has no labels in it, just emit the executed block.
287 // This avoids emitting dead code and simplifies the CFG substantially.
Chris Lattner9bc47e22008-11-12 07:46:33 +0000288 if (!ContainsLabel(Skipped)) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000289 if (Executed)
290 EmitStmt(Executed);
291 return;
292 }
293 }
Chris Lattner9bc47e22008-11-12 07:46:33 +0000294
295 // Otherwise, the condition did not fold, or we couldn't elide it. Just emit
296 // the conditional branch.
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000297 llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
298 llvm::BasicBlock *ContBlock = createBasicBlock("if.end");
299 llvm::BasicBlock *ElseBlock = ContBlock;
Reid Spencer5f016e22007-07-11 17:01:13 +0000300 if (S.getElse())
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000301 ElseBlock = createBasicBlock("if.else");
302 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000303
304 // Emit the 'then' code.
305 EmitBlock(ThenBlock);
306 EmitStmt(S.getThen());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000307 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000308
309 // Emit the 'else' code if present.
310 if (const Stmt *Else = S.getElse()) {
311 EmitBlock(ElseBlock);
312 EmitStmt(Else);
Daniel Dunbard57a8712008-11-11 09:41:28 +0000313 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000314 }
315
316 // Emit the continuation block for code after the if.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000317 EmitBlock(ContBlock, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000318}
319
320void CodeGenFunction::EmitWhileStmt(const WhileStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000321 // Emit the header for the loop, insert it, which will create an uncond br to
322 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000323 llvm::BasicBlock *LoopHeader = createBasicBlock("while.cond");
Reid Spencer5f016e22007-07-11 17:01:13 +0000324 EmitBlock(LoopHeader);
Mike Stump72cac2c2009-02-07 18:08:12 +0000325
326 // Create an exit block for when the condition fails, create a block for the
327 // body of the loop.
328 llvm::BasicBlock *ExitBlock = createBasicBlock("while.end");
329 llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
330
331 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000332 BreakContinueStack.push_back(BreakContinue(ExitBlock, LoopHeader));
Reid Spencer5f016e22007-07-11 17:01:13 +0000333
Mike Stump16b16202009-02-07 17:18:33 +0000334 // Evaluate the conditional in the while header. C99 6.8.5.1: The
335 // evaluation of the controlling expression takes place before each
336 // execution of the loop body.
Reid Spencer5f016e22007-07-11 17:01:13 +0000337 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel2c30d8f2007-10-09 20:51:27 +0000338
339 // while(1) is common, avoid extra exit blocks. Be sure
Reid Spencer5f016e22007-07-11 17:01:13 +0000340 // to correctly handle break/continue though.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000341 bool EmitBoolCondBranch = true;
342 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
343 if (C->isOne())
344 EmitBoolCondBranch = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000345
Reid Spencer5f016e22007-07-11 17:01:13 +0000346 // As long as the condition is true, go to the loop body.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000347 if (EmitBoolCondBranch)
348 Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock);
Chris Lattner31a09842008-11-12 08:04:58 +0000349
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 // Emit the loop body.
351 EmitBlock(LoopBody);
352 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000353
Anders Carlssone4b6d342009-02-10 05:52:02 +0000354 BreakContinueStack.pop_back();
Reid Spencer5f016e22007-07-11 17:01:13 +0000355
356 // Cycle to the condition.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000357 EmitBranch(LoopHeader);
Reid Spencer5f016e22007-07-11 17:01:13 +0000358
359 // Emit the exit block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000360 EmitBlock(ExitBlock, true);
Devang Patel2c30d8f2007-10-09 20:51:27 +0000361
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000362 // The LoopHeader typically is just a branch if we skipped emitting
363 // a branch, try to erase it.
364 if (!EmitBoolCondBranch)
365 SimplifyForwardingBlocks(LoopHeader);
Reid Spencer5f016e22007-07-11 17:01:13 +0000366}
367
368void CodeGenFunction::EmitDoStmt(const DoStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000369 // Emit the body for the loop, insert it, which will create an uncond br to
370 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000371 llvm::BasicBlock *LoopBody = createBasicBlock("do.body");
372 llvm::BasicBlock *AfterDo = createBasicBlock("do.end");
Reid Spencer5f016e22007-07-11 17:01:13 +0000373 EmitBlock(LoopBody);
Chris Lattnerda138702007-07-16 21:28:45 +0000374
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000375 llvm::BasicBlock *DoCond = createBasicBlock("do.cond");
Chris Lattnerda138702007-07-16 21:28:45 +0000376
377 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000378 BreakContinueStack.push_back(BreakContinue(AfterDo, DoCond));
Reid Spencer5f016e22007-07-11 17:01:13 +0000379
380 // Emit the body of the loop into the block.
381 EmitStmt(S.getBody());
382
Anders Carlssone4b6d342009-02-10 05:52:02 +0000383 BreakContinueStack.pop_back();
Chris Lattnerda138702007-07-16 21:28:45 +0000384
385 EmitBlock(DoCond);
386
Reid Spencer5f016e22007-07-11 17:01:13 +0000387 // C99 6.8.5.2: "The evaluation of the controlling expression takes place
388 // after each execution of the loop body."
389
390 // Evaluate the conditional in the while header.
391 // C99 6.8.5p2/p4: The first substatement is executed if the expression
392 // compares unequal to 0. The condition must be a scalar type.
393 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000394
395 // "do {} while (0)" is common in macros, avoid extra blocks. Be sure
396 // to correctly handle break/continue though.
397 bool EmitBoolCondBranch = true;
398 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
399 if (C->isZero())
400 EmitBoolCondBranch = false;
401
Reid Spencer5f016e22007-07-11 17:01:13 +0000402 // As long as the condition is true, iterate the loop.
Devang Patel05f6e6b2007-10-09 20:33:39 +0000403 if (EmitBoolCondBranch)
404 Builder.CreateCondBr(BoolCondVal, LoopBody, AfterDo);
Reid Spencer5f016e22007-07-11 17:01:13 +0000405
406 // Emit the exit block.
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000407 EmitBlock(AfterDo);
Devang Patel05f6e6b2007-10-09 20:33:39 +0000408
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000409 // The DoCond block typically is just a branch if we skipped
410 // emitting a branch, try to erase it.
411 if (!EmitBoolCondBranch)
412 SimplifyForwardingBlocks(DoCond);
Reid Spencer5f016e22007-07-11 17:01:13 +0000413}
414
415void CodeGenFunction::EmitForStmt(const ForStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000416 // FIXME: What do we do if the increment (f.e.) contains a stmt expression,
417 // which contains a continue/break?
Chris Lattnerda138702007-07-16 21:28:45 +0000418
Reid Spencer5f016e22007-07-11 17:01:13 +0000419 // Evaluate the first part before the loop.
420 if (S.getInit())
421 EmitStmt(S.getInit());
422
423 // Start the loop with a block that tests the condition.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000424 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
425 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Chris Lattnerda138702007-07-16 21:28:45 +0000426
Reid Spencer5f016e22007-07-11 17:01:13 +0000427 EmitBlock(CondBlock);
428
Mike Stump20926c62009-02-07 20:14:12 +0000429 // Evaluate the condition if present. If not, treat it as a
430 // non-zero-constant according to 6.8.5.3p2, aka, true.
Reid Spencer5f016e22007-07-11 17:01:13 +0000431 if (S.getCond()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000432 // As long as the condition is true, iterate the loop.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000433 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Chris Lattner31a09842008-11-12 08:04:58 +0000434
435 // C99 6.8.5p2/p4: The first substatement is executed if the expression
436 // compares unequal to 0. The condition must be a scalar type.
437 EmitBranchOnBoolExpr(S.getCond(), ForBody, AfterFor);
438
Reid Spencer5f016e22007-07-11 17:01:13 +0000439 EmitBlock(ForBody);
440 } else {
441 // Treat it as a non-zero constant. Don't even create a new block for the
442 // body, just fall into it.
443 }
444
Chris Lattnerda138702007-07-16 21:28:45 +0000445 // If the for loop doesn't have an increment we can just use the
446 // condition as the continue block.
447 llvm::BasicBlock *ContinueBlock;
448 if (S.getInc())
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000449 ContinueBlock = createBasicBlock("for.inc");
Chris Lattnerda138702007-07-16 21:28:45 +0000450 else
451 ContinueBlock = CondBlock;
452
453 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000454 BreakContinueStack.push_back(BreakContinue(AfterFor, ContinueBlock));
Mike Stump3e9da662009-02-07 23:02:10 +0000455
Reid Spencer5f016e22007-07-11 17:01:13 +0000456 // If the condition is true, execute the body of the for stmt.
457 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000458
Anders Carlssone4b6d342009-02-10 05:52:02 +0000459 BreakContinueStack.pop_back();
Chris Lattnerda138702007-07-16 21:28:45 +0000460
Reid Spencer5f016e22007-07-11 17:01:13 +0000461 // If there is an increment, emit it next.
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000462 if (S.getInc()) {
463 EmitBlock(ContinueBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000464 EmitStmt(S.getInc());
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000465 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000466
467 // Finally, branch back up to the condition for the next iteration.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000468 EmitBranch(CondBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000469
Chris Lattnerda138702007-07-16 21:28:45 +0000470 // Emit the fall-through block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000471 EmitBlock(AfterFor, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000472}
473
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000474void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
475 if (RV.isScalar()) {
476 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
477 } else if (RV.isAggregate()) {
478 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
479 } else {
480 StoreComplexToAddr(RV.getComplexVal(), ReturnValue, false);
481 }
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000482 EmitBranchThroughCleanup(ReturnBlock);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000483}
484
Reid Spencer5f016e22007-07-11 17:01:13 +0000485/// EmitReturnStmt - Note that due to GCC extensions, this can have an operand
486/// if the function returns void, or may be missing one if the function returns
487/// non-void. Fun stuff :).
488void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000489 // Emit the result value, even if unused, to evalute the side effects.
490 const Expr *RV = S.getRetValue();
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000491
492 // FIXME: Clean this up by using an LValue for ReturnTemp,
493 // EmitStoreThroughLValue, and EmitAnyExpr.
494 if (!ReturnValue) {
495 // Make sure not to return anything, but evaluate the expression
496 // for side effects.
497 if (RV)
Eli Friedman144ac612008-05-22 01:22:33 +0000498 EmitAnyExpr(RV);
Reid Spencer5f016e22007-07-11 17:01:13 +0000499 } else if (RV == 0) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000500 // Do nothing (return value is left uninitialized)
Eli Friedmand54b6ac2009-05-27 04:56:12 +0000501 } else if (FnRetTy->isReferenceType()) {
502 // If this function returns a reference, take the address of the expression
503 // rather than the value.
504 Builder.CreateStore(EmitLValue(RV).getAddress(), ReturnValue);
Chris Lattner4b0029d2007-08-26 07:14:44 +0000505 } else if (!hasAggregateLLVMType(RV->getType())) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000506 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
Chris Lattner9b2dc282008-04-04 16:54:41 +0000507 } else if (RV->getType()->isAnyComplexType()) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000508 EmitComplexExprIntoAddr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000509 } else {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000510 EmitAggExpr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000511 }
Eli Friedman144ac612008-05-22 01:22:33 +0000512
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000513 EmitBranchThroughCleanup(ReturnBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000514}
515
516void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
Ted Kremeneke4ea1f42008-10-06 18:42:27 +0000517 for (DeclStmt::const_decl_iterator I = S.decl_begin(), E = S.decl_end();
518 I != E; ++I)
519 EmitDecl(**I);
Chris Lattner6fa5f092007-07-12 15:43:07 +0000520}
Chris Lattnerda138702007-07-16 21:28:45 +0000521
Daniel Dunbar09124252008-11-12 08:21:33 +0000522void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000523 assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
524
Daniel Dunbar09124252008-11-12 08:21:33 +0000525 // If this code is reachable then emit a stop point (if generating
526 // debug info). We have to do this ourselves because we are on the
527 // "simple" statement path.
528 if (HaveInsertPoint())
529 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +0000530
Chris Lattnerda138702007-07-16 21:28:45 +0000531 llvm::BasicBlock *Block = BreakContinueStack.back().BreakBlock;
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000532 EmitBranchThroughCleanup(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000533}
534
Daniel Dunbar09124252008-11-12 08:21:33 +0000535void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000536 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
537
Daniel Dunbar09124252008-11-12 08:21:33 +0000538 // If this code is reachable then emit a stop point (if generating
539 // debug info). We have to do this ourselves because we are on the
540 // "simple" statement path.
541 if (HaveInsertPoint())
542 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +0000543
Chris Lattnerda138702007-07-16 21:28:45 +0000544 llvm::BasicBlock *Block = BreakContinueStack.back().ContinueBlock;
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000545 EmitBranchThroughCleanup(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000546}
Devang Patel51b09f22007-10-04 23:45:31 +0000547
Devang Patelc049e4f2007-10-08 20:57:48 +0000548/// EmitCaseStmtRange - If case statement range is not too big then
549/// add multiple cases to switch instruction, one for each value within
550/// the range. If range is too big then emit "if" condition check.
551void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000552 assert(S.getRHS() && "Expected RHS value in CaseStmt");
Devang Patelc049e4f2007-10-08 20:57:48 +0000553
Anders Carlsson51fe9962008-11-22 21:04:56 +0000554 llvm::APSInt LHS = S.getLHS()->EvaluateAsInt(getContext());
555 llvm::APSInt RHS = S.getRHS()->EvaluateAsInt(getContext());
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000556
Daniel Dunbar16f23572008-07-25 01:11:38 +0000557 // Emit the code for this case. We do this first to make sure it is
558 // properly chained from our predecessor before generating the
559 // switch machinery to enter this block.
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000560 EmitBlock(createBasicBlock("sw.bb"));
Daniel Dunbar16f23572008-07-25 01:11:38 +0000561 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
562 EmitStmt(S.getSubStmt());
563
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000564 // If range is empty, do nothing.
565 if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))
566 return;
Devang Patelc049e4f2007-10-08 20:57:48 +0000567
568 llvm::APInt Range = RHS - LHS;
Daniel Dunbar16f23572008-07-25 01:11:38 +0000569 // FIXME: parameters such as this should not be hardcoded.
Devang Patelc049e4f2007-10-08 20:57:48 +0000570 if (Range.ult(llvm::APInt(Range.getBitWidth(), 64))) {
571 // Range is small enough to add multiple switch instruction cases.
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000572 for (unsigned i = 0, e = Range.getZExtValue() + 1; i != e; ++i) {
Devang Patel2d79d0f2007-10-05 20:54:07 +0000573 SwitchInsn->addCase(llvm::ConstantInt::get(LHS), CaseDest);
574 LHS++;
575 }
Devang Patelc049e4f2007-10-08 20:57:48 +0000576 return;
577 }
578
Daniel Dunbar16f23572008-07-25 01:11:38 +0000579 // The range is too big. Emit "if" condition into a new block,
580 // making sure to save and restore the current insertion point.
581 llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
Devang Patel2d79d0f2007-10-05 20:54:07 +0000582
Daniel Dunbar16f23572008-07-25 01:11:38 +0000583 // Push this test onto the chain of range checks (which terminates
584 // in the default basic block). The switch's default will be changed
585 // to the top of this chain after switch emission is complete.
586 llvm::BasicBlock *FalseDest = CaseRangeBlock;
Daniel Dunbar55e87422008-11-11 02:29:29 +0000587 CaseRangeBlock = createBasicBlock("sw.caserange");
Devang Patelc049e4f2007-10-08 20:57:48 +0000588
Daniel Dunbar16f23572008-07-25 01:11:38 +0000589 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
590 Builder.SetInsertPoint(CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000591
592 // Emit range check.
593 llvm::Value *Diff =
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000594 Builder.CreateSub(SwitchInsn->getCondition(), llvm::ConstantInt::get(LHS),
595 "tmp");
Devang Patelc049e4f2007-10-08 20:57:48 +0000596 llvm::Value *Cond =
597 Builder.CreateICmpULE(Diff, llvm::ConstantInt::get(Range), "tmp");
598 Builder.CreateCondBr(Cond, CaseDest, FalseDest);
599
Daniel Dunbar16f23572008-07-25 01:11:38 +0000600 // Restore the appropriate insertion point.
Daniel Dunbara448fb22008-11-11 23:11:34 +0000601 if (RestoreBB)
602 Builder.SetInsertPoint(RestoreBB);
603 else
604 Builder.ClearInsertionPoint();
Devang Patelc049e4f2007-10-08 20:57:48 +0000605}
606
607void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
608 if (S.getRHS()) {
609 EmitCaseStmtRange(S);
610 return;
611 }
612
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000613 EmitBlock(createBasicBlock("sw.bb"));
Devang Patelc049e4f2007-10-08 20:57:48 +0000614 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
Anders Carlsson51fe9962008-11-22 21:04:56 +0000615 llvm::APSInt CaseVal = S.getLHS()->EvaluateAsInt(getContext());
Daniel Dunbar55e87422008-11-11 02:29:29 +0000616 SwitchInsn->addCase(llvm::ConstantInt::get(CaseVal), CaseDest);
Chris Lattner5512f282009-03-04 04:46:18 +0000617
618 // Recursively emitting the statement is acceptable, but is not wonderful for
619 // code where we have many case statements nested together, i.e.:
620 // case 1:
621 // case 2:
622 // case 3: etc.
623 // Handling this recursively will create a new block for each case statement
624 // that falls through to the next case which is IR intensive. It also causes
625 // deep recursion which can run into stack depth limitations. Handle
626 // sequential non-range case statements specially.
627 const CaseStmt *CurCase = &S;
628 const CaseStmt *NextCase = dyn_cast<CaseStmt>(S.getSubStmt());
629
630 // Otherwise, iteratively add consequtive cases to this switch stmt.
631 while (NextCase && NextCase->getRHS() == 0) {
632 CurCase = NextCase;
633 CaseVal = CurCase->getLHS()->EvaluateAsInt(getContext());
634 SwitchInsn->addCase(llvm::ConstantInt::get(CaseVal), CaseDest);
635
636 NextCase = dyn_cast<CaseStmt>(CurCase->getSubStmt());
637 }
638
639 // Normal default recursion for non-cases.
640 EmitStmt(CurCase->getSubStmt());
Devang Patel51b09f22007-10-04 23:45:31 +0000641}
642
643void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
Daniel Dunbar16f23572008-07-25 01:11:38 +0000644 llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
Daniel Dunbar55e87422008-11-11 02:29:29 +0000645 assert(DefaultBlock->empty() &&
646 "EmitDefaultStmt: Default block already defined?");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000647 EmitBlock(DefaultBlock);
Devang Patel51b09f22007-10-04 23:45:31 +0000648 EmitStmt(S.getSubStmt());
649}
650
651void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
652 llvm::Value *CondV = EmitScalarExpr(S.getCond());
653
654 // Handle nested switch statements.
655 llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000656 llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000657
Daniel Dunbar16f23572008-07-25 01:11:38 +0000658 // Create basic block to hold stuff that comes after switch
659 // statement. We also need to create a default block now so that
660 // explicit case ranges tests can have a place to jump to on
661 // failure.
Daniel Dunbar55e87422008-11-11 02:29:29 +0000662 llvm::BasicBlock *NextBlock = createBasicBlock("sw.epilog");
663 llvm::BasicBlock *DefaultBlock = createBasicBlock("sw.default");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000664 SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
665 CaseRangeBlock = DefaultBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000666
Daniel Dunbar09124252008-11-12 08:21:33 +0000667 // Clear the insertion point to indicate we are in unreachable code.
668 Builder.ClearInsertionPoint();
Eli Friedmand28a80d2008-05-12 16:08:04 +0000669
Devang Patele9b8c0a2007-10-30 20:59:40 +0000670 // All break statements jump to NextBlock. If BreakContinueStack is non empty
671 // then reuse last ContinueBlock.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000672 llvm::BasicBlock *ContinueBlock = 0;
673 if (!BreakContinueStack.empty())
Devang Patel51b09f22007-10-04 23:45:31 +0000674 ContinueBlock = BreakContinueStack.back().ContinueBlock;
Anders Carlssone4b6d342009-02-10 05:52:02 +0000675
Mike Stump3e9da662009-02-07 23:02:10 +0000676 // Ensure any vlas created between there and here, are undone
Anders Carlssone4b6d342009-02-10 05:52:02 +0000677 BreakContinueStack.push_back(BreakContinue(NextBlock, ContinueBlock));
Devang Patel51b09f22007-10-04 23:45:31 +0000678
679 // Emit switch body.
680 EmitStmt(S.getBody());
Anders Carlssone4b6d342009-02-10 05:52:02 +0000681
682 BreakContinueStack.pop_back();
Devang Patel51b09f22007-10-04 23:45:31 +0000683
Daniel Dunbar16f23572008-07-25 01:11:38 +0000684 // Update the default block in case explicit case range tests have
685 // been chained on top.
686 SwitchInsn->setSuccessor(0, CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000687
Daniel Dunbar16f23572008-07-25 01:11:38 +0000688 // If a default was never emitted then reroute any jumps to it and
689 // discard.
690 if (!DefaultBlock->getParent()) {
691 DefaultBlock->replaceAllUsesWith(NextBlock);
692 delete DefaultBlock;
693 }
Devang Patel51b09f22007-10-04 23:45:31 +0000694
Daniel Dunbar16f23572008-07-25 01:11:38 +0000695 // Emit continuation.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000696 EmitBlock(NextBlock, true);
Daniel Dunbar16f23572008-07-25 01:11:38 +0000697
Devang Patel51b09f22007-10-04 23:45:31 +0000698 SwitchInsn = SavedSwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000699 CaseRangeBlock = SavedCRBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000700}
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000701
Chris Lattner2819fa82009-04-26 17:57:12 +0000702static std::string
703SimplifyConstraint(const char *Constraint, TargetInfo &Target,
704 llvm::SmallVectorImpl<TargetInfo::ConstraintInfo> *OutCons=0) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000705 std::string Result;
706
707 while (*Constraint) {
708 switch (*Constraint) {
709 default:
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000710 Result += Target.convertConstraint(*Constraint);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000711 break;
712 // Ignore these
713 case '*':
714 case '?':
715 case '!':
716 break;
717 case 'g':
718 Result += "imr";
719 break;
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000720 case '[': {
Chris Lattner2819fa82009-04-26 17:57:12 +0000721 assert(OutCons &&
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000722 "Must pass output names to constraints with a symbolic name");
723 unsigned Index;
724 bool result = Target.resolveSymbolicName(Constraint,
Chris Lattner2819fa82009-04-26 17:57:12 +0000725 &(*OutCons)[0],
726 OutCons->size(), Index);
Chris Lattner53637652009-01-21 07:35:26 +0000727 assert(result && "Could not resolve symbolic name"); result=result;
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000728 Result += llvm::utostr(Index);
729 break;
730 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000731 }
732
733 Constraint++;
734 }
735
736 return Result;
737}
738
Anders Carlsson63471722009-01-11 19:32:54 +0000739llvm::Value* CodeGenFunction::EmitAsmInput(const AsmStmt &S,
Daniel Dunbarb84e8a62009-05-04 06:56:16 +0000740 const TargetInfo::ConstraintInfo &Info,
Anders Carlsson63471722009-01-11 19:32:54 +0000741 const Expr *InputExpr,
Chris Lattner63c8b142009-03-10 05:39:21 +0000742 std::string &ConstraintStr) {
Anders Carlsson63471722009-01-11 19:32:54 +0000743 llvm::Value *Arg;
Chris Lattner44def072009-04-26 07:16:29 +0000744 if (Info.allowsRegister() || !Info.allowsMemory()) {
Anders Carlssonebaae2a2009-01-12 02:22:13 +0000745 const llvm::Type *Ty = ConvertType(InputExpr->getType());
746
747 if (Ty->isSingleValueType()) {
Anders Carlsson63471722009-01-11 19:32:54 +0000748 Arg = EmitScalarExpr(InputExpr);
749 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000750 InputExpr = InputExpr->IgnoreParenNoopCasts(getContext());
Anders Carlssonebaae2a2009-01-12 02:22:13 +0000751 LValue Dest = EmitLValue(InputExpr);
752
753 uint64_t Size = CGM.getTargetData().getTypeSizeInBits(Ty);
754 if (Size <= 64 && llvm::isPowerOf2_64(Size)) {
755 Ty = llvm::IntegerType::get(Size);
756 Ty = llvm::PointerType::getUnqual(Ty);
757
758 Arg = Builder.CreateLoad(Builder.CreateBitCast(Dest.getAddress(), Ty));
759 } else {
760 Arg = Dest.getAddress();
761 ConstraintStr += '*';
762 }
Anders Carlsson63471722009-01-11 19:32:54 +0000763 }
764 } else {
Chris Lattner810f6d52009-03-13 17:38:01 +0000765 InputExpr = InputExpr->IgnoreParenNoopCasts(getContext());
Anders Carlsson63471722009-01-11 19:32:54 +0000766 LValue Dest = EmitLValue(InputExpr);
767 Arg = Dest.getAddress();
768 ConstraintStr += '*';
769 }
770
771 return Arg;
772}
773
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000774void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
Chris Lattner458cd9c2009-03-10 23:21:44 +0000775 // Analyze the asm string to decompose it into its pieces. We know that Sema
776 // has already done this, so it is guaranteed to be successful.
777 llvm::SmallVector<AsmStmt::AsmStringPiece, 4> Pieces;
Chris Lattnerfb5058e2009-03-10 23:41:04 +0000778 unsigned DiagOffs;
779 S.AnalyzeAsmString(Pieces, getContext(), DiagOffs);
Chris Lattner458cd9c2009-03-10 23:21:44 +0000780
781 // Assemble the pieces into the final asm string.
782 std::string AsmString;
783 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
784 if (Pieces[i].isString())
785 AsmString += Pieces[i].getString();
786 else if (Pieces[i].getModifier() == '\0')
787 AsmString += '$' + llvm::utostr(Pieces[i].getOperandNo());
788 else
789 AsmString += "${" + llvm::utostr(Pieces[i].getOperandNo()) + ':' +
790 Pieces[i].getModifier() + '}';
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000791 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000792
Chris Lattner481fef92009-05-03 07:05:00 +0000793 // Get all the output and input constraints together.
794 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
795 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
796
797 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
798 TargetInfo::ConstraintInfo Info(S.getOutputConstraint(i),
799 S.getOutputName(i));
800 bool result = Target.validateOutputConstraint(Info);
801 assert(result && "Failed to parse output constraint"); result=result;
802 OutputConstraintInfos.push_back(Info);
803 }
804
805 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
806 TargetInfo::ConstraintInfo Info(S.getInputConstraint(i),
807 S.getInputName(i));
Jay Foadbeaaccd2009-05-21 09:52:38 +0000808 bool result = Target.validateInputConstraint(OutputConstraintInfos.data(),
Chris Lattner481fef92009-05-03 07:05:00 +0000809 S.getNumOutputs(),
810 Info); result=result;
811 assert(result && "Failed to parse input constraint");
812 InputConstraintInfos.push_back(Info);
813 }
814
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000815 std::string Constraints;
816
Chris Lattnerede9d902009-05-03 07:53:25 +0000817 std::vector<LValue> ResultRegDests;
818 std::vector<QualType> ResultRegQualTys;
Chris Lattnera077b5c2009-05-03 08:21:20 +0000819 std::vector<const llvm::Type *> ResultRegTypes;
820 std::vector<const llvm::Type *> ResultTruncRegTypes;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000821 std::vector<const llvm::Type*> ArgTypes;
822 std::vector<llvm::Value*> Args;
Anders Carlssonf39a4212008-02-05 20:01:53 +0000823
824 // Keep track of inout constraints.
825 std::string InOutConstraints;
826 std::vector<llvm::Value*> InOutArgs;
827 std::vector<const llvm::Type*> InOutArgTypes;
Anders Carlsson03eb5432009-01-27 20:38:24 +0000828
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000829 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
Chris Lattner481fef92009-05-03 07:05:00 +0000830 TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i];
Anders Carlsson03eb5432009-01-27 20:38:24 +0000831
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000832 // Simplify the output constraint.
Chris Lattner481fef92009-05-03 07:05:00 +0000833 std::string OutputConstraint(S.getOutputConstraint(i));
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000834 OutputConstraint = SimplifyConstraint(OutputConstraint.c_str() + 1, Target);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000835
Chris Lattner810f6d52009-03-13 17:38:01 +0000836 const Expr *OutExpr = S.getOutputExpr(i);
837 OutExpr = OutExpr->IgnoreParenNoopCasts(getContext());
838
839 LValue Dest = EmitLValue(OutExpr);
Chris Lattnerede9d902009-05-03 07:53:25 +0000840 if (!Constraints.empty())
Anders Carlssonbad3a942009-05-01 00:16:04 +0000841 Constraints += ',';
842
Chris Lattnera077b5c2009-05-03 08:21:20 +0000843 // If this is a register output, then make the inline asm return it
844 // by-value. If this is a memory result, return the value by-reference.
Chris Lattnerede9d902009-05-03 07:53:25 +0000845 if (!Info.allowsMemory() && !hasAggregateLLVMType(OutExpr->getType())) {
Chris Lattnera077b5c2009-05-03 08:21:20 +0000846 Constraints += "=" + OutputConstraint;
Chris Lattnerede9d902009-05-03 07:53:25 +0000847 ResultRegQualTys.push_back(OutExpr->getType());
848 ResultRegDests.push_back(Dest);
Chris Lattnera077b5c2009-05-03 08:21:20 +0000849 ResultRegTypes.push_back(ConvertTypeForMem(OutExpr->getType()));
850 ResultTruncRegTypes.push_back(ResultRegTypes.back());
851
852 // If this output is tied to an input, and if the input is larger, then
853 // we need to set the actual result type of the inline asm node to be the
854 // same as the input type.
855 if (Info.hasMatchingInput()) {
Chris Lattnerebfc9852009-05-03 08:38:58 +0000856 unsigned InputNo;
857 for (InputNo = 0; InputNo != S.getNumInputs(); ++InputNo) {
858 TargetInfo::ConstraintInfo &Input = InputConstraintInfos[InputNo];
859 if (Input.hasTiedOperand() &&
Chris Lattner0bdaa5b2009-05-03 09:05:53 +0000860 Input.getTiedOperand() == i)
Chris Lattnera077b5c2009-05-03 08:21:20 +0000861 break;
Chris Lattnerebfc9852009-05-03 08:38:58 +0000862 }
863 assert(InputNo != S.getNumInputs() && "Didn't find matching input!");
Chris Lattnera077b5c2009-05-03 08:21:20 +0000864
865 QualType InputTy = S.getInputExpr(InputNo)->getType();
866 QualType OutputTy = OutExpr->getType();
867
868 uint64_t InputSize = getContext().getTypeSize(InputTy);
869 if (getContext().getTypeSize(OutputTy) < InputSize) {
870 // Form the asm to return the value as a larger integer type.
871 ResultRegTypes.back() = llvm::IntegerType::get((unsigned)InputSize);
872 }
873 }
874
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000875 } else {
876 ArgTypes.push_back(Dest.getAddress()->getType());
Anders Carlssoncad3ab62008-02-05 16:57:38 +0000877 Args.push_back(Dest.getAddress());
Anders Carlssonf39a4212008-02-05 20:01:53 +0000878 Constraints += "=*";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000879 Constraints += OutputConstraint;
Anders Carlssonf39a4212008-02-05 20:01:53 +0000880 }
881
Chris Lattner44def072009-04-26 07:16:29 +0000882 if (Info.isReadWrite()) {
Anders Carlssonf39a4212008-02-05 20:01:53 +0000883 InOutConstraints += ',';
Anders Carlsson63471722009-01-11 19:32:54 +0000884
Anders Carlssonf39a4212008-02-05 20:01:53 +0000885 const Expr *InputExpr = S.getOutputExpr(i);
Anders Carlsson63471722009-01-11 19:32:54 +0000886 llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, InOutConstraints);
Anders Carlssonf39a4212008-02-05 20:01:53 +0000887
Chris Lattner44def072009-04-26 07:16:29 +0000888 if (Info.allowsRegister())
Anders Carlsson9f2505b2009-01-11 21:23:27 +0000889 InOutConstraints += llvm::utostr(i);
890 else
891 InOutConstraints += OutputConstraint;
Anders Carlsson2763b3a2009-01-11 19:46:50 +0000892
Anders Carlssonf39a4212008-02-05 20:01:53 +0000893 InOutArgTypes.push_back(Arg->getType());
894 InOutArgs.push_back(Arg);
Anders Carlssonf39a4212008-02-05 20:01:53 +0000895 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000896 }
897
898 unsigned NumConstraints = S.getNumOutputs() + S.getNumInputs();
899
900 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
901 const Expr *InputExpr = S.getInputExpr(i);
902
Chris Lattner481fef92009-05-03 07:05:00 +0000903 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
904
Chris Lattnerede9d902009-05-03 07:53:25 +0000905 if (!Constraints.empty())
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000906 Constraints += ',';
907
908 // Simplify the input constraint.
Chris Lattner481fef92009-05-03 07:05:00 +0000909 std::string InputConstraint(S.getInputConstraint(i));
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000910 InputConstraint = SimplifyConstraint(InputConstraint.c_str(), Target,
Chris Lattner2819fa82009-04-26 17:57:12 +0000911 &OutputConstraintInfos);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000912
Anders Carlsson63471722009-01-11 19:32:54 +0000913 llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, Constraints);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000914
Chris Lattner4df4ee02009-05-03 07:27:51 +0000915 // If this input argument is tied to a larger output result, extend the
916 // input to be the same size as the output. The LLVM backend wants to see
917 // the input and output of a matching constraint be the same size. Note
918 // that GCC does not define what the top bits are here. We use zext because
919 // that is usually cheaper, but LLVM IR should really get an anyext someday.
920 if (Info.hasTiedOperand()) {
921 unsigned Output = Info.getTiedOperand();
922 QualType OutputTy = S.getOutputExpr(Output)->getType();
923 QualType InputTy = InputExpr->getType();
924
925 if (getContext().getTypeSize(OutputTy) >
926 getContext().getTypeSize(InputTy)) {
927 // Use ptrtoint as appropriate so that we can do our extension.
928 if (isa<llvm::PointerType>(Arg->getType()))
929 Arg = Builder.CreatePtrToInt(Arg,
930 llvm::IntegerType::get(LLVMPointerWidth));
931 unsigned OutputSize = (unsigned)getContext().getTypeSize(OutputTy);
932 Arg = Builder.CreateZExt(Arg, llvm::IntegerType::get(OutputSize));
933 }
934 }
935
936
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000937 ArgTypes.push_back(Arg->getType());
938 Args.push_back(Arg);
939 Constraints += InputConstraint;
940 }
941
Anders Carlssonf39a4212008-02-05 20:01:53 +0000942 // Append the "input" part of inout constraints last.
943 for (unsigned i = 0, e = InOutArgs.size(); i != e; i++) {
944 ArgTypes.push_back(InOutArgTypes[i]);
945 Args.push_back(InOutArgs[i]);
946 }
947 Constraints += InOutConstraints;
948
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000949 // Clobbers
950 for (unsigned i = 0, e = S.getNumClobbers(); i != e; i++) {
951 std::string Clobber(S.getClobber(i)->getStrData(),
952 S.getClobber(i)->getByteLength());
953
954 Clobber = Target.getNormalizedGCCRegisterName(Clobber.c_str());
955
Anders Carlssonea041752008-02-06 00:11:32 +0000956 if (i != 0 || NumConstraints != 0)
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000957 Constraints += ',';
Anders Carlssonea041752008-02-06 00:11:32 +0000958
959 Constraints += "~{";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000960 Constraints += Clobber;
Anders Carlssonea041752008-02-06 00:11:32 +0000961 Constraints += '}';
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000962 }
963
964 // Add machine specific clobbers
Eli Friedmanccf614c2008-12-21 01:15:32 +0000965 std::string MachineClobbers = Target.getClobbers();
966 if (!MachineClobbers.empty()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000967 if (!Constraints.empty())
968 Constraints += ',';
Eli Friedmanccf614c2008-12-21 01:15:32 +0000969 Constraints += MachineClobbers;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000970 }
Anders Carlssonbad3a942009-05-01 00:16:04 +0000971
972 const llvm::Type *ResultType;
Chris Lattnera077b5c2009-05-03 08:21:20 +0000973 if (ResultRegTypes.empty())
Anders Carlssonbad3a942009-05-01 00:16:04 +0000974 ResultType = llvm::Type::VoidTy;
Chris Lattnera077b5c2009-05-03 08:21:20 +0000975 else if (ResultRegTypes.size() == 1)
976 ResultType = ResultRegTypes[0];
Anders Carlssonbad3a942009-05-01 00:16:04 +0000977 else
Chris Lattnera077b5c2009-05-03 08:21:20 +0000978 ResultType = llvm::StructType::get(ResultRegTypes);
Anders Carlssonbad3a942009-05-01 00:16:04 +0000979
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000980 const llvm::FunctionType *FTy =
981 llvm::FunctionType::get(ResultType, ArgTypes, false);
982
983 llvm::InlineAsm *IA =
984 llvm::InlineAsm::get(FTy, AsmString, Constraints,
985 S.isVolatile() || S.getNumOutputs() == 0);
Anders Carlssonbad3a942009-05-01 00:16:04 +0000986 llvm::CallInst *Result = Builder.CreateCall(IA, Args.begin(), Args.end());
Anders Carlssonbc0822b2009-03-02 19:58:15 +0000987 Result->addAttribute(~0, llvm::Attribute::NoUnwind);
988
Chris Lattnera077b5c2009-05-03 08:21:20 +0000989
990 // Extract all of the register value results from the asm.
991 std::vector<llvm::Value*> RegResults;
992 if (ResultRegTypes.size() == 1) {
993 RegResults.push_back(Result);
Anders Carlssonbad3a942009-05-01 00:16:04 +0000994 } else {
Chris Lattnera077b5c2009-05-03 08:21:20 +0000995 for (unsigned i = 0, e = ResultRegTypes.size(); i != e; ++i) {
Anders Carlssonbad3a942009-05-01 00:16:04 +0000996 llvm::Value *Tmp = Builder.CreateExtractValue(Result, i, "asmresult");
Chris Lattnera077b5c2009-05-03 08:21:20 +0000997 RegResults.push_back(Tmp);
Anders Carlssonbad3a942009-05-01 00:16:04 +0000998 }
999 }
Chris Lattnera077b5c2009-05-03 08:21:20 +00001000
1001 for (unsigned i = 0, e = RegResults.size(); i != e; ++i) {
1002 llvm::Value *Tmp = RegResults[i];
1003
1004 // If the result type of the LLVM IR asm doesn't match the result type of
1005 // the expression, do the conversion.
1006 if (ResultRegTypes[i] != ResultTruncRegTypes[i]) {
1007 const llvm::Type *TruncTy = ResultTruncRegTypes[i];
1008 // Truncate the integer result to the right size, note that
1009 // ResultTruncRegTypes can be a pointer.
1010 uint64_t ResSize = CGM.getTargetData().getTypeSizeInBits(TruncTy);
1011 Tmp = Builder.CreateTrunc(Tmp, llvm::IntegerType::get((unsigned)ResSize));
1012
1013 if (Tmp->getType() != TruncTy) {
1014 assert(isa<llvm::PointerType>(TruncTy));
1015 Tmp = Builder.CreateIntToPtr(Tmp, TruncTy);
1016 }
1017 }
1018
1019 EmitStoreThroughLValue(RValue::get(Tmp), ResultRegDests[i],
1020 ResultRegQualTys[i]);
1021 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001022}