blob: 1c5cb90cbe34d8ec8a7accea6a30d79b17d3e54a [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGStmt.cpp - Emit LLVM Code from Statements ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Stmt nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000014#include "CGDebugInfo.h"
15#include "CodeGenModule.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "CodeGenFunction.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/StmtVisitor.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000018#include "clang/Basic/TargetInfo.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000019#include "llvm/ADT/StringExtras.h"
Anders Carlsson17d28a32008-12-12 05:52:00 +000020#include "llvm/InlineAsm.h"
21#include "llvm/Intrinsics.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23using namespace CodeGen;
24
25//===----------------------------------------------------------------------===//
26// Statement Emission
27//===----------------------------------------------------------------------===//
28
Daniel Dunbar09124252008-11-12 08:21:33 +000029void CodeGenFunction::EmitStopPoint(const Stmt *S) {
30 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
31 DI->setLocation(S->getLocStart());
32 DI->EmitStopPoint(CurFn, Builder);
33 }
34}
35
Reid Spencer5f016e22007-07-11 17:01:13 +000036void CodeGenFunction::EmitStmt(const Stmt *S) {
37 assert(S && "Null statement?");
Daniel Dunbara448fb22008-11-11 23:11:34 +000038
Daniel Dunbar09124252008-11-12 08:21:33 +000039 // Check if we can handle this without bothering to generate an
40 // insert point or debug info.
41 if (EmitSimpleStmt(S))
42 return;
43
Daniel Dunbara448fb22008-11-11 23:11:34 +000044 // If we happen to be at an unreachable point just create a dummy
45 // basic block to hold the code. We could change parts of irgen to
46 // simply not generate this code, but this situation is rare and
47 // probably not worth the effort.
48 // FIXME: Verify previous performance/effort claim.
49 EnsureInsertPoint();
Reid Spencer5f016e22007-07-11 17:01:13 +000050
Daniel Dunbar09124252008-11-12 08:21:33 +000051 // Generate a stoppoint if we are emitting debug info.
52 EmitStopPoint(S);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000053
Reid Spencer5f016e22007-07-11 17:01:13 +000054 switch (S->getStmtClass()) {
55 default:
Chris Lattner1e4d21e2007-08-26 22:58:05 +000056 // Must be an expression in a stmt context. Emit the value (to get
57 // side-effects) and ignore the result.
Reid Spencer5f016e22007-07-11 17:01:13 +000058 if (const Expr *E = dyn_cast<Expr>(S)) {
Chris Lattner1e4d21e2007-08-26 22:58:05 +000059 if (!hasAggregateLLVMType(E->getType()))
60 EmitScalarExpr(E);
Chris Lattner9b2dc282008-04-04 16:54:41 +000061 else if (E->getType()->isAnyComplexType())
Chris Lattner1e4d21e2007-08-26 22:58:05 +000062 EmitComplexExpr(E);
63 else
64 EmitAggExpr(E, 0, false);
Reid Spencer5f016e22007-07-11 17:01:13 +000065 } else {
Daniel Dunbar488e9932008-08-16 00:56:44 +000066 ErrorUnsupported(S, "statement");
Reid Spencer5f016e22007-07-11 17:01:13 +000067 }
68 break;
Daniel Dunbar0ffb1252008-08-04 16:51:22 +000069 case Stmt::IndirectGotoStmtClass:
70 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break;
Reid Spencer5f016e22007-07-11 17:01:13 +000071
72 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
73 case Stmt::WhileStmtClass: EmitWhileStmt(cast<WhileStmt>(*S)); break;
74 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break;
75 case Stmt::ForStmtClass: EmitForStmt(cast<ForStmt>(*S)); break;
76
77 case Stmt::ReturnStmtClass: EmitReturnStmt(cast<ReturnStmt>(*S)); break;
78 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
Daniel Dunbara4275d12008-10-02 18:02:06 +000079
Devang Patel51b09f22007-10-04 23:45:31 +000080 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000081 case Stmt::AsmStmtClass: EmitAsmStmt(cast<AsmStmt>(*S)); break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000082
83 case Stmt::ObjCAtTryStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000084 EmitObjCAtTryStmt(cast<ObjCAtTryStmt>(*S));
85 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000086 case Stmt::ObjCAtCatchStmtClass:
Anders Carlssondde0a942008-09-11 09:15:33 +000087 assert(0 && "@catch statements should be handled by EmitObjCAtTryStmt");
88 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000089 case Stmt::ObjCAtFinallyStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000090 assert(0 && "@finally statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +000091 break;
92 case Stmt::ObjCAtThrowStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000093 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000094 break;
95 case Stmt::ObjCAtSynchronizedStmtClass:
Chris Lattner10cac6f2008-11-15 21:26:17 +000096 EmitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000097 break;
Anders Carlsson3d8400d2008-08-30 19:51:14 +000098 case Stmt::ObjCForCollectionStmtClass:
99 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000100 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000101 }
102}
103
Daniel Dunbar09124252008-11-12 08:21:33 +0000104bool CodeGenFunction::EmitSimpleStmt(const Stmt *S) {
105 switch (S->getStmtClass()) {
106 default: return false;
107 case Stmt::NullStmtClass: break;
108 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
109 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break;
110 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break;
111 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
112 case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break;
113 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break;
114 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
115 }
116
117 return true;
118}
119
Chris Lattner33793202007-08-31 22:09:40 +0000120/// EmitCompoundStmt - Emit a compound statement {..} node. If GetLast is true,
121/// this captures the expression result of the last sub-statement and returns it
122/// (for use by the statement expression extension).
Chris Lattner9b655512007-08-31 22:49:20 +0000123RValue CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
124 llvm::Value *AggLoc, bool isAggVol) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000125 // FIXME: handle vla's etc.
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000126 CGDebugInfo *DI = CGM.getDebugInfo();
127 if (DI) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000128 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000129 DI->setLocation(S.getLBracLoc());
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000130 DI->EmitRegionStart(CurFn, Builder);
131 }
132
Anders Carlsson17d28a32008-12-12 05:52:00 +0000133 // Push a null stack save value.
134 StackSaveValues.push_back(0);
135
Chris Lattner33793202007-08-31 22:09:40 +0000136 for (CompoundStmt::const_body_iterator I = S.body_begin(),
137 E = S.body_end()-GetLast; I != E; ++I)
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 EmitStmt(*I);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000139
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000140 if (DI) {
Daniel Dunbara448fb22008-11-11 23:11:34 +0000141 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000142 DI->setLocation(S.getRBracLoc());
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000143 DI->EmitRegionEnd(CurFn, Builder);
144 }
145
Anders Carlsson17d28a32008-12-12 05:52:00 +0000146 RValue RV;
147 if (!GetLast)
148 RV = RValue::get(0);
149 else {
150 // We have to special case labels here. They are statements, but when put
151 // at the end of a statement expression, they yield the value of their
152 // subexpression. Handle this by walking through all labels we encounter,
153 // emitting them before we evaluate the subexpr.
154 const Stmt *LastStmt = S.body_back();
155 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
156 EmitLabel(*LS);
157 LastStmt = LS->getSubStmt();
158 }
Chris Lattner9b655512007-08-31 22:49:20 +0000159
Anders Carlsson17d28a32008-12-12 05:52:00 +0000160 EnsureInsertPoint();
161
162 RV = EmitAnyExpr(cast<Expr>(LastStmt), AggLoc);
163 }
164
165 if (llvm::Value *V = StackSaveValues.pop_back_val()) {
166 V = Builder.CreateLoad(V, "tmp");
167
168 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::stackrestore);
169 Builder.CreateCall(F, V);
Chris Lattner91d723d2008-07-26 20:23:23 +0000170 }
171
Anders Carlsson17d28a32008-12-12 05:52:00 +0000172 return RV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000173}
174
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000175void CodeGenFunction::EmitBlock(llvm::BasicBlock *BB, bool IsFinished) {
Daniel Dunbard57a8712008-11-11 09:41:28 +0000176 // Fall out of the current block (if necessary).
177 EmitBranch(BB);
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000178
179 if (IsFinished && BB->use_empty()) {
180 delete BB;
181 return;
182 }
183
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 CurFn->getBasicBlockList().push_back(BB);
185 Builder.SetInsertPoint(BB);
186}
187
Daniel Dunbard57a8712008-11-11 09:41:28 +0000188void CodeGenFunction::EmitBranch(llvm::BasicBlock *Target) {
189 // Emit a branch from the current block to the target one if this
190 // was a real block. If this was just a fall-through block after a
191 // terminator, don't emit it.
192 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
193
194 if (!CurBB || CurBB->getTerminator()) {
195 // If there is no insert point or the previous block is already
196 // terminated, don't touch it.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000197 } else {
198 // Otherwise, create a fall-through branch.
199 Builder.CreateBr(Target);
200 }
Daniel Dunbar5e08ad32008-11-11 22:06:59 +0000201
202 Builder.ClearInsertionPoint();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000203}
204
Chris Lattner91d723d2008-07-26 20:23:23 +0000205void CodeGenFunction::EmitLabel(const LabelStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 llvm::BasicBlock *NextBB = getBasicBlockForLabel(&S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000207 EmitBlock(NextBB);
Chris Lattner91d723d2008-07-26 20:23:23 +0000208}
209
210
211void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
212 EmitLabel(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000213 EmitStmt(S.getSubStmt());
214}
215
216void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
Daniel Dunbara4275d12008-10-02 18:02:06 +0000217 // FIXME: Implement goto out in @try or @catch blocks.
218 if (!ObjCEHStack.empty()) {
219 CGM.ErrorUnsupported(&S, "goto inside an Obj-C exception block");
220 return;
221 }
222
Daniel Dunbar09124252008-11-12 08:21:33 +0000223 // If this code is reachable then emit a stop point (if generating
224 // debug info). We have to do this ourselves because we are on the
225 // "simple" statement path.
226 if (HaveInsertPoint())
227 EmitStopPoint(&S);
Daniel Dunbard57a8712008-11-11 09:41:28 +0000228 EmitBranch(getBasicBlockForLabel(S.getLabel()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000229}
230
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000231void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) {
Daniel Dunbara4275d12008-10-02 18:02:06 +0000232 // FIXME: Implement indirect goto in @try or @catch blocks.
233 if (!ObjCEHStack.empty()) {
234 CGM.ErrorUnsupported(&S, "goto inside an Obj-C exception block");
235 return;
236 }
237
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000238 // Emit initial switch which will be patched up later by
239 // EmitIndirectSwitches(). We need a default dest, so we use the
240 // current BB, but this is overwritten.
241 llvm::Value *V = Builder.CreatePtrToInt(EmitScalarExpr(S.getTarget()),
242 llvm::Type::Int32Ty,
243 "addr");
244 llvm::SwitchInst *I = Builder.CreateSwitch(V, Builder.GetInsertBlock());
245 IndirectSwitches.push_back(I);
246
Daniel Dunbara448fb22008-11-11 23:11:34 +0000247 // Clear the insertion point to indicate we are in unreachable code.
248 Builder.ClearInsertionPoint();
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000249}
250
Chris Lattner62b72f62008-11-11 07:24:28 +0000251void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000252 // C99 6.8.4.1: The first substatement is executed if the expression compares
253 // unequal to 0. The condition must be a scalar type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000254
Chris Lattner9bc47e22008-11-12 07:46:33 +0000255 // If the condition constant folds and can be elided, try to avoid emitting
256 // the condition and the dead arm of the if/else.
Chris Lattner31a09842008-11-12 08:04:58 +0000257 if (int Cond = ConstantFoldsToSimpleInteger(S.getCond())) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000258 // Figure out which block (then or else) is executed.
259 const Stmt *Executed = S.getThen(), *Skipped = S.getElse();
Chris Lattner9bc47e22008-11-12 07:46:33 +0000260 if (Cond == -1) // Condition false?
Chris Lattner62b72f62008-11-11 07:24:28 +0000261 std::swap(Executed, Skipped);
Chris Lattner9bc47e22008-11-12 07:46:33 +0000262
Chris Lattner62b72f62008-11-11 07:24:28 +0000263 // If the skipped block has no labels in it, just emit the executed block.
264 // This avoids emitting dead code and simplifies the CFG substantially.
Chris Lattner9bc47e22008-11-12 07:46:33 +0000265 if (!ContainsLabel(Skipped)) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000266 if (Executed)
267 EmitStmt(Executed);
268 return;
269 }
270 }
Chris Lattner9bc47e22008-11-12 07:46:33 +0000271
272 // Otherwise, the condition did not fold, or we couldn't elide it. Just emit
273 // the conditional branch.
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000274 llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
275 llvm::BasicBlock *ContBlock = createBasicBlock("if.end");
276 llvm::BasicBlock *ElseBlock = ContBlock;
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 if (S.getElse())
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000278 ElseBlock = createBasicBlock("if.else");
279 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000280
281 // Emit the 'then' code.
282 EmitBlock(ThenBlock);
283 EmitStmt(S.getThen());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000284 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000285
286 // Emit the 'else' code if present.
287 if (const Stmt *Else = S.getElse()) {
288 EmitBlock(ElseBlock);
289 EmitStmt(Else);
Daniel Dunbard57a8712008-11-11 09:41:28 +0000290 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000291 }
292
293 // Emit the continuation block for code after the if.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000294 EmitBlock(ContBlock, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000295}
296
297void CodeGenFunction::EmitWhileStmt(const WhileStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 // Emit the header for the loop, insert it, which will create an uncond br to
299 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000300 llvm::BasicBlock *LoopHeader = createBasicBlock("while.cond");
Reid Spencer5f016e22007-07-11 17:01:13 +0000301 EmitBlock(LoopHeader);
302
303 // Evaluate the conditional in the while header. C99 6.8.5.1: The evaluation
304 // of the controlling expression takes place before each execution of the loop
305 // body.
306 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel2c30d8f2007-10-09 20:51:27 +0000307
308 // while(1) is common, avoid extra exit blocks. Be sure
Reid Spencer5f016e22007-07-11 17:01:13 +0000309 // to correctly handle break/continue though.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000310 bool EmitBoolCondBranch = true;
311 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
312 if (C->isOne())
313 EmitBoolCondBranch = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000314
315 // Create an exit block for when the condition fails, create a block for the
316 // body of the loop.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000317 llvm::BasicBlock *ExitBlock = createBasicBlock("while.end");
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000318 llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
Reid Spencer5f016e22007-07-11 17:01:13 +0000319
320 // As long as the condition is true, go to the loop body.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000321 if (EmitBoolCondBranch)
322 Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock);
Chris Lattner31a09842008-11-12 08:04:58 +0000323
Chris Lattnerda138702007-07-16 21:28:45 +0000324 // Store the blocks to use for break and continue.
325 BreakContinueStack.push_back(BreakContinue(ExitBlock, LoopHeader));
Reid Spencer5f016e22007-07-11 17:01:13 +0000326
327 // Emit the loop body.
328 EmitBlock(LoopBody);
329 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000330
331 BreakContinueStack.pop_back();
Reid Spencer5f016e22007-07-11 17:01:13 +0000332
333 // Cycle to the condition.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000334 EmitBranch(LoopHeader);
Reid Spencer5f016e22007-07-11 17:01:13 +0000335
336 // Emit the exit block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000337 EmitBlock(ExitBlock, true);
Devang Patel2c30d8f2007-10-09 20:51:27 +0000338
339 // If LoopHeader is a simple forwarding block then eliminate it.
340 if (!EmitBoolCondBranch
341 && &LoopHeader->front() == LoopHeader->getTerminator()) {
342 LoopHeader->replaceAllUsesWith(LoopBody);
343 LoopHeader->getTerminator()->eraseFromParent();
344 LoopHeader->eraseFromParent();
345 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000346}
347
348void CodeGenFunction::EmitDoStmt(const DoStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000349 // Emit the body for the loop, insert it, which will create an uncond br to
350 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000351 llvm::BasicBlock *LoopBody = createBasicBlock("do.body");
352 llvm::BasicBlock *AfterDo = createBasicBlock("do.end");
Reid Spencer5f016e22007-07-11 17:01:13 +0000353 EmitBlock(LoopBody);
Chris Lattnerda138702007-07-16 21:28:45 +0000354
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000355 llvm::BasicBlock *DoCond = createBasicBlock("do.cond");
Chris Lattnerda138702007-07-16 21:28:45 +0000356
357 // Store the blocks to use for break and continue.
358 BreakContinueStack.push_back(BreakContinue(AfterDo, DoCond));
Reid Spencer5f016e22007-07-11 17:01:13 +0000359
360 // Emit the body of the loop into the block.
361 EmitStmt(S.getBody());
362
Chris Lattnerda138702007-07-16 21:28:45 +0000363 BreakContinueStack.pop_back();
364
365 EmitBlock(DoCond);
366
Reid Spencer5f016e22007-07-11 17:01:13 +0000367 // C99 6.8.5.2: "The evaluation of the controlling expression takes place
368 // after each execution of the loop body."
369
370 // Evaluate the conditional in the while header.
371 // C99 6.8.5p2/p4: The first substatement is executed if the expression
372 // compares unequal to 0. The condition must be a scalar type.
373 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000374
375 // "do {} while (0)" is common in macros, avoid extra blocks. Be sure
376 // to correctly handle break/continue though.
377 bool EmitBoolCondBranch = true;
378 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
379 if (C->isZero())
380 EmitBoolCondBranch = false;
381
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 // As long as the condition is true, iterate the loop.
Devang Patel05f6e6b2007-10-09 20:33:39 +0000383 if (EmitBoolCondBranch)
384 Builder.CreateCondBr(BoolCondVal, LoopBody, AfterDo);
Reid Spencer5f016e22007-07-11 17:01:13 +0000385
386 // Emit the exit block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000387 EmitBlock(AfterDo, true);
Devang Patel05f6e6b2007-10-09 20:33:39 +0000388
389 // If DoCond is a simple forwarding block then eliminate it.
390 if (!EmitBoolCondBranch && &DoCond->front() == DoCond->getTerminator()) {
391 DoCond->replaceAllUsesWith(AfterDo);
392 DoCond->getTerminator()->eraseFromParent();
393 DoCond->eraseFromParent();
394 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000395}
396
397void CodeGenFunction::EmitForStmt(const ForStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000398 // FIXME: What do we do if the increment (f.e.) contains a stmt expression,
399 // which contains a continue/break?
Chris Lattnerda138702007-07-16 21:28:45 +0000400
Reid Spencer5f016e22007-07-11 17:01:13 +0000401 // Evaluate the first part before the loop.
402 if (S.getInit())
403 EmitStmt(S.getInit());
404
405 // Start the loop with a block that tests the condition.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000406 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
407 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Chris Lattnerda138702007-07-16 21:28:45 +0000408
Reid Spencer5f016e22007-07-11 17:01:13 +0000409 EmitBlock(CondBlock);
410
411 // Evaluate the condition if present. If not, treat it as a non-zero-constant
412 // according to 6.8.5.3p2, aka, true.
413 if (S.getCond()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000414 // As long as the condition is true, iterate the loop.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000415 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Chris Lattner31a09842008-11-12 08:04:58 +0000416
417 // C99 6.8.5p2/p4: The first substatement is executed if the expression
418 // compares unequal to 0. The condition must be a scalar type.
419 EmitBranchOnBoolExpr(S.getCond(), ForBody, AfterFor);
420
Reid Spencer5f016e22007-07-11 17:01:13 +0000421 EmitBlock(ForBody);
422 } else {
423 // Treat it as a non-zero constant. Don't even create a new block for the
424 // body, just fall into it.
425 }
426
Chris Lattnerda138702007-07-16 21:28:45 +0000427 // If the for loop doesn't have an increment we can just use the
428 // condition as the continue block.
429 llvm::BasicBlock *ContinueBlock;
430 if (S.getInc())
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000431 ContinueBlock = createBasicBlock("for.inc");
Chris Lattnerda138702007-07-16 21:28:45 +0000432 else
433 ContinueBlock = CondBlock;
434
435 // Store the blocks to use for break and continue.
436 BreakContinueStack.push_back(BreakContinue(AfterFor, ContinueBlock));
437
Reid Spencer5f016e22007-07-11 17:01:13 +0000438 // If the condition is true, execute the body of the for stmt.
439 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000440
441 BreakContinueStack.pop_back();
442
Reid Spencer5f016e22007-07-11 17:01:13 +0000443 // If there is an increment, emit it next.
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000444 if (S.getInc()) {
445 EmitBlock(ContinueBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000446 EmitStmt(S.getInc());
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000447 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000448
449 // Finally, branch back up to the condition for the next iteration.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000450 EmitBranch(CondBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000451
Chris Lattnerda138702007-07-16 21:28:45 +0000452 // Emit the fall-through block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000453 EmitBlock(AfterFor, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000454}
455
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000456void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
457 if (RV.isScalar()) {
458 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
459 } else if (RV.isAggregate()) {
460 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
461 } else {
462 StoreComplexToAddr(RV.getComplexVal(), ReturnValue, false);
463 }
Daniel Dunbard57a8712008-11-11 09:41:28 +0000464 EmitBranch(ReturnBlock);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000465}
466
Reid Spencer5f016e22007-07-11 17:01:13 +0000467/// EmitReturnStmt - Note that due to GCC extensions, this can have an operand
468/// if the function returns void, or may be missing one if the function returns
469/// non-void. Fun stuff :).
470void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000471 // Emit the result value, even if unused, to evalute the side effects.
472 const Expr *RV = S.getRetValue();
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000473
474 // FIXME: Clean this up by using an LValue for ReturnTemp,
475 // EmitStoreThroughLValue, and EmitAnyExpr.
476 if (!ReturnValue) {
477 // Make sure not to return anything, but evaluate the expression
478 // for side effects.
479 if (RV)
Eli Friedman144ac612008-05-22 01:22:33 +0000480 EmitAnyExpr(RV);
Reid Spencer5f016e22007-07-11 17:01:13 +0000481 } else if (RV == 0) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000482 // Do nothing (return value is left uninitialized)
Chris Lattner4b0029d2007-08-26 07:14:44 +0000483 } else if (!hasAggregateLLVMType(RV->getType())) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000484 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
Chris Lattner9b2dc282008-04-04 16:54:41 +0000485 } else if (RV->getType()->isAnyComplexType()) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000486 EmitComplexExprIntoAddr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000487 } else {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000488 EmitAggExpr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000489 }
Eli Friedman144ac612008-05-22 01:22:33 +0000490
Daniel Dunbar898d5082008-09-30 01:06:03 +0000491 if (!ObjCEHStack.empty()) {
492 for (ObjCEHStackType::reverse_iterator i = ObjCEHStack.rbegin(),
493 e = ObjCEHStack.rend(); i != e; ++i) {
Daniel Dunbar55e87422008-11-11 02:29:29 +0000494 llvm::BasicBlock *ReturnPad = createBasicBlock("return.pad");
Daniel Dunbar898d5082008-09-30 01:06:03 +0000495 EmitJumpThroughFinally(*i, ReturnPad);
496 EmitBlock(ReturnPad);
497 }
498 }
499
Daniel Dunbard57a8712008-11-11 09:41:28 +0000500 EmitBranch(ReturnBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000501}
502
503void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
Ted Kremeneke4ea1f42008-10-06 18:42:27 +0000504 for (DeclStmt::const_decl_iterator I = S.decl_begin(), E = S.decl_end();
505 I != E; ++I)
506 EmitDecl(**I);
Chris Lattner6fa5f092007-07-12 15:43:07 +0000507}
Chris Lattnerda138702007-07-16 21:28:45 +0000508
Daniel Dunbar09124252008-11-12 08:21:33 +0000509void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000510 assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
511
Daniel Dunbar09124252008-11-12 08:21:33 +0000512 // FIXME: Implement break in @try or @catch blocks.
513 if (!ObjCEHStack.empty()) {
514 CGM.ErrorUnsupported(&S, "continue inside an Obj-C exception block");
515 return;
516 }
517
518 // If this code is reachable then emit a stop point (if generating
519 // debug info). We have to do this ourselves because we are on the
520 // "simple" statement path.
521 if (HaveInsertPoint())
522 EmitStopPoint(&S);
Chris Lattnerda138702007-07-16 21:28:45 +0000523 llvm::BasicBlock *Block = BreakContinueStack.back().BreakBlock;
Daniel Dunbard57a8712008-11-11 09:41:28 +0000524 EmitBranch(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000525}
526
Daniel Dunbar09124252008-11-12 08:21:33 +0000527void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000528 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
529
Daniel Dunbar09124252008-11-12 08:21:33 +0000530 // FIXME: Implement continue in @try or @catch blocks.
531 if (!ObjCEHStack.empty()) {
532 CGM.ErrorUnsupported(&S, "continue inside an Obj-C exception block");
533 return;
534 }
535
536 // If this code is reachable then emit a stop point (if generating
537 // debug info). We have to do this ourselves because we are on the
538 // "simple" statement path.
539 if (HaveInsertPoint())
540 EmitStopPoint(&S);
Chris Lattnerda138702007-07-16 21:28:45 +0000541 llvm::BasicBlock *Block = BreakContinueStack.back().ContinueBlock;
Daniel Dunbard57a8712008-11-11 09:41:28 +0000542 EmitBranch(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000543}
Devang Patel51b09f22007-10-04 23:45:31 +0000544
Devang Patelc049e4f2007-10-08 20:57:48 +0000545/// EmitCaseStmtRange - If case statement range is not too big then
546/// add multiple cases to switch instruction, one for each value within
547/// the range. If range is too big then emit "if" condition check.
548void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000549 assert(S.getRHS() && "Expected RHS value in CaseStmt");
Devang Patelc049e4f2007-10-08 20:57:48 +0000550
Anders Carlsson51fe9962008-11-22 21:04:56 +0000551 llvm::APSInt LHS = S.getLHS()->EvaluateAsInt(getContext());
552 llvm::APSInt RHS = S.getRHS()->EvaluateAsInt(getContext());
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000553
Daniel Dunbar16f23572008-07-25 01:11:38 +0000554 // Emit the code for this case. We do this first to make sure it is
555 // properly chained from our predecessor before generating the
556 // switch machinery to enter this block.
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000557 EmitBlock(createBasicBlock("sw.bb"));
Daniel Dunbar16f23572008-07-25 01:11:38 +0000558 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
559 EmitStmt(S.getSubStmt());
560
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000561 // If range is empty, do nothing.
562 if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))
563 return;
Devang Patelc049e4f2007-10-08 20:57:48 +0000564
565 llvm::APInt Range = RHS - LHS;
Daniel Dunbar16f23572008-07-25 01:11:38 +0000566 // FIXME: parameters such as this should not be hardcoded.
Devang Patelc049e4f2007-10-08 20:57:48 +0000567 if (Range.ult(llvm::APInt(Range.getBitWidth(), 64))) {
568 // Range is small enough to add multiple switch instruction cases.
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000569 for (unsigned i = 0, e = Range.getZExtValue() + 1; i != e; ++i) {
Devang Patel2d79d0f2007-10-05 20:54:07 +0000570 SwitchInsn->addCase(llvm::ConstantInt::get(LHS), CaseDest);
571 LHS++;
572 }
Devang Patelc049e4f2007-10-08 20:57:48 +0000573 return;
574 }
575
Daniel Dunbar16f23572008-07-25 01:11:38 +0000576 // The range is too big. Emit "if" condition into a new block,
577 // making sure to save and restore the current insertion point.
578 llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
Devang Patel2d79d0f2007-10-05 20:54:07 +0000579
Daniel Dunbar16f23572008-07-25 01:11:38 +0000580 // Push this test onto the chain of range checks (which terminates
581 // in the default basic block). The switch's default will be changed
582 // to the top of this chain after switch emission is complete.
583 llvm::BasicBlock *FalseDest = CaseRangeBlock;
Daniel Dunbar55e87422008-11-11 02:29:29 +0000584 CaseRangeBlock = createBasicBlock("sw.caserange");
Devang Patelc049e4f2007-10-08 20:57:48 +0000585
Daniel Dunbar16f23572008-07-25 01:11:38 +0000586 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
587 Builder.SetInsertPoint(CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000588
589 // Emit range check.
590 llvm::Value *Diff =
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000591 Builder.CreateSub(SwitchInsn->getCondition(), llvm::ConstantInt::get(LHS),
592 "tmp");
Devang Patelc049e4f2007-10-08 20:57:48 +0000593 llvm::Value *Cond =
594 Builder.CreateICmpULE(Diff, llvm::ConstantInt::get(Range), "tmp");
595 Builder.CreateCondBr(Cond, CaseDest, FalseDest);
596
Daniel Dunbar16f23572008-07-25 01:11:38 +0000597 // Restore the appropriate insertion point.
Daniel Dunbara448fb22008-11-11 23:11:34 +0000598 if (RestoreBB)
599 Builder.SetInsertPoint(RestoreBB);
600 else
601 Builder.ClearInsertionPoint();
Devang Patelc049e4f2007-10-08 20:57:48 +0000602}
603
604void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
605 if (S.getRHS()) {
606 EmitCaseStmtRange(S);
607 return;
608 }
609
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000610 EmitBlock(createBasicBlock("sw.bb"));
Devang Patelc049e4f2007-10-08 20:57:48 +0000611 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
Anders Carlsson51fe9962008-11-22 21:04:56 +0000612 llvm::APSInt CaseVal = S.getLHS()->EvaluateAsInt(getContext());
Daniel Dunbar55e87422008-11-11 02:29:29 +0000613 SwitchInsn->addCase(llvm::ConstantInt::get(CaseVal), CaseDest);
Devang Patel51b09f22007-10-04 23:45:31 +0000614 EmitStmt(S.getSubStmt());
615}
616
617void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
Daniel Dunbar16f23572008-07-25 01:11:38 +0000618 llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
Daniel Dunbar55e87422008-11-11 02:29:29 +0000619 assert(DefaultBlock->empty() &&
620 "EmitDefaultStmt: Default block already defined?");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000621 EmitBlock(DefaultBlock);
Devang Patel51b09f22007-10-04 23:45:31 +0000622 EmitStmt(S.getSubStmt());
623}
624
625void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
626 llvm::Value *CondV = EmitScalarExpr(S.getCond());
627
628 // Handle nested switch statements.
629 llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000630 llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000631
Daniel Dunbar16f23572008-07-25 01:11:38 +0000632 // Create basic block to hold stuff that comes after switch
633 // statement. We also need to create a default block now so that
634 // explicit case ranges tests can have a place to jump to on
635 // failure.
Daniel Dunbar55e87422008-11-11 02:29:29 +0000636 llvm::BasicBlock *NextBlock = createBasicBlock("sw.epilog");
637 llvm::BasicBlock *DefaultBlock = createBasicBlock("sw.default");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000638 SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
639 CaseRangeBlock = DefaultBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000640
Daniel Dunbar09124252008-11-12 08:21:33 +0000641 // Clear the insertion point to indicate we are in unreachable code.
642 Builder.ClearInsertionPoint();
Eli Friedmand28a80d2008-05-12 16:08:04 +0000643
Devang Patele9b8c0a2007-10-30 20:59:40 +0000644 // All break statements jump to NextBlock. If BreakContinueStack is non empty
645 // then reuse last ContinueBlock.
Devang Patel51b09f22007-10-04 23:45:31 +0000646 llvm::BasicBlock *ContinueBlock = NULL;
647 if (!BreakContinueStack.empty())
648 ContinueBlock = BreakContinueStack.back().ContinueBlock;
649 BreakContinueStack.push_back(BreakContinue(NextBlock, ContinueBlock));
650
651 // Emit switch body.
652 EmitStmt(S.getBody());
653 BreakContinueStack.pop_back();
654
Daniel Dunbar16f23572008-07-25 01:11:38 +0000655 // Update the default block in case explicit case range tests have
656 // been chained on top.
657 SwitchInsn->setSuccessor(0, CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000658
Daniel Dunbar16f23572008-07-25 01:11:38 +0000659 // If a default was never emitted then reroute any jumps to it and
660 // discard.
661 if (!DefaultBlock->getParent()) {
662 DefaultBlock->replaceAllUsesWith(NextBlock);
663 delete DefaultBlock;
664 }
Devang Patel51b09f22007-10-04 23:45:31 +0000665
Daniel Dunbar16f23572008-07-25 01:11:38 +0000666 // Emit continuation.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000667 EmitBlock(NextBlock, true);
Daniel Dunbar16f23572008-07-25 01:11:38 +0000668
Devang Patel51b09f22007-10-04 23:45:31 +0000669 SwitchInsn = SavedSwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000670 CaseRangeBlock = SavedCRBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000671}
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000672
Anders Carlssonce179ab2008-11-09 18:54:14 +0000673static std::string ConvertAsmString(const AsmStmt& S, bool &Failed)
674{
675 // FIXME: No need to create new std::string here, we could just make sure
676 // that we don't read past the end of the string data.
677 std::string str(S.getAsmString()->getStrData(),
678 S.getAsmString()->getByteLength());
679 const char *Start = str.c_str();
680
681 unsigned NumOperands = S.getNumOutputs() + S.getNumInputs();
682 bool IsSimple = S.isSimple();
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000683 Failed = false;
684
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000685 static unsigned AsmCounter = 0;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000686 AsmCounter++;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000687 std::string Result;
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000688 if (IsSimple) {
689 while (*Start) {
690 switch (*Start) {
691 default:
692 Result += *Start;
693 break;
694 case '$':
695 Result += "$$";
696 break;
697 }
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000698 Start++;
699 }
700
701 return Result;
702 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000703
704 while (*Start) {
705 switch (*Start) {
706 default:
707 Result += *Start;
708 break;
709 case '$':
710 Result += "$$";
711 break;
712 case '%':
713 // Escaped character
714 Start++;
715 if (!*Start) {
716 // FIXME: This should be caught during Sema.
717 assert(0 && "Trailing '%' in asm string.");
718 }
719
720 char EscapedChar = *Start;
721 if (EscapedChar == '%') {
722 // Escaped percentage sign.
723 Result += '%';
Chris Lattner345f7202008-07-26 20:15:14 +0000724 } else if (EscapedChar == '=') {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000725 // Generate an unique ID.
726 Result += llvm::utostr(AsmCounter);
727 } else if (isdigit(EscapedChar)) {
728 // %n - Assembler operand n
729 char *End;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000730 unsigned long n = strtoul(Start, &End, 10);
731 if (Start == End) {
732 // FIXME: This should be caught during Sema.
733 assert(0 && "Missing operand!");
734 } else if (n >= NumOperands) {
735 // FIXME: This should be caught during Sema.
736 assert(0 && "Operand number out of range!");
737 }
738
739 Result += '$' + llvm::utostr(n);
Lauro Ramos Venancio7695f702008-02-26 19:19:58 +0000740 Start = End - 1;
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000741 } else if (isalpha(EscapedChar)) {
742 char *End;
743
744 unsigned long n = strtoul(Start + 1, &End, 10);
745 if (Start == End) {
746 // FIXME: This should be caught during Sema.
747 assert(0 && "Missing operand!");
748 } else if (n >= NumOperands) {
749 // FIXME: This should be caught during Sema.
750 assert(0 && "Operand number out of range!");
751 }
752
753 Result += "${" + llvm::utostr(n) + ':' + EscapedChar + '}';
Lauro Ramos Venancio7695f702008-02-26 19:19:58 +0000754 Start = End - 1;
Anders Carlssonce179ab2008-11-09 18:54:14 +0000755 } else if (EscapedChar == '[') {
756 std::string SymbolicName;
757
758 Start++;
759
760 while (*Start && *Start != ']') {
761 SymbolicName += *Start;
762
763 Start++;
764 }
765
766 if (!Start) {
767 // FIXME: Should be caught by sema.
768 assert(0 && "Could not parse symbolic name");
769 }
770
771 assert(*Start == ']' && "Error parsing symbolic name");
772
773 int Index = -1;
774
775 // Check if this is an output operand.
776 for (unsigned i = 0; i < S.getNumOutputs(); i++) {
777 if (S.getOutputName(i) == SymbolicName) {
778 Index = i;
779 break;
780 }
781 }
782
783 if (Index == -1) {
784 for (unsigned i = 0; i < S.getNumInputs(); i++) {
785 if (S.getInputName(i) == SymbolicName) {
786 Index = S.getNumOutputs() + i;
787 }
788 }
789 }
790
791 assert(Index != -1 && "Did not find right operand!");
792
793 Result += '$' + llvm::utostr(Index);
794
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000795 } else {
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000796 Failed = true;
797 return "";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000798 }
799 }
800 Start++;
801 }
802
803 return Result;
804}
805
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000806static std::string SimplifyConstraint(const char* Constraint,
807 TargetInfo &Target) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000808 std::string Result;
809
810 while (*Constraint) {
811 switch (*Constraint) {
812 default:
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000813 Result += Target.convertConstraint(*Constraint);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000814 break;
815 // Ignore these
816 case '*':
817 case '?':
818 case '!':
819 break;
820 case 'g':
821 Result += "imr";
822 break;
823 }
824
825 Constraint++;
826 }
827
828 return Result;
829}
830
831void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000832 bool Failed;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000833 std::string AsmString =
Anders Carlssonce179ab2008-11-09 18:54:14 +0000834 ConvertAsmString(S, Failed);
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000835
836 if (Failed) {
837 ErrorUnsupported(&S, "asm string");
838 return;
839 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000840
841 std::string Constraints;
842
843 llvm::Value *ResultAddr = 0;
844 const llvm::Type *ResultType = llvm::Type::VoidTy;
845
846 std::vector<const llvm::Type*> ArgTypes;
847 std::vector<llvm::Value*> Args;
Anders Carlssonf39a4212008-02-05 20:01:53 +0000848
849 // Keep track of inout constraints.
850 std::string InOutConstraints;
851 std::vector<llvm::Value*> InOutArgs;
852 std::vector<const llvm::Type*> InOutArgTypes;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000853
854 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
855 std::string OutputConstraint(S.getOutputConstraint(i)->getStrData(),
856 S.getOutputConstraint(i)->getByteLength());
857
858 TargetInfo::ConstraintInfo Info;
859 bool result = Target.validateOutputConstraint(OutputConstraint.c_str(),
860 Info);
Chris Lattner3304e552008-10-12 00:31:50 +0000861 assert(result && "Failed to parse output constraint"); result=result;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000862
863 // Simplify the output constraint.
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000864 OutputConstraint = SimplifyConstraint(OutputConstraint.c_str() + 1, Target);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000865
866 LValue Dest = EmitLValue(S.getOutputExpr(i));
867 const llvm::Type *DestValueType =
868 cast<llvm::PointerType>(Dest.getAddress()->getType())->getElementType();
869
870 // If the first output operand is not a memory dest, we'll
871 // make it the return value.
872 if (i == 0 && !(Info & TargetInfo::CI_AllowsMemory) &&
Dan Gohmand79a7262008-05-22 22:12:56 +0000873 DestValueType->isSingleValueType()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000874 ResultAddr = Dest.getAddress();
875 ResultType = DestValueType;
876 Constraints += "=" + OutputConstraint;
877 } else {
878 ArgTypes.push_back(Dest.getAddress()->getType());
Anders Carlssoncad3ab62008-02-05 16:57:38 +0000879 Args.push_back(Dest.getAddress());
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000880 if (i != 0)
881 Constraints += ',';
Anders Carlssonf39a4212008-02-05 20:01:53 +0000882 Constraints += "=*";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000883 Constraints += OutputConstraint;
Anders Carlssonf39a4212008-02-05 20:01:53 +0000884 }
885
886 if (Info & TargetInfo::CI_ReadWrite) {
887 // FIXME: This code should be shared with the code that handles inputs.
888 InOutConstraints += ',';
889
890 const Expr *InputExpr = S.getOutputExpr(i);
891 llvm::Value *Arg;
892 if ((Info & TargetInfo::CI_AllowsRegister) ||
893 !(Info & TargetInfo::CI_AllowsMemory)) {
Dan Gohmand79a7262008-05-22 22:12:56 +0000894 if (ConvertType(InputExpr->getType())->isSingleValueType()) {
Anders Carlssonf39a4212008-02-05 20:01:53 +0000895 Arg = EmitScalarExpr(InputExpr);
896 } else {
Chris Lattner62b72f62008-11-11 07:24:28 +0000897 ErrorUnsupported(&S,
898 "asm statement passing multiple-value types as inputs");
Anders Carlssonf39a4212008-02-05 20:01:53 +0000899 }
900 } else {
901 LValue Dest = EmitLValue(InputExpr);
902 Arg = Dest.getAddress();
903 InOutConstraints += '*';
904 }
905
906 InOutArgTypes.push_back(Arg->getType());
907 InOutArgs.push_back(Arg);
908 InOutConstraints += OutputConstraint;
909 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000910 }
911
912 unsigned NumConstraints = S.getNumOutputs() + S.getNumInputs();
913
914 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
915 const Expr *InputExpr = S.getInputExpr(i);
916
917 std::string InputConstraint(S.getInputConstraint(i)->getStrData(),
918 S.getInputConstraint(i)->getByteLength());
919
920 TargetInfo::ConstraintInfo Info;
921 bool result = Target.validateInputConstraint(InputConstraint.c_str(),
Chris Lattner3304e552008-10-12 00:31:50 +0000922 NumConstraints, Info);
923 assert(result && "Failed to parse input constraint"); result=result;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000924
925 if (i != 0 || S.getNumOutputs() > 0)
926 Constraints += ',';
927
928 // Simplify the input constraint.
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000929 InputConstraint = SimplifyConstraint(InputConstraint.c_str(), Target);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000930
931 llvm::Value *Arg;
932
933 if ((Info & TargetInfo::CI_AllowsRegister) ||
934 !(Info & TargetInfo::CI_AllowsMemory)) {
Dan Gohmand79a7262008-05-22 22:12:56 +0000935 if (ConvertType(InputExpr->getType())->isSingleValueType()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000936 Arg = EmitScalarExpr(InputExpr);
937 } else {
Chris Lattner62b72f62008-11-11 07:24:28 +0000938 ErrorUnsupported(&S,
939 "asm statement passing multiple-value types as inputs");
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000940 }
941 } else {
942 LValue Dest = EmitLValue(InputExpr);
943 Arg = Dest.getAddress();
944 Constraints += '*';
945 }
946
947 ArgTypes.push_back(Arg->getType());
948 Args.push_back(Arg);
949 Constraints += InputConstraint;
950 }
951
Anders Carlssonf39a4212008-02-05 20:01:53 +0000952 // Append the "input" part of inout constraints last.
953 for (unsigned i = 0, e = InOutArgs.size(); i != e; i++) {
954 ArgTypes.push_back(InOutArgTypes[i]);
955 Args.push_back(InOutArgs[i]);
956 }
957 Constraints += InOutConstraints;
958
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000959 // Clobbers
960 for (unsigned i = 0, e = S.getNumClobbers(); i != e; i++) {
961 std::string Clobber(S.getClobber(i)->getStrData(),
962 S.getClobber(i)->getByteLength());
963
964 Clobber = Target.getNormalizedGCCRegisterName(Clobber.c_str());
965
Anders Carlssonea041752008-02-06 00:11:32 +0000966 if (i != 0 || NumConstraints != 0)
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000967 Constraints += ',';
Anders Carlssonea041752008-02-06 00:11:32 +0000968
969 Constraints += "~{";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000970 Constraints += Clobber;
Anders Carlssonea041752008-02-06 00:11:32 +0000971 Constraints += '}';
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000972 }
973
974 // Add machine specific clobbers
975 if (const char *C = Target.getClobbers()) {
976 if (!Constraints.empty())
977 Constraints += ',';
978 Constraints += C;
979 }
Anders Carlssonf39a4212008-02-05 20:01:53 +0000980
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000981 const llvm::FunctionType *FTy =
982 llvm::FunctionType::get(ResultType, ArgTypes, false);
983
984 llvm::InlineAsm *IA =
985 llvm::InlineAsm::get(FTy, AsmString, Constraints,
986 S.isVolatile() || S.getNumOutputs() == 0);
987 llvm::Value *Result = Builder.CreateCall(IA, Args.begin(), Args.end(), "");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000988 if (ResultAddr) // FIXME: volatility
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000989 Builder.CreateStore(Result, ResultAddr);
990}