blob: 85ea8c5e31c85bf695f5c029f2f177c22c8e729b [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGStmt.cpp - Emit LLVM Code from Statements ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Stmt nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000014#include "CGDebugInfo.h"
15#include "CodeGenModule.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "CodeGenFunction.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/StmtVisitor.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000018#include "clang/Basic/TargetInfo.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000019#include "llvm/ADT/StringExtras.h"
Anders Carlsson17d28a32008-12-12 05:52:00 +000020#include "llvm/InlineAsm.h"
21#include "llvm/Intrinsics.h"
Anders Carlssonebaae2a2009-01-12 02:22:13 +000022#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24using namespace CodeGen;
25
26//===----------------------------------------------------------------------===//
27// Statement Emission
28//===----------------------------------------------------------------------===//
29
Daniel Dunbar09124252008-11-12 08:21:33 +000030void CodeGenFunction::EmitStopPoint(const Stmt *S) {
31 if (CGDebugInfo *DI = CGM.getDebugInfo()) {
32 DI->setLocation(S->getLocStart());
33 DI->EmitStopPoint(CurFn, Builder);
34 }
35}
36
Reid Spencer5f016e22007-07-11 17:01:13 +000037void CodeGenFunction::EmitStmt(const Stmt *S) {
38 assert(S && "Null statement?");
Daniel Dunbara448fb22008-11-11 23:11:34 +000039
Daniel Dunbar09124252008-11-12 08:21:33 +000040 // Check if we can handle this without bothering to generate an
41 // insert point or debug info.
42 if (EmitSimpleStmt(S))
43 return;
44
Daniel Dunbara448fb22008-11-11 23:11:34 +000045 // If we happen to be at an unreachable point just create a dummy
46 // basic block to hold the code. We could change parts of irgen to
47 // simply not generate this code, but this situation is rare and
48 // probably not worth the effort.
49 // FIXME: Verify previous performance/effort claim.
50 EnsureInsertPoint();
Reid Spencer5f016e22007-07-11 17:01:13 +000051
Daniel Dunbar09124252008-11-12 08:21:33 +000052 // Generate a stoppoint if we are emitting debug info.
53 EmitStopPoint(S);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000054
Reid Spencer5f016e22007-07-11 17:01:13 +000055 switch (S->getStmtClass()) {
56 default:
Chris Lattner1e4d21e2007-08-26 22:58:05 +000057 // Must be an expression in a stmt context. Emit the value (to get
58 // side-effects) and ignore the result.
Reid Spencer5f016e22007-07-11 17:01:13 +000059 if (const Expr *E = dyn_cast<Expr>(S)) {
Chris Lattner1e4d21e2007-08-26 22:58:05 +000060 if (!hasAggregateLLVMType(E->getType()))
61 EmitScalarExpr(E);
Chris Lattner9b2dc282008-04-04 16:54:41 +000062 else if (E->getType()->isAnyComplexType())
Chris Lattner1e4d21e2007-08-26 22:58:05 +000063 EmitComplexExpr(E);
64 else
65 EmitAggExpr(E, 0, false);
Reid Spencer5f016e22007-07-11 17:01:13 +000066 } else {
Daniel Dunbar488e9932008-08-16 00:56:44 +000067 ErrorUnsupported(S, "statement");
Reid Spencer5f016e22007-07-11 17:01:13 +000068 }
69 break;
Daniel Dunbar0ffb1252008-08-04 16:51:22 +000070 case Stmt::IndirectGotoStmtClass:
71 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break;
Reid Spencer5f016e22007-07-11 17:01:13 +000072
73 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
74 case Stmt::WhileStmtClass: EmitWhileStmt(cast<WhileStmt>(*S)); break;
75 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break;
76 case Stmt::ForStmtClass: EmitForStmt(cast<ForStmt>(*S)); break;
77
78 case Stmt::ReturnStmtClass: EmitReturnStmt(cast<ReturnStmt>(*S)); break;
79 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
Daniel Dunbara4275d12008-10-02 18:02:06 +000080
Devang Patel51b09f22007-10-04 23:45:31 +000081 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000082 case Stmt::AsmStmtClass: EmitAsmStmt(cast<AsmStmt>(*S)); break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000083
84 case Stmt::ObjCAtTryStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000085 EmitObjCAtTryStmt(cast<ObjCAtTryStmt>(*S));
86 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000087 case Stmt::ObjCAtCatchStmtClass:
Anders Carlssondde0a942008-09-11 09:15:33 +000088 assert(0 && "@catch statements should be handled by EmitObjCAtTryStmt");
89 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +000090 case Stmt::ObjCAtFinallyStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000091 assert(0 && "@finally statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +000092 break;
93 case Stmt::ObjCAtThrowStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000094 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000095 break;
96 case Stmt::ObjCAtSynchronizedStmtClass:
Chris Lattner10cac6f2008-11-15 21:26:17 +000097 EmitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +000098 break;
Anders Carlsson3d8400d2008-08-30 19:51:14 +000099 case Stmt::ObjCForCollectionStmtClass:
100 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000101 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 }
103}
104
Daniel Dunbar09124252008-11-12 08:21:33 +0000105bool CodeGenFunction::EmitSimpleStmt(const Stmt *S) {
106 switch (S->getStmtClass()) {
107 default: return false;
108 case Stmt::NullStmtClass: break;
109 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
110 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break;
111 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break;
112 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
113 case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break;
114 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break;
115 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
116 }
117
118 return true;
119}
120
Chris Lattner33793202007-08-31 22:09:40 +0000121/// EmitCompoundStmt - Emit a compound statement {..} node. If GetLast is true,
122/// this captures the expression result of the last sub-statement and returns it
123/// (for use by the statement expression extension).
Chris Lattner9b655512007-08-31 22:49:20 +0000124RValue CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
125 llvm::Value *AggLoc, bool isAggVol) {
Anders Carlssonc71c8452009-02-07 23:50:39 +0000126
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000127 CGDebugInfo *DI = CGM.getDebugInfo();
128 if (DI) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000129 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000130 DI->setLocation(S.getLBracLoc());
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000131 DI->EmitRegionStart(CurFn, Builder);
132 }
133
Anders Carlssonc71c8452009-02-07 23:50:39 +0000134 // Keep track of the current cleanup stack depth.
135 size_t CleanupStackDepth = CleanupEntries.size();
Anders Carlsson74331892009-02-09 20:23:40 +0000136 bool OldDidCallStackSave = DidCallStackSave;
137
Chris Lattner33793202007-08-31 22:09:40 +0000138 for (CompoundStmt::const_body_iterator I = S.body_begin(),
139 E = S.body_end()-GetLast; I != E; ++I)
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 EmitStmt(*I);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000141
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000142 if (DI) {
Daniel Dunbara448fb22008-11-11 23:11:34 +0000143 EnsureInsertPoint();
Daniel Dunbar66031a52008-10-17 16:15:48 +0000144 DI->setLocation(S.getRBracLoc());
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000145 DI->EmitRegionEnd(CurFn, Builder);
146 }
147
Anders Carlsson17d28a32008-12-12 05:52:00 +0000148 RValue RV;
149 if (!GetLast)
150 RV = RValue::get(0);
151 else {
152 // We have to special case labels here. They are statements, but when put
153 // at the end of a statement expression, they yield the value of their
154 // subexpression. Handle this by walking through all labels we encounter,
155 // emitting them before we evaluate the subexpr.
156 const Stmt *LastStmt = S.body_back();
157 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
158 EmitLabel(*LS);
159 LastStmt = LS->getSubStmt();
160 }
Chris Lattner9b655512007-08-31 22:49:20 +0000161
Anders Carlsson17d28a32008-12-12 05:52:00 +0000162 EnsureInsertPoint();
163
164 RV = EmitAnyExpr(cast<Expr>(LastStmt), AggLoc);
165 }
166
Anders Carlsson74331892009-02-09 20:23:40 +0000167 DidCallStackSave = OldDidCallStackSave;
168
Anders Carlssonc71c8452009-02-07 23:50:39 +0000169 EmitCleanupBlocks(CleanupStackDepth);
170
Anders Carlsson17d28a32008-12-12 05:52:00 +0000171 return RV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000172}
173
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000174void CodeGenFunction::EmitBlock(llvm::BasicBlock *BB, bool IsFinished) {
Daniel Dunbard57a8712008-11-11 09:41:28 +0000175 // Fall out of the current block (if necessary).
176 EmitBranch(BB);
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000177
178 if (IsFinished && BB->use_empty()) {
179 delete BB;
180 return;
181 }
182
Anders Carlssonbd6fa3d2009-02-08 00:16:35 +0000183 // If necessary, associate the block with the cleanup stack size.
184 if (!CleanupEntries.empty()) {
185 BlockScopes[BB] = CleanupEntries.size() - 1;
186 CleanupEntries.back().Blocks.push_back(BB);
187 }
188
Reid Spencer5f016e22007-07-11 17:01:13 +0000189 CurFn->getBasicBlockList().push_back(BB);
190 Builder.SetInsertPoint(BB);
191}
192
Daniel Dunbard57a8712008-11-11 09:41:28 +0000193void CodeGenFunction::EmitBranch(llvm::BasicBlock *Target) {
194 // Emit a branch from the current block to the target one if this
195 // was a real block. If this was just a fall-through block after a
196 // terminator, don't emit it.
197 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
198
199 if (!CurBB || CurBB->getTerminator()) {
200 // If there is no insert point or the previous block is already
201 // terminated, don't touch it.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000202 } else {
203 // Otherwise, create a fall-through branch.
204 Builder.CreateBr(Target);
205 }
Daniel Dunbar5e08ad32008-11-11 22:06:59 +0000206
207 Builder.ClearInsertionPoint();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000208}
209
Mike Stumpec9771d2009-02-08 09:22:19 +0000210void CodeGenFunction::EmitLabel(const LabelStmt &S) {
Anders Carlssonfa1f7562009-02-10 06:07:49 +0000211 EmitBlock(getBasicBlockForLabel(&S));
Chris Lattner91d723d2008-07-26 20:23:23 +0000212}
213
214
215void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
216 EmitLabel(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000217 EmitStmt(S.getSubStmt());
218}
219
220void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000221 // If this code is reachable then emit a stop point (if generating
222 // debug info). We have to do this ourselves because we are on the
223 // "simple" statement path.
224 if (HaveInsertPoint())
225 EmitStopPoint(&S);
Mike Stump36a2ada2009-02-07 12:52:26 +0000226
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000227 EmitBranchThroughCleanup(getBasicBlockForLabel(S.getLabel()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000228}
229
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000230void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) {
231 // Emit initial switch which will be patched up later by
232 // EmitIndirectSwitches(). We need a default dest, so we use the
233 // current BB, but this is overwritten.
234 llvm::Value *V = Builder.CreatePtrToInt(EmitScalarExpr(S.getTarget()),
235 llvm::Type::Int32Ty,
236 "addr");
237 llvm::SwitchInst *I = Builder.CreateSwitch(V, Builder.GetInsertBlock());
238 IndirectSwitches.push_back(I);
239
Daniel Dunbara448fb22008-11-11 23:11:34 +0000240 // Clear the insertion point to indicate we are in unreachable code.
241 Builder.ClearInsertionPoint();
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000242}
243
Chris Lattner62b72f62008-11-11 07:24:28 +0000244void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000245 // C99 6.8.4.1: The first substatement is executed if the expression compares
246 // unequal to 0. The condition must be a scalar type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000247
Chris Lattner9bc47e22008-11-12 07:46:33 +0000248 // If the condition constant folds and can be elided, try to avoid emitting
249 // the condition and the dead arm of the if/else.
Chris Lattner31a09842008-11-12 08:04:58 +0000250 if (int Cond = ConstantFoldsToSimpleInteger(S.getCond())) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000251 // Figure out which block (then or else) is executed.
252 const Stmt *Executed = S.getThen(), *Skipped = S.getElse();
Chris Lattner9bc47e22008-11-12 07:46:33 +0000253 if (Cond == -1) // Condition false?
Chris Lattner62b72f62008-11-11 07:24:28 +0000254 std::swap(Executed, Skipped);
Chris Lattner9bc47e22008-11-12 07:46:33 +0000255
Chris Lattner62b72f62008-11-11 07:24:28 +0000256 // If the skipped block has no labels in it, just emit the executed block.
257 // This avoids emitting dead code and simplifies the CFG substantially.
Chris Lattner9bc47e22008-11-12 07:46:33 +0000258 if (!ContainsLabel(Skipped)) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000259 if (Executed)
260 EmitStmt(Executed);
261 return;
262 }
263 }
Chris Lattner9bc47e22008-11-12 07:46:33 +0000264
265 // Otherwise, the condition did not fold, or we couldn't elide it. Just emit
266 // the conditional branch.
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000267 llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
268 llvm::BasicBlock *ContBlock = createBasicBlock("if.end");
269 llvm::BasicBlock *ElseBlock = ContBlock;
Reid Spencer5f016e22007-07-11 17:01:13 +0000270 if (S.getElse())
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000271 ElseBlock = createBasicBlock("if.else");
272 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000273
274 // Emit the 'then' code.
275 EmitBlock(ThenBlock);
276 EmitStmt(S.getThen());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000277 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000278
279 // Emit the 'else' code if present.
280 if (const Stmt *Else = S.getElse()) {
281 EmitBlock(ElseBlock);
282 EmitStmt(Else);
Daniel Dunbard57a8712008-11-11 09:41:28 +0000283 EmitBranch(ContBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 }
285
286 // Emit the continuation block for code after the if.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000287 EmitBlock(ContBlock, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000288}
289
290void CodeGenFunction::EmitWhileStmt(const WhileStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000291 // Emit the header for the loop, insert it, which will create an uncond br to
292 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000293 llvm::BasicBlock *LoopHeader = createBasicBlock("while.cond");
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 EmitBlock(LoopHeader);
Mike Stump72cac2c2009-02-07 18:08:12 +0000295
296 // Create an exit block for when the condition fails, create a block for the
297 // body of the loop.
298 llvm::BasicBlock *ExitBlock = createBasicBlock("while.end");
299 llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
300
301 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000302 BreakContinueStack.push_back(BreakContinue(ExitBlock, LoopHeader));
Reid Spencer5f016e22007-07-11 17:01:13 +0000303
Mike Stump16b16202009-02-07 17:18:33 +0000304 // Evaluate the conditional in the while header. C99 6.8.5.1: The
305 // evaluation of the controlling expression takes place before each
306 // execution of the loop body.
Reid Spencer5f016e22007-07-11 17:01:13 +0000307 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel2c30d8f2007-10-09 20:51:27 +0000308
309 // while(1) is common, avoid extra exit blocks. Be sure
Reid Spencer5f016e22007-07-11 17:01:13 +0000310 // to correctly handle break/continue though.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000311 bool EmitBoolCondBranch = true;
312 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
313 if (C->isOne())
314 EmitBoolCondBranch = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000315
Reid Spencer5f016e22007-07-11 17:01:13 +0000316 // As long as the condition is true, go to the loop body.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000317 if (EmitBoolCondBranch)
318 Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock);
Chris Lattner31a09842008-11-12 08:04:58 +0000319
Reid Spencer5f016e22007-07-11 17:01:13 +0000320 // Emit the loop body.
321 EmitBlock(LoopBody);
322 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000323
Anders Carlssone4b6d342009-02-10 05:52:02 +0000324 BreakContinueStack.pop_back();
Reid Spencer5f016e22007-07-11 17:01:13 +0000325
326 // Cycle to the condition.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000327 EmitBranch(LoopHeader);
Reid Spencer5f016e22007-07-11 17:01:13 +0000328
329 // Emit the exit block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000330 EmitBlock(ExitBlock, true);
Devang Patel2c30d8f2007-10-09 20:51:27 +0000331
332 // If LoopHeader is a simple forwarding block then eliminate it.
333 if (!EmitBoolCondBranch
334 && &LoopHeader->front() == LoopHeader->getTerminator()) {
335 LoopHeader->replaceAllUsesWith(LoopBody);
336 LoopHeader->getTerminator()->eraseFromParent();
337 LoopHeader->eraseFromParent();
338 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000339}
340
341void CodeGenFunction::EmitDoStmt(const DoStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000342 // Emit the body for the loop, insert it, which will create an uncond br to
343 // it.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000344 llvm::BasicBlock *LoopBody = createBasicBlock("do.body");
345 llvm::BasicBlock *AfterDo = createBasicBlock("do.end");
Reid Spencer5f016e22007-07-11 17:01:13 +0000346 EmitBlock(LoopBody);
Chris Lattnerda138702007-07-16 21:28:45 +0000347
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000348 llvm::BasicBlock *DoCond = createBasicBlock("do.cond");
Chris Lattnerda138702007-07-16 21:28:45 +0000349
350 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000351 BreakContinueStack.push_back(BreakContinue(AfterDo, DoCond));
Reid Spencer5f016e22007-07-11 17:01:13 +0000352
353 // Emit the body of the loop into the block.
354 EmitStmt(S.getBody());
355
Anders Carlssone4b6d342009-02-10 05:52:02 +0000356 BreakContinueStack.pop_back();
Chris Lattnerda138702007-07-16 21:28:45 +0000357
358 EmitBlock(DoCond);
359
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 // C99 6.8.5.2: "The evaluation of the controlling expression takes place
361 // after each execution of the loop body."
362
363 // Evaluate the conditional in the while header.
364 // C99 6.8.5p2/p4: The first substatement is executed if the expression
365 // compares unequal to 0. The condition must be a scalar type.
366 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000367
368 // "do {} while (0)" is common in macros, avoid extra blocks. Be sure
369 // to correctly handle break/continue though.
370 bool EmitBoolCondBranch = true;
371 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
372 if (C->isZero())
373 EmitBoolCondBranch = false;
374
Reid Spencer5f016e22007-07-11 17:01:13 +0000375 // As long as the condition is true, iterate the loop.
Devang Patel05f6e6b2007-10-09 20:33:39 +0000376 if (EmitBoolCondBranch)
377 Builder.CreateCondBr(BoolCondVal, LoopBody, AfterDo);
Reid Spencer5f016e22007-07-11 17:01:13 +0000378
379 // Emit the exit block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000380 EmitBlock(AfterDo, true);
Devang Patel05f6e6b2007-10-09 20:33:39 +0000381
382 // If DoCond is a simple forwarding block then eliminate it.
383 if (!EmitBoolCondBranch && &DoCond->front() == DoCond->getTerminator()) {
384 DoCond->replaceAllUsesWith(AfterDo);
385 DoCond->getTerminator()->eraseFromParent();
386 DoCond->eraseFromParent();
387 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000388}
389
390void CodeGenFunction::EmitForStmt(const ForStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000391 // FIXME: What do we do if the increment (f.e.) contains a stmt expression,
392 // which contains a continue/break?
Chris Lattnerda138702007-07-16 21:28:45 +0000393
Reid Spencer5f016e22007-07-11 17:01:13 +0000394 // Evaluate the first part before the loop.
395 if (S.getInit())
396 EmitStmt(S.getInit());
397
398 // Start the loop with a block that tests the condition.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000399 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
400 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Chris Lattnerda138702007-07-16 21:28:45 +0000401
Reid Spencer5f016e22007-07-11 17:01:13 +0000402 EmitBlock(CondBlock);
403
Mike Stump20926c62009-02-07 20:14:12 +0000404 // Evaluate the condition if present. If not, treat it as a
405 // non-zero-constant according to 6.8.5.3p2, aka, true.
Reid Spencer5f016e22007-07-11 17:01:13 +0000406 if (S.getCond()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000407 // As long as the condition is true, iterate the loop.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000408 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Chris Lattner31a09842008-11-12 08:04:58 +0000409
410 // C99 6.8.5p2/p4: The first substatement is executed if the expression
411 // compares unequal to 0. The condition must be a scalar type.
412 EmitBranchOnBoolExpr(S.getCond(), ForBody, AfterFor);
413
Reid Spencer5f016e22007-07-11 17:01:13 +0000414 EmitBlock(ForBody);
415 } else {
416 // Treat it as a non-zero constant. Don't even create a new block for the
417 // body, just fall into it.
418 }
419
Chris Lattnerda138702007-07-16 21:28:45 +0000420 // If the for loop doesn't have an increment we can just use the
421 // condition as the continue block.
422 llvm::BasicBlock *ContinueBlock;
423 if (S.getInc())
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000424 ContinueBlock = createBasicBlock("for.inc");
Chris Lattnerda138702007-07-16 21:28:45 +0000425 else
426 ContinueBlock = CondBlock;
427
428 // Store the blocks to use for break and continue.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000429 BreakContinueStack.push_back(BreakContinue(AfterFor, ContinueBlock));
Mike Stump3e9da662009-02-07 23:02:10 +0000430
Reid Spencer5f016e22007-07-11 17:01:13 +0000431 // If the condition is true, execute the body of the for stmt.
432 EmitStmt(S.getBody());
Chris Lattnerda138702007-07-16 21:28:45 +0000433
Anders Carlssone4b6d342009-02-10 05:52:02 +0000434 BreakContinueStack.pop_back();
Chris Lattnerda138702007-07-16 21:28:45 +0000435
Reid Spencer5f016e22007-07-11 17:01:13 +0000436 // If there is an increment, emit it next.
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000437 if (S.getInc()) {
438 EmitBlock(ContinueBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000439 EmitStmt(S.getInc());
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000440 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000441
442 // Finally, branch back up to the condition for the next iteration.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000443 EmitBranch(CondBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000444
Chris Lattnerda138702007-07-16 21:28:45 +0000445 // Emit the fall-through block.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000446 EmitBlock(AfterFor, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000447}
448
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000449void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
450 if (RV.isScalar()) {
451 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
452 } else if (RV.isAggregate()) {
453 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
454 } else {
455 StoreComplexToAddr(RV.getComplexVal(), ReturnValue, false);
456 }
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000457 EmitBranchThroughCleanup(ReturnBlock);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000458}
459
Reid Spencer5f016e22007-07-11 17:01:13 +0000460/// EmitReturnStmt - Note that due to GCC extensions, this can have an operand
461/// if the function returns void, or may be missing one if the function returns
462/// non-void. Fun stuff :).
463void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000464 // Emit the result value, even if unused, to evalute the side effects.
465 const Expr *RV = S.getRetValue();
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000466
467 // FIXME: Clean this up by using an LValue for ReturnTemp,
468 // EmitStoreThroughLValue, and EmitAnyExpr.
469 if (!ReturnValue) {
470 // Make sure not to return anything, but evaluate the expression
471 // for side effects.
472 if (RV)
Eli Friedman144ac612008-05-22 01:22:33 +0000473 EmitAnyExpr(RV);
Reid Spencer5f016e22007-07-11 17:01:13 +0000474 } else if (RV == 0) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000475 // Do nothing (return value is left uninitialized)
Chris Lattner4b0029d2007-08-26 07:14:44 +0000476 } else if (!hasAggregateLLVMType(RV->getType())) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000477 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
Chris Lattner9b2dc282008-04-04 16:54:41 +0000478 } else if (RV->getType()->isAnyComplexType()) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000479 EmitComplexExprIntoAddr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000480 } else {
Daniel Dunbar5ca20842008-09-09 21:00:17 +0000481 EmitAggExpr(RV, ReturnValue, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000482 }
Eli Friedman144ac612008-05-22 01:22:33 +0000483
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000484 EmitBranchThroughCleanup(ReturnBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +0000485}
486
487void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
Ted Kremeneke4ea1f42008-10-06 18:42:27 +0000488 for (DeclStmt::const_decl_iterator I = S.decl_begin(), E = S.decl_end();
489 I != E; ++I)
490 EmitDecl(**I);
Chris Lattner6fa5f092007-07-12 15:43:07 +0000491}
Chris Lattnerda138702007-07-16 21:28:45 +0000492
Daniel Dunbar09124252008-11-12 08:21:33 +0000493void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000494 assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
495
Daniel Dunbar09124252008-11-12 08:21:33 +0000496 // If this code is reachable then emit a stop point (if generating
497 // debug info). We have to do this ourselves because we are on the
498 // "simple" statement path.
499 if (HaveInsertPoint())
500 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +0000501
Chris Lattnerda138702007-07-16 21:28:45 +0000502 llvm::BasicBlock *Block = BreakContinueStack.back().BreakBlock;
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000503 EmitBranchThroughCleanup(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000504}
505
Daniel Dunbar09124252008-11-12 08:21:33 +0000506void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +0000507 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
508
Daniel Dunbar09124252008-11-12 08:21:33 +0000509 // If this code is reachable then emit a stop point (if generating
510 // debug info). We have to do this ourselves because we are on the
511 // "simple" statement path.
512 if (HaveInsertPoint())
513 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +0000514
Chris Lattnerda138702007-07-16 21:28:45 +0000515 llvm::BasicBlock *Block = BreakContinueStack.back().ContinueBlock;
Anders Carlsson82d8ef02009-02-09 20:31:03 +0000516 EmitBranchThroughCleanup(Block);
Chris Lattnerda138702007-07-16 21:28:45 +0000517}
Devang Patel51b09f22007-10-04 23:45:31 +0000518
Devang Patelc049e4f2007-10-08 20:57:48 +0000519/// EmitCaseStmtRange - If case statement range is not too big then
520/// add multiple cases to switch instruction, one for each value within
521/// the range. If range is too big then emit "if" condition check.
522void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000523 assert(S.getRHS() && "Expected RHS value in CaseStmt");
Devang Patelc049e4f2007-10-08 20:57:48 +0000524
Anders Carlsson51fe9962008-11-22 21:04:56 +0000525 llvm::APSInt LHS = S.getLHS()->EvaluateAsInt(getContext());
526 llvm::APSInt RHS = S.getRHS()->EvaluateAsInt(getContext());
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000527
Daniel Dunbar16f23572008-07-25 01:11:38 +0000528 // Emit the code for this case. We do this first to make sure it is
529 // properly chained from our predecessor before generating the
530 // switch machinery to enter this block.
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000531 EmitBlock(createBasicBlock("sw.bb"));
Daniel Dunbar16f23572008-07-25 01:11:38 +0000532 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
533 EmitStmt(S.getSubStmt());
534
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000535 // If range is empty, do nothing.
536 if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))
537 return;
Devang Patelc049e4f2007-10-08 20:57:48 +0000538
539 llvm::APInt Range = RHS - LHS;
Daniel Dunbar16f23572008-07-25 01:11:38 +0000540 // FIXME: parameters such as this should not be hardcoded.
Devang Patelc049e4f2007-10-08 20:57:48 +0000541 if (Range.ult(llvm::APInt(Range.getBitWidth(), 64))) {
542 // Range is small enough to add multiple switch instruction cases.
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000543 for (unsigned i = 0, e = Range.getZExtValue() + 1; i != e; ++i) {
Devang Patel2d79d0f2007-10-05 20:54:07 +0000544 SwitchInsn->addCase(llvm::ConstantInt::get(LHS), CaseDest);
545 LHS++;
546 }
Devang Patelc049e4f2007-10-08 20:57:48 +0000547 return;
548 }
549
Daniel Dunbar16f23572008-07-25 01:11:38 +0000550 // The range is too big. Emit "if" condition into a new block,
551 // making sure to save and restore the current insertion point.
552 llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
Devang Patel2d79d0f2007-10-05 20:54:07 +0000553
Daniel Dunbar16f23572008-07-25 01:11:38 +0000554 // Push this test onto the chain of range checks (which terminates
555 // in the default basic block). The switch's default will be changed
556 // to the top of this chain after switch emission is complete.
557 llvm::BasicBlock *FalseDest = CaseRangeBlock;
Daniel Dunbar55e87422008-11-11 02:29:29 +0000558 CaseRangeBlock = createBasicBlock("sw.caserange");
Devang Patelc049e4f2007-10-08 20:57:48 +0000559
Daniel Dunbar16f23572008-07-25 01:11:38 +0000560 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
561 Builder.SetInsertPoint(CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000562
563 // Emit range check.
564 llvm::Value *Diff =
Daniel Dunbar4efde8d2008-07-24 01:18:41 +0000565 Builder.CreateSub(SwitchInsn->getCondition(), llvm::ConstantInt::get(LHS),
566 "tmp");
Devang Patelc049e4f2007-10-08 20:57:48 +0000567 llvm::Value *Cond =
568 Builder.CreateICmpULE(Diff, llvm::ConstantInt::get(Range), "tmp");
569 Builder.CreateCondBr(Cond, CaseDest, FalseDest);
570
Daniel Dunbar16f23572008-07-25 01:11:38 +0000571 // Restore the appropriate insertion point.
Daniel Dunbara448fb22008-11-11 23:11:34 +0000572 if (RestoreBB)
573 Builder.SetInsertPoint(RestoreBB);
574 else
575 Builder.ClearInsertionPoint();
Devang Patelc049e4f2007-10-08 20:57:48 +0000576}
577
578void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
579 if (S.getRHS()) {
580 EmitCaseStmtRange(S);
581 return;
582 }
583
Daniel Dunbarf84dcda2008-11-11 04:12:31 +0000584 EmitBlock(createBasicBlock("sw.bb"));
Devang Patelc049e4f2007-10-08 20:57:48 +0000585 llvm::BasicBlock *CaseDest = Builder.GetInsertBlock();
Anders Carlsson51fe9962008-11-22 21:04:56 +0000586 llvm::APSInt CaseVal = S.getLHS()->EvaluateAsInt(getContext());
Daniel Dunbar55e87422008-11-11 02:29:29 +0000587 SwitchInsn->addCase(llvm::ConstantInt::get(CaseVal), CaseDest);
Devang Patel51b09f22007-10-04 23:45:31 +0000588 EmitStmt(S.getSubStmt());
589}
590
591void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
Daniel Dunbar16f23572008-07-25 01:11:38 +0000592 llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
Daniel Dunbar55e87422008-11-11 02:29:29 +0000593 assert(DefaultBlock->empty() &&
594 "EmitDefaultStmt: Default block already defined?");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000595 EmitBlock(DefaultBlock);
Devang Patel51b09f22007-10-04 23:45:31 +0000596 EmitStmt(S.getSubStmt());
597}
598
599void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
600 llvm::Value *CondV = EmitScalarExpr(S.getCond());
601
602 // Handle nested switch statements.
603 llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000604 llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000605
Daniel Dunbar16f23572008-07-25 01:11:38 +0000606 // Create basic block to hold stuff that comes after switch
607 // statement. We also need to create a default block now so that
608 // explicit case ranges tests can have a place to jump to on
609 // failure.
Daniel Dunbar55e87422008-11-11 02:29:29 +0000610 llvm::BasicBlock *NextBlock = createBasicBlock("sw.epilog");
611 llvm::BasicBlock *DefaultBlock = createBasicBlock("sw.default");
Daniel Dunbar16f23572008-07-25 01:11:38 +0000612 SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
613 CaseRangeBlock = DefaultBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000614
Daniel Dunbar09124252008-11-12 08:21:33 +0000615 // Clear the insertion point to indicate we are in unreachable code.
616 Builder.ClearInsertionPoint();
Eli Friedmand28a80d2008-05-12 16:08:04 +0000617
Devang Patele9b8c0a2007-10-30 20:59:40 +0000618 // All break statements jump to NextBlock. If BreakContinueStack is non empty
619 // then reuse last ContinueBlock.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000620 llvm::BasicBlock *ContinueBlock = 0;
621 if (!BreakContinueStack.empty())
Devang Patel51b09f22007-10-04 23:45:31 +0000622 ContinueBlock = BreakContinueStack.back().ContinueBlock;
Anders Carlssone4b6d342009-02-10 05:52:02 +0000623
Mike Stump3e9da662009-02-07 23:02:10 +0000624 // Ensure any vlas created between there and here, are undone
Anders Carlssone4b6d342009-02-10 05:52:02 +0000625 BreakContinueStack.push_back(BreakContinue(NextBlock, ContinueBlock));
Devang Patel51b09f22007-10-04 23:45:31 +0000626
627 // Emit switch body.
628 EmitStmt(S.getBody());
Anders Carlssone4b6d342009-02-10 05:52:02 +0000629
630 BreakContinueStack.pop_back();
Devang Patel51b09f22007-10-04 23:45:31 +0000631
Daniel Dunbar16f23572008-07-25 01:11:38 +0000632 // Update the default block in case explicit case range tests have
633 // been chained on top.
634 SwitchInsn->setSuccessor(0, CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +0000635
Daniel Dunbar16f23572008-07-25 01:11:38 +0000636 // If a default was never emitted then reroute any jumps to it and
637 // discard.
638 if (!DefaultBlock->getParent()) {
639 DefaultBlock->replaceAllUsesWith(NextBlock);
640 delete DefaultBlock;
641 }
Devang Patel51b09f22007-10-04 23:45:31 +0000642
Daniel Dunbar16f23572008-07-25 01:11:38 +0000643 // Emit continuation.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000644 EmitBlock(NextBlock, true);
Daniel Dunbar16f23572008-07-25 01:11:38 +0000645
Devang Patel51b09f22007-10-04 23:45:31 +0000646 SwitchInsn = SavedSwitchInsn;
Devang Patelc049e4f2007-10-08 20:57:48 +0000647 CaseRangeBlock = SavedCRBlock;
Devang Patel51b09f22007-10-04 23:45:31 +0000648}
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000649
Anders Carlssonce179ab2008-11-09 18:54:14 +0000650static std::string ConvertAsmString(const AsmStmt& S, bool &Failed)
651{
652 // FIXME: No need to create new std::string here, we could just make sure
653 // that we don't read past the end of the string data.
654 std::string str(S.getAsmString()->getStrData(),
655 S.getAsmString()->getByteLength());
656 const char *Start = str.c_str();
657
658 unsigned NumOperands = S.getNumOutputs() + S.getNumInputs();
659 bool IsSimple = S.isSimple();
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000660 Failed = false;
661
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000662 static unsigned AsmCounter = 0;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000663 AsmCounter++;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000664 std::string Result;
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000665 if (IsSimple) {
666 while (*Start) {
667 switch (*Start) {
668 default:
669 Result += *Start;
670 break;
671 case '$':
672 Result += "$$";
673 break;
674 }
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000675 Start++;
676 }
677
678 return Result;
679 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000680
681 while (*Start) {
682 switch (*Start) {
683 default:
684 Result += *Start;
685 break;
686 case '$':
687 Result += "$$";
688 break;
689 case '%':
690 // Escaped character
691 Start++;
692 if (!*Start) {
693 // FIXME: This should be caught during Sema.
694 assert(0 && "Trailing '%' in asm string.");
695 }
696
697 char EscapedChar = *Start;
698 if (EscapedChar == '%') {
699 // Escaped percentage sign.
700 Result += '%';
Chris Lattner345f7202008-07-26 20:15:14 +0000701 } else if (EscapedChar == '=') {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000702 // Generate an unique ID.
703 Result += llvm::utostr(AsmCounter);
704 } else if (isdigit(EscapedChar)) {
705 // %n - Assembler operand n
706 char *End;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000707 unsigned long n = strtoul(Start, &End, 10);
708 if (Start == End) {
709 // FIXME: This should be caught during Sema.
710 assert(0 && "Missing operand!");
711 } else if (n >= NumOperands) {
712 // FIXME: This should be caught during Sema.
713 assert(0 && "Operand number out of range!");
714 }
715
716 Result += '$' + llvm::utostr(n);
Lauro Ramos Venancio7695f702008-02-26 19:19:58 +0000717 Start = End - 1;
Anders Carlsson2abd25f2008-02-05 23:18:57 +0000718 } else if (isalpha(EscapedChar)) {
719 char *End;
720
721 unsigned long n = strtoul(Start + 1, &End, 10);
722 if (Start == End) {
723 // FIXME: This should be caught during Sema.
724 assert(0 && "Missing operand!");
725 } else if (n >= NumOperands) {
726 // FIXME: This should be caught during Sema.
727 assert(0 && "Operand number out of range!");
728 }
729
730 Result += "${" + llvm::utostr(n) + ':' + EscapedChar + '}';
Lauro Ramos Venancio7695f702008-02-26 19:19:58 +0000731 Start = End - 1;
Anders Carlssonce179ab2008-11-09 18:54:14 +0000732 } else if (EscapedChar == '[') {
733 std::string SymbolicName;
734
735 Start++;
736
737 while (*Start && *Start != ']') {
738 SymbolicName += *Start;
739
740 Start++;
741 }
742
743 if (!Start) {
744 // FIXME: Should be caught by sema.
745 assert(0 && "Could not parse symbolic name");
746 }
747
748 assert(*Start == ']' && "Error parsing symbolic name");
749
750 int Index = -1;
751
752 // Check if this is an output operand.
753 for (unsigned i = 0; i < S.getNumOutputs(); i++) {
754 if (S.getOutputName(i) == SymbolicName) {
755 Index = i;
756 break;
757 }
758 }
759
760 if (Index == -1) {
761 for (unsigned i = 0; i < S.getNumInputs(); i++) {
762 if (S.getInputName(i) == SymbolicName) {
763 Index = S.getNumOutputs() + i;
764 }
765 }
766 }
767
768 assert(Index != -1 && "Did not find right operand!");
769
770 Result += '$' + llvm::utostr(Index);
771
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000772 } else {
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000773 Failed = true;
774 return "";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000775 }
776 }
777 Start++;
778 }
779
780 return Result;
781}
782
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000783static std::string SimplifyConstraint(const char* Constraint,
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000784 TargetInfo &Target,
785 const std::string *OutputNamesBegin = 0,
786 const std::string *OutputNamesEnd = 0)
787{
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000788 std::string Result;
789
790 while (*Constraint) {
791 switch (*Constraint) {
792 default:
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000793 Result += Target.convertConstraint(*Constraint);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000794 break;
795 // Ignore these
796 case '*':
797 case '?':
798 case '!':
799 break;
800 case 'g':
801 Result += "imr";
802 break;
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000803 case '[': {
804 assert(OutputNamesBegin && OutputNamesEnd &&
805 "Must pass output names to constraints with a symbolic name");
806 unsigned Index;
807 bool result = Target.resolveSymbolicName(Constraint,
808 OutputNamesBegin,
809 OutputNamesEnd, Index);
Chris Lattner53637652009-01-21 07:35:26 +0000810 assert(result && "Could not resolve symbolic name"); result=result;
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000811 Result += llvm::utostr(Index);
812 break;
813 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000814 }
815
816 Constraint++;
817 }
818
819 return Result;
820}
821
Anders Carlsson63471722009-01-11 19:32:54 +0000822llvm::Value* CodeGenFunction::EmitAsmInput(const AsmStmt &S,
823 TargetInfo::ConstraintInfo Info,
824 const Expr *InputExpr,
825 std::string &ConstraintStr)
826{
827 llvm::Value *Arg;
828 if ((Info & TargetInfo::CI_AllowsRegister) ||
Anders Carlssonebaae2a2009-01-12 02:22:13 +0000829 !(Info & TargetInfo::CI_AllowsMemory)) {
830 const llvm::Type *Ty = ConvertType(InputExpr->getType());
831
832 if (Ty->isSingleValueType()) {
Anders Carlsson63471722009-01-11 19:32:54 +0000833 Arg = EmitScalarExpr(InputExpr);
834 } else {
Anders Carlssonebaae2a2009-01-12 02:22:13 +0000835 LValue Dest = EmitLValue(InputExpr);
836
837 uint64_t Size = CGM.getTargetData().getTypeSizeInBits(Ty);
838 if (Size <= 64 && llvm::isPowerOf2_64(Size)) {
839 Ty = llvm::IntegerType::get(Size);
840 Ty = llvm::PointerType::getUnqual(Ty);
841
842 Arg = Builder.CreateLoad(Builder.CreateBitCast(Dest.getAddress(), Ty));
843 } else {
844 Arg = Dest.getAddress();
845 ConstraintStr += '*';
846 }
Anders Carlsson63471722009-01-11 19:32:54 +0000847 }
848 } else {
849 LValue Dest = EmitLValue(InputExpr);
850 Arg = Dest.getAddress();
851 ConstraintStr += '*';
852 }
853
854 return Arg;
855}
856
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000857void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000858 bool Failed;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000859 std::string AsmString =
Anders Carlssonce179ab2008-11-09 18:54:14 +0000860 ConvertAsmString(S, Failed);
Daniel Dunbar281f55c2008-10-17 20:58:01 +0000861
862 if (Failed) {
863 ErrorUnsupported(&S, "asm string");
864 return;
865 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000866
867 std::string Constraints;
868
869 llvm::Value *ResultAddr = 0;
870 const llvm::Type *ResultType = llvm::Type::VoidTy;
871
872 std::vector<const llvm::Type*> ArgTypes;
873 std::vector<llvm::Value*> Args;
Anders Carlssonf39a4212008-02-05 20:01:53 +0000874
875 // Keep track of inout constraints.
876 std::string InOutConstraints;
877 std::vector<llvm::Value*> InOutArgs;
878 std::vector<const llvm::Type*> InOutArgTypes;
Anders Carlsson03eb5432009-01-27 20:38:24 +0000879
880 llvm::SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
881
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000882 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
883 std::string OutputConstraint(S.getOutputConstraint(i)->getStrData(),
884 S.getOutputConstraint(i)->getByteLength());
885
886 TargetInfo::ConstraintInfo Info;
887 bool result = Target.validateOutputConstraint(OutputConstraint.c_str(),
888 Info);
Chris Lattner3304e552008-10-12 00:31:50 +0000889 assert(result && "Failed to parse output constraint"); result=result;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000890
Anders Carlsson03eb5432009-01-27 20:38:24 +0000891 OutputConstraintInfos.push_back(Info);
892
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000893 // Simplify the output constraint.
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +0000894 OutputConstraint = SimplifyConstraint(OutputConstraint.c_str() + 1, Target);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000895
896 LValue Dest = EmitLValue(S.getOutputExpr(i));
897 const llvm::Type *DestValueType =
898 cast<llvm::PointerType>(Dest.getAddress()->getType())->getElementType();
899
900 // If the first output operand is not a memory dest, we'll
901 // make it the return value.
902 if (i == 0 && !(Info & TargetInfo::CI_AllowsMemory) &&
Dan Gohmand79a7262008-05-22 22:12:56 +0000903 DestValueType->isSingleValueType()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000904 ResultAddr = Dest.getAddress();
905 ResultType = DestValueType;
906 Constraints += "=" + OutputConstraint;
907 } else {
908 ArgTypes.push_back(Dest.getAddress()->getType());
Anders Carlssoncad3ab62008-02-05 16:57:38 +0000909 Args.push_back(Dest.getAddress());
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000910 if (i != 0)
911 Constraints += ',';
Anders Carlssonf39a4212008-02-05 20:01:53 +0000912 Constraints += "=*";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000913 Constraints += OutputConstraint;
Anders Carlssonf39a4212008-02-05 20:01:53 +0000914 }
915
916 if (Info & TargetInfo::CI_ReadWrite) {
Anders Carlssonf39a4212008-02-05 20:01:53 +0000917 InOutConstraints += ',';
Anders Carlsson63471722009-01-11 19:32:54 +0000918
Anders Carlssonf39a4212008-02-05 20:01:53 +0000919 const Expr *InputExpr = S.getOutputExpr(i);
Anders Carlsson63471722009-01-11 19:32:54 +0000920 llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, InOutConstraints);
Anders Carlssonf39a4212008-02-05 20:01:53 +0000921
Anders Carlsson9f2505b2009-01-11 21:23:27 +0000922 if (Info & TargetInfo::CI_AllowsRegister)
923 InOutConstraints += llvm::utostr(i);
924 else
925 InOutConstraints += OutputConstraint;
Anders Carlsson2763b3a2009-01-11 19:46:50 +0000926
Anders Carlssonf39a4212008-02-05 20:01:53 +0000927 InOutArgTypes.push_back(Arg->getType());
928 InOutArgs.push_back(Arg);
Anders Carlssonf39a4212008-02-05 20:01:53 +0000929 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000930 }
931
932 unsigned NumConstraints = S.getNumOutputs() + S.getNumInputs();
933
934 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
935 const Expr *InputExpr = S.getInputExpr(i);
936
937 std::string InputConstraint(S.getInputConstraint(i)->getStrData(),
938 S.getInputConstraint(i)->getByteLength());
939
940 TargetInfo::ConstraintInfo Info;
941 bool result = Target.validateInputConstraint(InputConstraint.c_str(),
Anders Carlsson45b050e2009-01-17 23:36:15 +0000942 S.begin_output_names(),
943 S.end_output_names(),
Anders Carlsson03eb5432009-01-27 20:38:24 +0000944 &OutputConstraintInfos[0],
Chris Lattner53637652009-01-21 07:35:26 +0000945 Info); result=result;
Anders Carlsson42e1ee02009-01-18 01:56:57 +0000946 assert(result && "Failed to parse input constraint");
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000947
948 if (i != 0 || S.getNumOutputs() > 0)
949 Constraints += ',';
950
951 // Simplify the input constraint.
Anders Carlsson300fb5d2009-01-18 02:06:20 +0000952 InputConstraint = SimplifyConstraint(InputConstraint.c_str(), Target,
953 S.begin_output_names(),
954 S.end_output_names());
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000955
Anders Carlsson63471722009-01-11 19:32:54 +0000956 llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, Constraints);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000957
958 ArgTypes.push_back(Arg->getType());
959 Args.push_back(Arg);
960 Constraints += InputConstraint;
961 }
962
Anders Carlssonf39a4212008-02-05 20:01:53 +0000963 // Append the "input" part of inout constraints last.
964 for (unsigned i = 0, e = InOutArgs.size(); i != e; i++) {
965 ArgTypes.push_back(InOutArgTypes[i]);
966 Args.push_back(InOutArgs[i]);
967 }
968 Constraints += InOutConstraints;
969
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000970 // Clobbers
971 for (unsigned i = 0, e = S.getNumClobbers(); i != e; i++) {
972 std::string Clobber(S.getClobber(i)->getStrData(),
973 S.getClobber(i)->getByteLength());
974
975 Clobber = Target.getNormalizedGCCRegisterName(Clobber.c_str());
976
Anders Carlssonea041752008-02-06 00:11:32 +0000977 if (i != 0 || NumConstraints != 0)
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000978 Constraints += ',';
Anders Carlssonea041752008-02-06 00:11:32 +0000979
980 Constraints += "~{";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000981 Constraints += Clobber;
Anders Carlssonea041752008-02-06 00:11:32 +0000982 Constraints += '}';
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000983 }
984
985 // Add machine specific clobbers
Eli Friedmanccf614c2008-12-21 01:15:32 +0000986 std::string MachineClobbers = Target.getClobbers();
987 if (!MachineClobbers.empty()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000988 if (!Constraints.empty())
989 Constraints += ',';
Eli Friedmanccf614c2008-12-21 01:15:32 +0000990 Constraints += MachineClobbers;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000991 }
Anders Carlssonf39a4212008-02-05 20:01:53 +0000992
Anders Carlssonfb1aeb82008-02-05 16:35:33 +0000993 const llvm::FunctionType *FTy =
994 llvm::FunctionType::get(ResultType, ArgTypes, false);
995
996 llvm::InlineAsm *IA =
997 llvm::InlineAsm::get(FTy, AsmString, Constraints,
998 S.isVolatile() || S.getNumOutputs() == 0);
999 llvm::Value *Result = Builder.CreateCall(IA, Args.begin(), Args.end(), "");
Eli Friedman1e692ac2008-06-13 23:01:12 +00001000 if (ResultAddr) // FIXME: volatility
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001001 Builder.CreateStore(Result, ResultAddr);
1002}