blob: 0d160d3eee5b1fad025c32439f1b1b82bdeec158 [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
Chandler Carruth55fc8732012-12-04 09:13:33 +000014#include "CodeGenFunction.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000015#include "CGDebugInfo.h"
16#include "CodeGenModule.h"
Peter Collingbourne4b93d662011-02-19 23:03:58 +000017#include "TargetInfo.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/StmtVisitor.h"
Chris Lattner7d22bf02009-03-05 08:04:57 +000019#include "clang/Basic/PrettyStackTrace.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000020#include "clang/Basic/TargetInfo.h"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070021#include "clang/Sema/LoopHint.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070022#include "clang/Sema/SemaDiagnostic.h"
Anders Carlssonfb1aeb82008-02-05 16:35:33 +000023#include "llvm/ADT/StringExtras.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070024#include "llvm/IR/CallSite.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000025#include "llvm/IR/DataLayout.h"
26#include "llvm/IR/InlineAsm.h"
27#include "llvm/IR/Intrinsics.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29using namespace CodeGen;
30
31//===----------------------------------------------------------------------===//
32// Statement Emission
33//===----------------------------------------------------------------------===//
34
Daniel Dunbar09124252008-11-12 08:21:33 +000035void CodeGenFunction::EmitStopPoint(const Stmt *S) {
Anders Carlssone896d982009-02-13 08:11:52 +000036 if (CGDebugInfo *DI = getDebugInfo()) {
Eric Christopher73fb3502011-10-13 21:45:18 +000037 SourceLocation Loc;
Adrian Prantl2736f2e2013-06-18 00:27:36 +000038 Loc = S->getLocStart();
Eric Christopher73fb3502011-10-13 21:45:18 +000039 DI->EmitLocation(Builder, Loc);
Adrian Prantlfa6b0792013-05-02 17:30:20 +000040
Adrian Prantl40080882013-05-07 22:26:03 +000041 LastStopPoint = Loc;
Daniel Dunbar09124252008-11-12 08:21:33 +000042 }
43}
44
Reid Spencer5f016e22007-07-11 17:01:13 +000045void CodeGenFunction::EmitStmt(const Stmt *S) {
46 assert(S && "Null statement?");
Stephen Hines651f13c2014-04-23 16:59:28 -070047 PGO.setCurrentStmt(S);
Daniel Dunbara448fb22008-11-11 23:11:34 +000048
Eric Christopherf9aac382011-09-26 15:03:19 +000049 // These statements have their own debug info handling.
Daniel Dunbar09124252008-11-12 08:21:33 +000050 if (EmitSimpleStmt(S))
51 return;
52
Daniel Dunbard286f052009-07-19 06:58:07 +000053 // Check if we are generating unreachable code.
54 if (!HaveInsertPoint()) {
55 // If so, and the statement doesn't contain a label, then we do not need to
56 // generate actual code. This is safe because (1) the current point is
57 // unreachable, so we don't need to execute the code, and (2) we've already
58 // handled the statements which update internal data structures (like the
59 // local variable map) which could be used by subsequent statements.
60 if (!ContainsLabel(S)) {
61 // Verify that any decl statements were handled as simple, they may be in
62 // scope of subsequent reachable statements.
63 assert(!isa<DeclStmt>(*S) && "Unexpected DeclStmt!");
64 return;
65 }
66
67 // Otherwise, make a new block to hold the code.
68 EnsureInsertPoint();
69 }
70
Daniel Dunbar09124252008-11-12 08:21:33 +000071 // Generate a stoppoint if we are emitting debug info.
72 EmitStopPoint(S);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000073
Reid Spencer5f016e22007-07-11 17:01:13 +000074 switch (S->getStmtClass()) {
John McCall2a416372010-12-05 02:00:02 +000075 case Stmt::NoStmtClass:
76 case Stmt::CXXCatchStmtClass:
John Wiegley28bbe4b2011-04-28 01:08:34 +000077 case Stmt::SEHExceptStmtClass:
78 case Stmt::SEHFinallyStmtClass:
Douglas Gregorba0513d2011-10-25 01:33:02 +000079 case Stmt::MSDependentExistsStmtClass:
John McCall2a416372010-12-05 02:00:02 +000080 llvm_unreachable("invalid statement class to emit generically");
81 case Stmt::NullStmtClass:
82 case Stmt::CompoundStmtClass:
83 case Stmt::DeclStmtClass:
84 case Stmt::LabelStmtClass:
Richard Smith534986f2012-04-14 00:33:13 +000085 case Stmt::AttributedStmtClass:
John McCall2a416372010-12-05 02:00:02 +000086 case Stmt::GotoStmtClass:
87 case Stmt::BreakStmtClass:
88 case Stmt::ContinueStmtClass:
89 case Stmt::DefaultStmtClass:
90 case Stmt::CaseStmtClass:
Stephen Hines0e2c34f2015-03-23 12:09:02 -070091 case Stmt::SEHLeaveStmtClass:
John McCall2a416372010-12-05 02:00:02 +000092 llvm_unreachable("should have emitted these statements as simple");
Daniel Dunbarcd5e60e2009-07-19 08:23:12 +000093
John McCall2a416372010-12-05 02:00:02 +000094#define STMT(Type, Base)
95#define ABSTRACT_STMT(Op)
96#define EXPR(Type, Base) \
97 case Stmt::Type##Class:
98#include "clang/AST/StmtNodes.inc"
John McCallcd5b22e2011-01-12 03:41:02 +000099 {
100 // Remember the block we came in on.
101 llvm::BasicBlock *incoming = Builder.GetInsertBlock();
102 assert(incoming && "expression emission must have an insertion point");
103
John McCall2a416372010-12-05 02:00:02 +0000104 EmitIgnoredExpr(cast<Expr>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000105
John McCallcd5b22e2011-01-12 03:41:02 +0000106 llvm::BasicBlock *outgoing = Builder.GetInsertBlock();
107 assert(outgoing && "expression emission cleared block!");
108
109 // The expression emitters assume (reasonably!) that the insertion
110 // point is always set. To maintain that, the call-emission code
111 // for noreturn functions has to enter a new block with no
112 // predecessors. We want to kill that block and mark the current
113 // insertion point unreachable in the common case of a call like
114 // "exit();". Since expression emission doesn't otherwise create
115 // blocks with no predecessors, we can just test for that.
116 // However, we must be careful not to do this to our incoming
117 // block, because *statement* emission does sometimes create
118 // reachable blocks which will have no predecessors until later in
119 // the function. This occurs with, e.g., labels that are not
120 // reachable by fallthrough.
121 if (incoming != outgoing && outgoing->use_empty()) {
122 outgoing->eraseFromParent();
123 Builder.ClearInsertionPoint();
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 }
125 break;
John McCallcd5b22e2011-01-12 03:41:02 +0000126 }
John McCall2a416372010-12-05 02:00:02 +0000127
Mike Stump1eb44332009-09-09 15:08:12 +0000128 case Stmt::IndirectGotoStmtClass:
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000129 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000130
131 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
132 case Stmt::WhileStmtClass: EmitWhileStmt(cast<WhileStmt>(*S)); break;
133 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break;
134 case Stmt::ForStmtClass: EmitForStmt(cast<ForStmt>(*S)); break;
Mike Stump1eb44332009-09-09 15:08:12 +0000135
Reid Spencer5f016e22007-07-11 17:01:13 +0000136 case Stmt::ReturnStmtClass: EmitReturnStmt(cast<ReturnStmt>(*S)); break;
Daniel Dunbara4275d12008-10-02 18:02:06 +0000137
Devang Patel51b09f22007-10-04 23:45:31 +0000138 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
Chad Rosierd1a8d2e2012-08-28 21:11:24 +0000139 case Stmt::GCCAsmStmtClass: // Intentional fall-through.
140 case Stmt::MSAsmStmtClass: EmitAsmStmt(cast<AsmStmt>(*S)); break;
Alexey Bataev0c018352013-09-06 18:03:48 +0000141 case Stmt::CapturedStmtClass: {
142 const CapturedStmt *CS = cast<CapturedStmt>(S);
143 EmitCapturedStmt(*CS, CS->getCapturedRegionKind());
144 }
Tareq A. Siraj051303c2013-04-16 18:53:08 +0000145 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000146 case Stmt::ObjCAtTryStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000147 EmitObjCAtTryStmt(cast<ObjCAtTryStmt>(*S));
Mike Stump1eb44332009-09-09 15:08:12 +0000148 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000149 case Stmt::ObjCAtCatchStmtClass:
David Blaikieb219cfc2011-09-23 05:06:16 +0000150 llvm_unreachable(
151 "@catch statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000152 case Stmt::ObjCAtFinallyStmtClass:
David Blaikieb219cfc2011-09-23 05:06:16 +0000153 llvm_unreachable(
154 "@finally statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000155 case Stmt::ObjCAtThrowStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000156 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000157 break;
158 case Stmt::ObjCAtSynchronizedStmtClass:
Chris Lattner10cac6f2008-11-15 21:26:17 +0000159 EmitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000160 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000161 case Stmt::ObjCForCollectionStmtClass:
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000162 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000163 break;
John McCallf85e1932011-06-15 23:02:42 +0000164 case Stmt::ObjCAutoreleasePoolStmtClass:
165 EmitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(*S));
166 break;
Chad Rosier6f61ba22012-06-20 17:43:05 +0000167
Anders Carlsson6815e942009-09-27 18:58:34 +0000168 case Stmt::CXXTryStmtClass:
169 EmitCXXTryStmt(cast<CXXTryStmt>(*S));
170 break;
Richard Smithad762fc2011-04-14 22:09:26 +0000171 case Stmt::CXXForRangeStmtClass:
172 EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*S));
Reid Kleckner98592d92013-09-16 21:46:30 +0000173 break;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000174 case Stmt::SEHTryStmtClass:
Reid Kleckner98592d92013-09-16 21:46:30 +0000175 EmitSEHTryStmt(cast<SEHTryStmt>(*S));
Richard Smithad762fc2011-04-14 22:09:26 +0000176 break;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700177 case Stmt::OMPParallelDirectiveClass:
178 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S));
179 break;
180 case Stmt::OMPSimdDirectiveClass:
181 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S));
182 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700183 case Stmt::OMPForDirectiveClass:
184 EmitOMPForDirective(cast<OMPForDirective>(*S));
185 break;
Stephen Hines176edba2014-12-01 14:53:08 -0800186 case Stmt::OMPForSimdDirectiveClass:
187 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S));
188 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700189 case Stmt::OMPSectionsDirectiveClass:
190 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S));
191 break;
192 case Stmt::OMPSectionDirectiveClass:
193 EmitOMPSectionDirective(cast<OMPSectionDirective>(*S));
194 break;
195 case Stmt::OMPSingleDirectiveClass:
196 EmitOMPSingleDirective(cast<OMPSingleDirective>(*S));
197 break;
Stephen Hines176edba2014-12-01 14:53:08 -0800198 case Stmt::OMPMasterDirectiveClass:
199 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S));
200 break;
201 case Stmt::OMPCriticalDirectiveClass:
202 EmitOMPCriticalDirective(cast<OMPCriticalDirective>(*S));
203 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700204 case Stmt::OMPParallelForDirectiveClass:
205 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S));
206 break;
Stephen Hines176edba2014-12-01 14:53:08 -0800207 case Stmt::OMPParallelForSimdDirectiveClass:
208 EmitOMPParallelForSimdDirective(cast<OMPParallelForSimdDirective>(*S));
209 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700210 case Stmt::OMPParallelSectionsDirectiveClass:
211 EmitOMPParallelSectionsDirective(cast<OMPParallelSectionsDirective>(*S));
212 break;
Stephen Hines176edba2014-12-01 14:53:08 -0800213 case Stmt::OMPTaskDirectiveClass:
214 EmitOMPTaskDirective(cast<OMPTaskDirective>(*S));
215 break;
216 case Stmt::OMPTaskyieldDirectiveClass:
217 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S));
218 break;
219 case Stmt::OMPBarrierDirectiveClass:
220 EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S));
221 break;
222 case Stmt::OMPTaskwaitDirectiveClass:
223 EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S));
224 break;
225 case Stmt::OMPFlushDirectiveClass:
226 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S));
227 break;
228 case Stmt::OMPOrderedDirectiveClass:
229 EmitOMPOrderedDirective(cast<OMPOrderedDirective>(*S));
230 break;
231 case Stmt::OMPAtomicDirectiveClass:
232 EmitOMPAtomicDirective(cast<OMPAtomicDirective>(*S));
233 break;
234 case Stmt::OMPTargetDirectiveClass:
235 EmitOMPTargetDirective(cast<OMPTargetDirective>(*S));
236 break;
237 case Stmt::OMPTeamsDirectiveClass:
238 EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S));
239 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000240 }
241}
242
Daniel Dunbar09124252008-11-12 08:21:33 +0000243bool CodeGenFunction::EmitSimpleStmt(const Stmt *S) {
244 switch (S->getStmtClass()) {
245 default: return false;
246 case Stmt::NullStmtClass: break;
247 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
Daniel Dunbard286f052009-07-19 06:58:07 +0000248 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
Daniel Dunbar09124252008-11-12 08:21:33 +0000249 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break;
Richard Smith534986f2012-04-14 00:33:13 +0000250 case Stmt::AttributedStmtClass:
251 EmitAttributedStmt(cast<AttributedStmt>(*S)); break;
Daniel Dunbar09124252008-11-12 08:21:33 +0000252 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break;
253 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
254 case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break;
255 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break;
256 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700257 case Stmt::SEHLeaveStmtClass: EmitSEHLeaveStmt(cast<SEHLeaveStmt>(*S)); break;
Daniel Dunbar09124252008-11-12 08:21:33 +0000258 }
259
260 return true;
261}
262
Chris Lattner33793202007-08-31 22:09:40 +0000263/// EmitCompoundStmt - Emit a compound statement {..} node. If GetLast is true,
264/// this captures the expression result of the last sub-statement and returns it
265/// (for use by the statement expression extension).
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000266llvm::Value* CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
267 AggValueSlot AggSlot) {
Chris Lattner7d22bf02009-03-05 08:04:57 +0000268 PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),S.getLBracLoc(),
269 "LLVM IR generation of compound statement ('{}')");
Mike Stump1eb44332009-09-09 15:08:12 +0000270
Eric Christopherfdc5d562012-02-23 00:43:07 +0000271 // Keep track of the current cleanup stack depth, including debug scopes.
272 LexicalScope Scope(*this, S.getSourceRange());
Mike Stump1eb44332009-09-09 15:08:12 +0000273
David Blaikiea6504852013-01-26 22:16:26 +0000274 return EmitCompoundStmtWithoutScope(S, GetLast, AggSlot);
275}
276
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000277llvm::Value*
278CodeGenFunction::EmitCompoundStmtWithoutScope(const CompoundStmt &S,
279 bool GetLast,
280 AggValueSlot AggSlot) {
David Blaikiea6504852013-01-26 22:16:26 +0000281
Chris Lattner33793202007-08-31 22:09:40 +0000282 for (CompoundStmt::const_body_iterator I = S.body_begin(),
283 E = S.body_end()-GetLast; I != E; ++I)
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 EmitStmt(*I);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000285
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700286 llvm::Value *RetAlloca = nullptr;
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000287 if (GetLast) {
Mike Stump1eb44332009-09-09 15:08:12 +0000288 // We have to special case labels here. They are statements, but when put
Anders Carlsson17d28a32008-12-12 05:52:00 +0000289 // at the end of a statement expression, they yield the value of their
290 // subexpression. Handle this by walking through all labels we encounter,
291 // emitting them before we evaluate the subexpr.
292 const Stmt *LastStmt = S.body_back();
293 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000294 EmitLabel(LS->getDecl());
Anders Carlsson17d28a32008-12-12 05:52:00 +0000295 LastStmt = LS->getSubStmt();
296 }
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Anders Carlsson17d28a32008-12-12 05:52:00 +0000298 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +0000299
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000300 QualType ExprTy = cast<Expr>(LastStmt)->getType();
301 if (hasAggregateEvaluationKind(ExprTy)) {
302 EmitAggExpr(cast<Expr>(LastStmt), AggSlot);
303 } else {
304 // We can't return an RValue here because there might be cleanups at
305 // the end of the StmtExpr. Because of that, we have to emit the result
306 // here into a temporary alloca.
307 RetAlloca = CreateMemTemp(ExprTy);
308 EmitAnyExprToMem(cast<Expr>(LastStmt), RetAlloca, Qualifiers(),
309 /*IsInit*/false);
310 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700311
Anders Carlsson17d28a32008-12-12 05:52:00 +0000312 }
313
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000314 return RetAlloca;
Reid Spencer5f016e22007-07-11 17:01:13 +0000315}
316
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000317void CodeGenFunction::SimplifyForwardingBlocks(llvm::BasicBlock *BB) {
318 llvm::BranchInst *BI = dyn_cast<llvm::BranchInst>(BB->getTerminator());
Mike Stump1eb44332009-09-09 15:08:12 +0000319
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000320 // If there is a cleanup stack, then we it isn't worth trying to
321 // simplify this block (we would need to remove it from the scope map
322 // and cleanup entry).
John McCallf1549f62010-07-06 01:34:17 +0000323 if (!EHStack.empty())
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000324 return;
325
326 // Can only simplify direct branches.
327 if (!BI || !BI->isUnconditional())
328 return;
329
Eli Friedman3d7c7802012-10-26 23:23:35 +0000330 // Can only simplify empty blocks.
331 if (BI != BB->begin())
332 return;
333
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000334 BB->replaceAllUsesWith(BI->getSuccessor(0));
335 BI->eraseFromParent();
336 BB->eraseFromParent();
337}
338
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000339void CodeGenFunction::EmitBlock(llvm::BasicBlock *BB, bool IsFinished) {
John McCall548ce5e2010-04-21 11:18:06 +0000340 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
341
Daniel Dunbard57a8712008-11-11 09:41:28 +0000342 // Fall out of the current block (if necessary).
343 EmitBranch(BB);
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000344
345 if (IsFinished && BB->use_empty()) {
346 delete BB;
347 return;
348 }
349
John McCall839cbaa2010-04-21 10:29:06 +0000350 // Place the block after the current block, if possible, or else at
351 // the end of the function.
John McCall548ce5e2010-04-21 11:18:06 +0000352 if (CurBB && CurBB->getParent())
353 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
John McCall839cbaa2010-04-21 10:29:06 +0000354 else
355 CurFn->getBasicBlockList().push_back(BB);
Reid Spencer5f016e22007-07-11 17:01:13 +0000356 Builder.SetInsertPoint(BB);
357}
358
Daniel Dunbard57a8712008-11-11 09:41:28 +0000359void CodeGenFunction::EmitBranch(llvm::BasicBlock *Target) {
360 // Emit a branch from the current block to the target one if this
361 // was a real block. If this was just a fall-through block after a
362 // terminator, don't emit it.
363 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
364
365 if (!CurBB || CurBB->getTerminator()) {
366 // If there is no insert point or the previous block is already
367 // terminated, don't touch it.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000368 } else {
369 // Otherwise, create a fall-through branch.
370 Builder.CreateBr(Target);
371 }
Daniel Dunbar5e08ad32008-11-11 22:06:59 +0000372
373 Builder.ClearInsertionPoint();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000374}
375
John McCall777d6e52011-08-11 02:22:43 +0000376void CodeGenFunction::EmitBlockAfterUses(llvm::BasicBlock *block) {
377 bool inserted = false;
Stephen Hines651f13c2014-04-23 16:59:28 -0700378 for (llvm::User *u : block->users()) {
379 if (llvm::Instruction *insn = dyn_cast<llvm::Instruction>(u)) {
John McCall777d6e52011-08-11 02:22:43 +0000380 CurFn->getBasicBlockList().insertAfter(insn->getParent(), block);
381 inserted = true;
382 break;
383 }
384 }
385
386 if (!inserted)
387 CurFn->getBasicBlockList().push_back(block);
388
389 Builder.SetInsertPoint(block);
390}
391
John McCallf1549f62010-07-06 01:34:17 +0000392CodeGenFunction::JumpDest
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000393CodeGenFunction::getJumpDestForLabel(const LabelDecl *D) {
394 JumpDest &Dest = LabelMap[D];
John McCallff8e1152010-07-23 21:56:41 +0000395 if (Dest.isValid()) return Dest;
John McCallf1549f62010-07-06 01:34:17 +0000396
397 // Create, but don't insert, the new block.
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000398 Dest = JumpDest(createBasicBlock(D->getName()),
John McCallff8e1152010-07-23 21:56:41 +0000399 EHScopeStack::stable_iterator::invalid(),
400 NextCleanupDestIndex++);
John McCallf1549f62010-07-06 01:34:17 +0000401 return Dest;
402}
403
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000404void CodeGenFunction::EmitLabel(const LabelDecl *D) {
Nadav Rotem495cfa42013-03-23 06:43:35 +0000405 // Add this label to the current lexical scope if we're within any
406 // normal cleanups. Jumps "in" to this label --- when permitted by
407 // the language --- may need to be routed around such cleanups.
408 if (EHStack.hasNormalCleanups() && CurLexicalScope)
409 CurLexicalScope->addLabel(D);
410
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000411 JumpDest &Dest = LabelMap[D];
John McCallf1549f62010-07-06 01:34:17 +0000412
John McCallff8e1152010-07-23 21:56:41 +0000413 // If we didn't need a forward reference to this label, just go
John McCallf1549f62010-07-06 01:34:17 +0000414 // ahead and create a destination at the current scope.
John McCallff8e1152010-07-23 21:56:41 +0000415 if (!Dest.isValid()) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000416 Dest = getJumpDestInCurrentScope(D->getName());
John McCallf1549f62010-07-06 01:34:17 +0000417
418 // Otherwise, we need to give this label a target depth and remove
419 // it from the branch-fixups list.
420 } else {
John McCallff8e1152010-07-23 21:56:41 +0000421 assert(!Dest.getScopeDepth().isValid() && "already emitted label!");
Nadav Rotem495cfa42013-03-23 06:43:35 +0000422 Dest.setScopeDepth(EHStack.stable_begin());
John McCallff8e1152010-07-23 21:56:41 +0000423 ResolveBranchFixups(Dest.getBlock());
John McCallf1549f62010-07-06 01:34:17 +0000424 }
425
Stephen Hines651f13c2014-04-23 16:59:28 -0700426 RegionCounter Cnt = getPGORegionCounter(D->getStmt());
John McCallff8e1152010-07-23 21:56:41 +0000427 EmitBlock(Dest.getBlock());
Stephen Hines651f13c2014-04-23 16:59:28 -0700428 Cnt.beginRegion(Builder);
Chris Lattner91d723d2008-07-26 20:23:23 +0000429}
430
Nadav Rotem495cfa42013-03-23 06:43:35 +0000431/// Change the cleanup scope of the labels in this lexical scope to
432/// match the scope of the enclosing context.
433void CodeGenFunction::LexicalScope::rescopeLabels() {
434 assert(!Labels.empty());
435 EHScopeStack::stable_iterator innermostScope
436 = CGF.EHStack.getInnermostNormalCleanup();
437
438 // Change the scope depth of all the labels.
439 for (SmallVectorImpl<const LabelDecl*>::const_iterator
440 i = Labels.begin(), e = Labels.end(); i != e; ++i) {
441 assert(CGF.LabelMap.count(*i));
442 JumpDest &dest = CGF.LabelMap.find(*i)->second;
443 assert(dest.getScopeDepth().isValid());
444 assert(innermostScope.encloses(dest.getScopeDepth()));
445 dest.setScopeDepth(innermostScope);
446 }
447
448 // Reparent the labels if the new scope also has cleanups.
449 if (innermostScope != EHScopeStack::stable_end() && ParentScope) {
450 ParentScope->Labels.append(Labels.begin(), Labels.end());
451 }
452}
453
Chris Lattner91d723d2008-07-26 20:23:23 +0000454
455void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000456 EmitLabel(S.getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +0000457 EmitStmt(S.getSubStmt());
458}
459
Richard Smith534986f2012-04-14 00:33:13 +0000460void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700461 const Stmt *SubStmt = S.getSubStmt();
462 switch (SubStmt->getStmtClass()) {
463 case Stmt::DoStmtClass:
464 EmitDoStmt(cast<DoStmt>(*SubStmt), S.getAttrs());
465 break;
466 case Stmt::ForStmtClass:
467 EmitForStmt(cast<ForStmt>(*SubStmt), S.getAttrs());
468 break;
469 case Stmt::WhileStmtClass:
470 EmitWhileStmt(cast<WhileStmt>(*SubStmt), S.getAttrs());
471 break;
472 case Stmt::CXXForRangeStmtClass:
473 EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*SubStmt), S.getAttrs());
474 break;
475 default:
476 EmitStmt(SubStmt);
477 }
Richard Smith534986f2012-04-14 00:33:13 +0000478}
479
Reid Spencer5f016e22007-07-11 17:01:13 +0000480void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000481 // If this code is reachable then emit a stop point (if generating
482 // debug info). We have to do this ourselves because we are on the
483 // "simple" statement path.
484 if (HaveInsertPoint())
485 EmitStopPoint(&S);
Mike Stump36a2ada2009-02-07 12:52:26 +0000486
John McCallf1549f62010-07-06 01:34:17 +0000487 EmitBranchThroughCleanup(getJumpDestForLabel(S.getLabel()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000488}
489
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000490
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000491void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000492 if (const LabelDecl *Target = S.getConstantTarget()) {
John McCall95c225d2010-10-28 08:53:48 +0000493 EmitBranchThroughCleanup(getJumpDestForLabel(Target));
494 return;
495 }
496
Chris Lattner49c952f2009-11-06 18:10:47 +0000497 // Ensure that we have an i8* for our PHI node.
Chris Lattnerd9becd12009-10-28 23:59:40 +0000498 llvm::Value *V = Builder.CreateBitCast(EmitScalarExpr(S.getTarget()),
John McCalld16c2cf2011-02-08 08:22:06 +0000499 Int8PtrTy, "addr");
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000500 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000501
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000502 // Get the basic block for the indirect goto.
503 llvm::BasicBlock *IndGotoBB = GetIndirectGotoBlock();
Chad Rosier6f61ba22012-06-20 17:43:05 +0000504
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000505 // The first instruction in the block has to be the PHI for the switch dest,
506 // add an entry for this branch.
507 cast<llvm::PHINode>(IndGotoBB->begin())->addIncoming(V, CurBB);
Chad Rosier6f61ba22012-06-20 17:43:05 +0000508
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000509 EmitBranch(IndGotoBB);
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000510}
511
Chris Lattner62b72f62008-11-11 07:24:28 +0000512void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000513 // C99 6.8.4.1: The first substatement is executed if the expression compares
514 // unequal to 0. The condition must be a scalar type.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700515 LexicalScope ConditionScope(*this, S.getCond()->getSourceRange());
Stephen Hines651f13c2014-04-23 16:59:28 -0700516 RegionCounter Cnt = getPGORegionCounter(&S);
Adrian Prantl8d378582013-06-08 00:16:55 +0000517
Douglas Gregor8cfe5a72009-11-23 23:44:04 +0000518 if (S.getConditionVariable())
John McCallb6bbcc92010-10-15 04:57:14 +0000519 EmitAutoVarDecl(*S.getConditionVariable());
Mike Stump1eb44332009-09-09 15:08:12 +0000520
Chris Lattner9bc47e22008-11-12 07:46:33 +0000521 // If the condition constant folds and can be elided, try to avoid emitting
522 // the condition and the dead arm of the if/else.
Chris Lattnerc2c90012011-02-27 23:02:32 +0000523 bool CondConstant;
524 if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant)) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000525 // Figure out which block (then or else) is executed.
Chris Lattnerc2c90012011-02-27 23:02:32 +0000526 const Stmt *Executed = S.getThen();
527 const Stmt *Skipped = S.getElse();
528 if (!CondConstant) // Condition false?
Chris Lattner62b72f62008-11-11 07:24:28 +0000529 std::swap(Executed, Skipped);
Mike Stump1eb44332009-09-09 15:08:12 +0000530
Chris Lattner62b72f62008-11-11 07:24:28 +0000531 // If the skipped block has no labels in it, just emit the executed block.
532 // This avoids emitting dead code and simplifies the CFG substantially.
Chris Lattner9bc47e22008-11-12 07:46:33 +0000533 if (!ContainsLabel(Skipped)) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700534 if (CondConstant)
535 Cnt.beginRegion(Builder);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000536 if (Executed) {
John McCallf1549f62010-07-06 01:34:17 +0000537 RunCleanupsScope ExecutedScope(*this);
Chris Lattner62b72f62008-11-11 07:24:28 +0000538 EmitStmt(Executed);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000539 }
Chris Lattner62b72f62008-11-11 07:24:28 +0000540 return;
541 }
542 }
Chris Lattner9bc47e22008-11-12 07:46:33 +0000543
544 // Otherwise, the condition did not fold, or we couldn't elide it. Just emit
545 // the conditional branch.
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000546 llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
547 llvm::BasicBlock *ContBlock = createBasicBlock("if.end");
548 llvm::BasicBlock *ElseBlock = ContBlock;
Reid Spencer5f016e22007-07-11 17:01:13 +0000549 if (S.getElse())
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000550 ElseBlock = createBasicBlock("if.else");
Stephen Hines651f13c2014-04-23 16:59:28 -0700551
552 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, Cnt.getCount());
Mike Stump1eb44332009-09-09 15:08:12 +0000553
Reid Spencer5f016e22007-07-11 17:01:13 +0000554 // Emit the 'then' code.
Stephen Hines651f13c2014-04-23 16:59:28 -0700555 EmitBlock(ThenBlock);
556 Cnt.beginRegion(Builder);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000557 {
John McCallf1549f62010-07-06 01:34:17 +0000558 RunCleanupsScope ThenScope(*this);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000559 EmitStmt(S.getThen());
560 }
Daniel Dunbard57a8712008-11-11 09:41:28 +0000561 EmitBranch(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Reid Spencer5f016e22007-07-11 17:01:13 +0000563 // Emit the 'else' code if present.
564 if (const Stmt *Else = S.getElse()) {
Stephen Hines176edba2014-12-01 14:53:08 -0800565 {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700566 // There is no need to emit line number for an unconditional branch.
567 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Stephen Hines176edba2014-12-01 14:53:08 -0800568 EmitBlock(ElseBlock);
569 }
Douglas Gregor01234bb2009-11-24 16:43:22 +0000570 {
John McCallf1549f62010-07-06 01:34:17 +0000571 RunCleanupsScope ElseScope(*this);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000572 EmitStmt(Else);
573 }
Stephen Hines176edba2014-12-01 14:53:08 -0800574 {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700575 // There is no need to emit line number for an unconditional branch.
576 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Stephen Hines176edba2014-12-01 14:53:08 -0800577 EmitBranch(ContBlock);
578 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000579 }
Mike Stump1eb44332009-09-09 15:08:12 +0000580
Reid Spencer5f016e22007-07-11 17:01:13 +0000581 // Emit the continuation block for code after the if.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000582 EmitBlock(ContBlock, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000583}
584
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700585void CodeGenFunction::EmitCondBrHints(llvm::LLVMContext &Context,
586 llvm::BranchInst *CondBr,
Stephen Hines176edba2014-12-01 14:53:08 -0800587 ArrayRef<const Attr *> Attrs) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700588 // Return if there are no hints.
589 if (Attrs.empty())
590 return;
591
592 // Add vectorize and unroll hints to the metadata on the conditional branch.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700593 //
594 // FIXME: Should this really start with a size of 1?
595 SmallVector<llvm::Metadata *, 2> Metadata(1);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700596 for (const auto *Attr : Attrs) {
597 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(Attr);
598
599 // Skip non loop hint attributes
600 if (!LH)
601 continue;
602
603 LoopHintAttr::OptionType Option = LH->getOption();
Stephen Hines176edba2014-12-01 14:53:08 -0800604 LoopHintAttr::LoopHintState State = LH->getState();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700605 const char *MetadataName;
606 switch (Option) {
607 case LoopHintAttr::Vectorize:
608 case LoopHintAttr::VectorizeWidth:
609 MetadataName = "llvm.loop.vectorize.width";
610 break;
611 case LoopHintAttr::Interleave:
612 case LoopHintAttr::InterleaveCount:
Stephen Hines176edba2014-12-01 14:53:08 -0800613 MetadataName = "llvm.loop.interleave.count";
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700614 break;
615 case LoopHintAttr::Unroll:
Stephen Hines176edba2014-12-01 14:53:08 -0800616 // With the unroll loop hint, a non-zero value indicates full unrolling.
617 MetadataName = State == LoopHintAttr::Disable ? "llvm.loop.unroll.disable"
618 : "llvm.loop.unroll.full";
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700619 break;
620 case LoopHintAttr::UnrollCount:
621 MetadataName = "llvm.loop.unroll.count";
622 break;
623 }
624
Stephen Hines176edba2014-12-01 14:53:08 -0800625 Expr *ValueExpr = LH->getValue();
626 int ValueInt = 1;
627 if (ValueExpr) {
628 llvm::APSInt ValueAPS =
629 ValueExpr->EvaluateKnownConstInt(CGM.getContext());
630 ValueInt = static_cast<int>(ValueAPS.getSExtValue());
631 }
632
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700633 llvm::Constant *Value;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700634 llvm::MDString *Name;
635 switch (Option) {
636 case LoopHintAttr::Vectorize:
637 case LoopHintAttr::Interleave:
Stephen Hines176edba2014-12-01 14:53:08 -0800638 if (State != LoopHintAttr::Disable) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700639 // FIXME: In the future I will modifiy the behavior of the metadata
640 // so we can enable/disable vectorization and interleaving separately.
641 Name = llvm::MDString::get(Context, "llvm.loop.vectorize.enable");
642 Value = Builder.getTrue();
643 break;
644 }
645 // Vectorization/interleaving is disabled, set width/count to 1.
646 ValueInt = 1;
647 // Fallthrough.
648 case LoopHintAttr::VectorizeWidth:
649 case LoopHintAttr::InterleaveCount:
Stephen Hines176edba2014-12-01 14:53:08 -0800650 case LoopHintAttr::UnrollCount:
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700651 Name = llvm::MDString::get(Context, MetadataName);
652 Value = llvm::ConstantInt::get(Int32Ty, ValueInt);
653 break;
654 case LoopHintAttr::Unroll:
655 Name = llvm::MDString::get(Context, MetadataName);
Stephen Hines176edba2014-12-01 14:53:08 -0800656 Value = nullptr;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700657 break;
658 }
659
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700660 SmallVector<llvm::Metadata *, 2> OpValues;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700661 OpValues.push_back(Name);
Stephen Hines176edba2014-12-01 14:53:08 -0800662 if (Value)
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700663 OpValues.push_back(llvm::ConstantAsMetadata::get(Value));
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700664
665 // Set or overwrite metadata indicated by Name.
666 Metadata.push_back(llvm::MDNode::get(Context, OpValues));
667 }
668
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700669 // FIXME: This condition is never false. Should it be an assert?
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700670 if (!Metadata.empty()) {
671 // Add llvm.loop MDNode to CondBr.
672 llvm::MDNode *LoopID = llvm::MDNode::get(Context, Metadata);
673 LoopID->replaceOperandWith(0, LoopID); // First op points to itself.
674
675 CondBr->setMetadata("llvm.loop", LoopID);
676 }
677}
678
679void CodeGenFunction::EmitWhileStmt(const WhileStmt &S,
Stephen Hines176edba2014-12-01 14:53:08 -0800680 ArrayRef<const Attr *> WhileAttrs) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700681 RegionCounter Cnt = getPGORegionCounter(&S);
682
John McCallf1549f62010-07-06 01:34:17 +0000683 // Emit the header for the loop, which will also become
684 // the continue target.
685 JumpDest LoopHeader = getJumpDestInCurrentScope("while.cond");
John McCallff8e1152010-07-23 21:56:41 +0000686 EmitBlock(LoopHeader.getBlock());
Mike Stump72cac2c2009-02-07 18:08:12 +0000687
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700688 LoopStack.push(LoopHeader.getBlock());
689
John McCallf1549f62010-07-06 01:34:17 +0000690 // Create an exit block for when the condition fails, which will
691 // also become the break target.
692 JumpDest LoopExit = getJumpDestInCurrentScope("while.end");
Mike Stump72cac2c2009-02-07 18:08:12 +0000693
694 // Store the blocks to use for break and continue.
John McCallf1549f62010-07-06 01:34:17 +0000695 BreakContinueStack.push_back(BreakContinue(LoopExit, LoopHeader));
Mike Stump1eb44332009-09-09 15:08:12 +0000696
Douglas Gregor5656e142009-11-24 21:15:44 +0000697 // C++ [stmt.while]p2:
698 // When the condition of a while statement is a declaration, the
699 // scope of the variable that is declared extends from its point
700 // of declaration (3.3.2) to the end of the while statement.
701 // [...]
702 // The object created in a condition is destroyed and created
703 // with each iteration of the loop.
John McCallf1549f62010-07-06 01:34:17 +0000704 RunCleanupsScope ConditionScope(*this);
Douglas Gregor5656e142009-11-24 21:15:44 +0000705
John McCallf1549f62010-07-06 01:34:17 +0000706 if (S.getConditionVariable())
John McCallb6bbcc92010-10-15 04:57:14 +0000707 EmitAutoVarDecl(*S.getConditionVariable());
Chad Rosier6f61ba22012-06-20 17:43:05 +0000708
Mike Stump16b16202009-02-07 17:18:33 +0000709 // Evaluate the conditional in the while header. C99 6.8.5.1: The
710 // evaluation of the controlling expression takes place before each
711 // execution of the loop body.
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Chad Rosier6f61ba22012-06-20 17:43:05 +0000713
Devang Patel2c30d8f2007-10-09 20:51:27 +0000714 // while(1) is common, avoid extra exit blocks. Be sure
Reid Spencer5f016e22007-07-11 17:01:13 +0000715 // to correctly handle break/continue though.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000716 bool EmitBoolCondBranch = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000717 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
Devang Patel2c30d8f2007-10-09 20:51:27 +0000718 if (C->isOne())
719 EmitBoolCondBranch = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 // As long as the condition is true, go to the loop body.
John McCallf1549f62010-07-06 01:34:17 +0000722 llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
723 if (EmitBoolCondBranch) {
John McCallff8e1152010-07-23 21:56:41 +0000724 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
John McCallf1549f62010-07-06 01:34:17 +0000725 if (ConditionScope.requiresCleanups())
726 ExitBlock = createBasicBlock("while.exit");
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700727 llvm::BranchInst *CondBr =
728 Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock,
729 PGO.createLoopWeights(S.getCond(), Cnt));
John McCallf1549f62010-07-06 01:34:17 +0000730
John McCallff8e1152010-07-23 21:56:41 +0000731 if (ExitBlock != LoopExit.getBlock()) {
John McCallf1549f62010-07-06 01:34:17 +0000732 EmitBlock(ExitBlock);
733 EmitBranchThroughCleanup(LoopExit);
734 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700735
736 // Attach metadata to loop body conditional branch.
737 EmitCondBrHints(LoopBody->getContext(), CondBr, WhileAttrs);
John McCallf1549f62010-07-06 01:34:17 +0000738 }
Chad Rosier6f61ba22012-06-20 17:43:05 +0000739
John McCallf1549f62010-07-06 01:34:17 +0000740 // Emit the loop body. We have to emit this in a cleanup scope
741 // because it might be a singleton DeclStmt.
Douglas Gregor5656e142009-11-24 21:15:44 +0000742 {
John McCallf1549f62010-07-06 01:34:17 +0000743 RunCleanupsScope BodyScope(*this);
Douglas Gregor5656e142009-11-24 21:15:44 +0000744 EmitBlock(LoopBody);
Stephen Hines651f13c2014-04-23 16:59:28 -0700745 Cnt.beginRegion(Builder);
Douglas Gregor5656e142009-11-24 21:15:44 +0000746 EmitStmt(S.getBody());
747 }
Chris Lattnerda138702007-07-16 21:28:45 +0000748
Mike Stump1eb44332009-09-09 15:08:12 +0000749 BreakContinueStack.pop_back();
750
John McCallf1549f62010-07-06 01:34:17 +0000751 // Immediately force cleanup.
752 ConditionScope.ForceCleanup();
Douglas Gregor5656e142009-11-24 21:15:44 +0000753
Stephen Hines176edba2014-12-01 14:53:08 -0800754 EmitStopPoint(&S);
John McCallf1549f62010-07-06 01:34:17 +0000755 // Branch to the loop header again.
John McCallff8e1152010-07-23 21:56:41 +0000756 EmitBranch(LoopHeader.getBlock());
Mike Stump1eb44332009-09-09 15:08:12 +0000757
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700758 LoopStack.pop();
759
Reid Spencer5f016e22007-07-11 17:01:13 +0000760 // Emit the exit block.
John McCallff8e1152010-07-23 21:56:41 +0000761 EmitBlock(LoopExit.getBlock(), true);
Douglas Gregor5656e142009-11-24 21:15:44 +0000762
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000763 // The LoopHeader typically is just a branch if we skipped emitting
764 // a branch, try to erase it.
John McCallf1549f62010-07-06 01:34:17 +0000765 if (!EmitBoolCondBranch)
John McCallff8e1152010-07-23 21:56:41 +0000766 SimplifyForwardingBlocks(LoopHeader.getBlock());
Reid Spencer5f016e22007-07-11 17:01:13 +0000767}
768
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700769void CodeGenFunction::EmitDoStmt(const DoStmt &S,
Stephen Hines176edba2014-12-01 14:53:08 -0800770 ArrayRef<const Attr *> DoAttrs) {
John McCallf1549f62010-07-06 01:34:17 +0000771 JumpDest LoopExit = getJumpDestInCurrentScope("do.end");
772 JumpDest LoopCond = getJumpDestInCurrentScope("do.cond");
Mike Stump1eb44332009-09-09 15:08:12 +0000773
Stephen Hines651f13c2014-04-23 16:59:28 -0700774 RegionCounter Cnt = getPGORegionCounter(&S);
775
Chris Lattnerda138702007-07-16 21:28:45 +0000776 // Store the blocks to use for break and continue.
John McCallf1549f62010-07-06 01:34:17 +0000777 BreakContinueStack.push_back(BreakContinue(LoopExit, LoopCond));
Mike Stump1eb44332009-09-09 15:08:12 +0000778
John McCallf1549f62010-07-06 01:34:17 +0000779 // Emit the body of the loop.
780 llvm::BasicBlock *LoopBody = createBasicBlock("do.body");
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700781
782 LoopStack.push(LoopBody);
783
Stephen Hines651f13c2014-04-23 16:59:28 -0700784 EmitBlockWithFallThrough(LoopBody, Cnt);
John McCallf1549f62010-07-06 01:34:17 +0000785 {
786 RunCleanupsScope BodyScope(*this);
787 EmitStmt(S.getBody());
788 }
Mike Stump1eb44332009-09-09 15:08:12 +0000789
John McCallff8e1152010-07-23 21:56:41 +0000790 EmitBlock(LoopCond.getBlock());
Mike Stump1eb44332009-09-09 15:08:12 +0000791
Reid Spencer5f016e22007-07-11 17:01:13 +0000792 // C99 6.8.5.2: "The evaluation of the controlling expression takes place
793 // after each execution of the loop body."
Mike Stump1eb44332009-09-09 15:08:12 +0000794
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 // Evaluate the conditional in the while header.
796 // C99 6.8.5p2/p4: The first substatement is executed if the expression
797 // compares unequal to 0. The condition must be a scalar type.
798 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000799
Stephen Hines651f13c2014-04-23 16:59:28 -0700800 BreakContinueStack.pop_back();
801
Devang Patel05f6e6b2007-10-09 20:33:39 +0000802 // "do {} while (0)" is common in macros, avoid extra blocks. Be sure
803 // to correctly handle break/continue though.
804 bool EmitBoolCondBranch = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000805 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
Devang Patel05f6e6b2007-10-09 20:33:39 +0000806 if (C->isZero())
807 EmitBoolCondBranch = false;
808
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 // As long as the condition is true, iterate the loop.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700810 if (EmitBoolCondBranch) {
811 llvm::BranchInst *CondBr =
812 Builder.CreateCondBr(BoolCondVal, LoopBody, LoopExit.getBlock(),
813 PGO.createLoopWeights(S.getCond(), Cnt));
814
815 // Attach metadata to loop body conditional branch.
816 EmitCondBrHints(LoopBody->getContext(), CondBr, DoAttrs);
817 }
Mike Stump1eb44332009-09-09 15:08:12 +0000818
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700819 LoopStack.pop();
820
Reid Spencer5f016e22007-07-11 17:01:13 +0000821 // Emit the exit block.
John McCallff8e1152010-07-23 21:56:41 +0000822 EmitBlock(LoopExit.getBlock());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000823
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000824 // The DoCond block typically is just a branch if we skipped
825 // emitting a branch, try to erase it.
826 if (!EmitBoolCondBranch)
John McCallff8e1152010-07-23 21:56:41 +0000827 SimplifyForwardingBlocks(LoopCond.getBlock());
Reid Spencer5f016e22007-07-11 17:01:13 +0000828}
829
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700830void CodeGenFunction::EmitForStmt(const ForStmt &S,
Stephen Hines176edba2014-12-01 14:53:08 -0800831 ArrayRef<const Attr *> ForAttrs) {
John McCallf1549f62010-07-06 01:34:17 +0000832 JumpDest LoopExit = getJumpDestInCurrentScope("for.end");
833
Stephen Hines176edba2014-12-01 14:53:08 -0800834 LexicalScope ForScope(*this, S.getSourceRange());
Devang Patel0554e0e2010-08-25 00:28:56 +0000835
Reid Spencer5f016e22007-07-11 17:01:13 +0000836 // Evaluate the first part before the loop.
837 if (S.getInit())
838 EmitStmt(S.getInit());
839
Stephen Hines651f13c2014-04-23 16:59:28 -0700840 RegionCounter Cnt = getPGORegionCounter(&S);
841
Reid Spencer5f016e22007-07-11 17:01:13 +0000842 // Start the loop with a block that tests the condition.
John McCallf1549f62010-07-06 01:34:17 +0000843 // If there's an increment, the continue scope will be overwritten
844 // later.
845 JumpDest Continue = getJumpDestInCurrentScope("for.cond");
John McCallff8e1152010-07-23 21:56:41 +0000846 llvm::BasicBlock *CondBlock = Continue.getBlock();
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 EmitBlock(CondBlock);
848
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700849 LoopStack.push(CondBlock);
850
Stephen Hines651f13c2014-04-23 16:59:28 -0700851 // If the for loop doesn't have an increment we can just use the
852 // condition as the continue block. Otherwise we'll need to create
853 // a block for it (in the current scope, i.e. in the scope of the
854 // condition), and that we will become our continue block.
855 if (S.getInc())
856 Continue = getJumpDestInCurrentScope("for.inc");
857
858 // Store the blocks to use for break and continue.
859 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
860
Douglas Gregord9752062009-11-25 01:51:31 +0000861 // Create a cleanup scope for the condition variable cleanups.
Stephen Hines176edba2014-12-01 14:53:08 -0800862 LexicalScope ConditionScope(*this, S.getSourceRange());
Chad Rosier6f61ba22012-06-20 17:43:05 +0000863
Reid Spencer5f016e22007-07-11 17:01:13 +0000864 if (S.getCond()) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000865 // If the for statement has a condition scope, emit the local variable
866 // declaration.
Douglas Gregord9752062009-11-25 01:51:31 +0000867 if (S.getConditionVariable()) {
John McCallb6bbcc92010-10-15 04:57:14 +0000868 EmitAutoVarDecl(*S.getConditionVariable());
Douglas Gregord9752062009-11-25 01:51:31 +0000869 }
John McCallf1549f62010-07-06 01:34:17 +0000870
Justin Bognerfd93e4a2013-11-04 16:13:18 +0000871 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
John McCallf1549f62010-07-06 01:34:17 +0000872 // If there are any cleanups between here and the loop-exit scope,
873 // create a block to stage a loop exit along.
874 if (ForScope.requiresCleanups())
875 ExitBlock = createBasicBlock("for.cond.cleanup");
Chad Rosier6f61ba22012-06-20 17:43:05 +0000876
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 // As long as the condition is true, iterate the loop.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000878 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Mike Stump1eb44332009-09-09 15:08:12 +0000879
Chris Lattner31a09842008-11-12 08:04:58 +0000880 // C99 6.8.5p2/p4: The first substatement is executed if the expression
881 // compares unequal to 0. The condition must be a scalar type.
Stephen Hines651f13c2014-04-23 16:59:28 -0700882 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700883 llvm::BranchInst *CondBr =
884 Builder.CreateCondBr(BoolCondVal, ForBody, ExitBlock,
885 PGO.createLoopWeights(S.getCond(), Cnt));
886
887 // Attach metadata to loop body conditional branch.
888 EmitCondBrHints(ForBody->getContext(), CondBr, ForAttrs);
John McCallf1549f62010-07-06 01:34:17 +0000889
John McCallff8e1152010-07-23 21:56:41 +0000890 if (ExitBlock != LoopExit.getBlock()) {
John McCallf1549f62010-07-06 01:34:17 +0000891 EmitBlock(ExitBlock);
892 EmitBranchThroughCleanup(LoopExit);
893 }
Mike Stump1eb44332009-09-09 15:08:12 +0000894
895 EmitBlock(ForBody);
Reid Spencer5f016e22007-07-11 17:01:13 +0000896 } else {
897 // Treat it as a non-zero constant. Don't even create a new block for the
898 // body, just fall into it.
899 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700900 Cnt.beginRegion(Builder);
Mike Stump3e9da662009-02-07 23:02:10 +0000901
Douglas Gregord9752062009-11-25 01:51:31 +0000902 {
903 // Create a separate cleanup scope for the body, in case it is not
904 // a compound statement.
John McCallf1549f62010-07-06 01:34:17 +0000905 RunCleanupsScope BodyScope(*this);
Douglas Gregord9752062009-11-25 01:51:31 +0000906 EmitStmt(S.getBody());
907 }
Chris Lattnerda138702007-07-16 21:28:45 +0000908
Reid Spencer5f016e22007-07-11 17:01:13 +0000909 // If there is an increment, emit it next.
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000910 if (S.getInc()) {
John McCallff8e1152010-07-23 21:56:41 +0000911 EmitBlock(Continue.getBlock());
Chris Lattner883f6a72007-08-11 00:04:45 +0000912 EmitStmt(S.getInc());
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000913 }
Mike Stump1eb44332009-09-09 15:08:12 +0000914
Douglas Gregor45d3fe12010-05-21 18:36:48 +0000915 BreakContinueStack.pop_back();
Douglas Gregord9752062009-11-25 01:51:31 +0000916
John McCallf1549f62010-07-06 01:34:17 +0000917 ConditionScope.ForceCleanup();
Stephen Hines176edba2014-12-01 14:53:08 -0800918
919 EmitStopPoint(&S);
John McCallf1549f62010-07-06 01:34:17 +0000920 EmitBranch(CondBlock);
921
922 ForScope.ForceCleanup();
923
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700924 LoopStack.pop();
925
Chris Lattnerda138702007-07-16 21:28:45 +0000926 // Emit the fall-through block.
John McCallff8e1152010-07-23 21:56:41 +0000927 EmitBlock(LoopExit.getBlock(), true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000928}
929
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700930void
931CodeGenFunction::EmitCXXForRangeStmt(const CXXForRangeStmt &S,
Stephen Hines176edba2014-12-01 14:53:08 -0800932 ArrayRef<const Attr *> ForAttrs) {
Richard Smithad762fc2011-04-14 22:09:26 +0000933 JumpDest LoopExit = getJumpDestInCurrentScope("for.end");
934
Stephen Hines176edba2014-12-01 14:53:08 -0800935 LexicalScope ForScope(*this, S.getSourceRange());
Richard Smithad762fc2011-04-14 22:09:26 +0000936
937 // Evaluate the first pieces before the loop.
938 EmitStmt(S.getRangeStmt());
939 EmitStmt(S.getBeginEndStmt());
940
Stephen Hines651f13c2014-04-23 16:59:28 -0700941 RegionCounter Cnt = getPGORegionCounter(&S);
942
Richard Smithad762fc2011-04-14 22:09:26 +0000943 // Start the loop with a block that tests the condition.
944 // If there's an increment, the continue scope will be overwritten
945 // later.
946 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
947 EmitBlock(CondBlock);
948
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700949 LoopStack.push(CondBlock);
950
Richard Smithad762fc2011-04-14 22:09:26 +0000951 // If there are any cleanups between here and the loop-exit scope,
952 // create a block to stage a loop exit along.
953 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
954 if (ForScope.requiresCleanups())
955 ExitBlock = createBasicBlock("for.cond.cleanup");
Chad Rosier6f61ba22012-06-20 17:43:05 +0000956
Richard Smithad762fc2011-04-14 22:09:26 +0000957 // The loop body, consisting of the specified body and the loop variable.
958 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
959
960 // The body is executed if the expression, contextually converted
961 // to bool, is true.
Stephen Hines651f13c2014-04-23 16:59:28 -0700962 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700963 llvm::BranchInst *CondBr = Builder.CreateCondBr(
964 BoolCondVal, ForBody, ExitBlock, PGO.createLoopWeights(S.getCond(), Cnt));
965
966 // Attach metadata to loop body conditional branch.
967 EmitCondBrHints(ForBody->getContext(), CondBr, ForAttrs);
Richard Smithad762fc2011-04-14 22:09:26 +0000968
969 if (ExitBlock != LoopExit.getBlock()) {
970 EmitBlock(ExitBlock);
971 EmitBranchThroughCleanup(LoopExit);
972 }
973
974 EmitBlock(ForBody);
Stephen Hines651f13c2014-04-23 16:59:28 -0700975 Cnt.beginRegion(Builder);
Richard Smithad762fc2011-04-14 22:09:26 +0000976
977 // Create a block for the increment. In case of a 'continue', we jump there.
978 JumpDest Continue = getJumpDestInCurrentScope("for.inc");
979
980 // Store the blocks to use for break and continue.
981 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
982
983 {
984 // Create a separate cleanup scope for the loop variable and body.
Stephen Hines176edba2014-12-01 14:53:08 -0800985 LexicalScope BodyScope(*this, S.getSourceRange());
Richard Smithad762fc2011-04-14 22:09:26 +0000986 EmitStmt(S.getLoopVarStmt());
987 EmitStmt(S.getBody());
988 }
989
Stephen Hines176edba2014-12-01 14:53:08 -0800990 EmitStopPoint(&S);
Richard Smithad762fc2011-04-14 22:09:26 +0000991 // If there is an increment, emit it next.
992 EmitBlock(Continue.getBlock());
993 EmitStmt(S.getInc());
994
995 BreakContinueStack.pop_back();
996
997 EmitBranch(CondBlock);
998
999 ForScope.ForceCleanup();
1000
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001001 LoopStack.pop();
1002
Richard Smithad762fc2011-04-14 22:09:26 +00001003 // Emit the fall-through block.
1004 EmitBlock(LoopExit.getBlock(), true);
1005}
1006
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001007void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
1008 if (RV.isScalar()) {
1009 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
1010 } else if (RV.isAggregate()) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001011 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001012 } else {
John McCall9d232c82013-03-07 21:37:08 +00001013 EmitStoreOfComplex(RV.getComplexVal(),
1014 MakeNaturalAlignAddrLValue(ReturnValue, Ty),
1015 /*init*/ true);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001016 }
Anders Carlsson82d8ef02009-02-09 20:31:03 +00001017 EmitBranchThroughCleanup(ReturnBlock);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001018}
1019
Reid Spencer5f016e22007-07-11 17:01:13 +00001020/// EmitReturnStmt - Note that due to GCC extensions, this can have an operand
1021/// if the function returns void, or may be missing one if the function returns
1022/// non-void. Fun stuff :).
1023void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001024 // Emit the result value, even if unused, to evalute the side effects.
1025 const Expr *RV = S.getRetValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001026
John McCall9f357de2012-09-25 06:56:03 +00001027 // Treat block literals in a return expression as if they appeared
1028 // in their own scope. This permits a small, easily-implemented
1029 // exception to our over-conservative rules about not jumping to
1030 // statements following block literals with non-trivial cleanups.
1031 RunCleanupsScope cleanupScope(*this);
1032 if (const ExprWithCleanups *cleanups =
1033 dyn_cast_or_null<ExprWithCleanups>(RV)) {
1034 enterFullExpression(cleanups);
1035 RV = cleanups->getSubExpr();
1036 }
1037
Daniel Dunbar5ca20842008-09-09 21:00:17 +00001038 // FIXME: Clean this up by using an LValue for ReturnTemp,
1039 // EmitStoreThroughLValue, and EmitAnyExpr.
Stephen Hines651f13c2014-04-23 16:59:28 -07001040 if (getLangOpts().ElideConstructors &&
1041 S.getNRVOCandidate() && S.getNRVOCandidate()->isNRVOVariable()) {
Douglas Gregord86c4772010-05-15 06:46:45 +00001042 // Apply the named return value optimization for this return statement,
1043 // which means doing nothing: the appropriate result has already been
1044 // constructed into the NRVO variable.
Chad Rosier6f61ba22012-06-20 17:43:05 +00001045
Douglas Gregor3d91bbc2010-05-17 15:52:46 +00001046 // If there is an NRVO flag for this variable, set it to 1 into indicate
1047 // that the cleanup code should not destroy the variable.
John McCalld16c2cf2011-02-08 08:22:06 +00001048 if (llvm::Value *NRVOFlag = NRVOFlags[S.getNRVOCandidate()])
1049 Builder.CreateStore(Builder.getTrue(), NRVOFlag);
Stephen Hines651f13c2014-04-23 16:59:28 -07001050 } else if (!ReturnValue || (RV && RV->getType()->isVoidType())) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +00001051 // Make sure not to return anything, but evaluate the expression
1052 // for side effects.
1053 if (RV)
Eli Friedman144ac612008-05-22 01:22:33 +00001054 EmitAnyExpr(RV);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001055 } else if (!RV) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +00001056 // Do nothing (return value is left uninitialized)
Eli Friedmand54b6ac2009-05-27 04:56:12 +00001057 } else if (FnRetTy->isReferenceType()) {
1058 // If this function returns a reference, take the address of the expression
1059 // rather than the value.
Richard Smithd4ec5622013-06-12 23:38:09 +00001060 RValue Result = EmitReferenceBindingToExpr(RV);
Douglas Gregor33fd1fc2010-03-24 23:14:04 +00001061 Builder.CreateStore(Result.getScalarVal(), ReturnValue);
Reid Spencer5f016e22007-07-11 17:01:13 +00001062 } else {
John McCall9d232c82013-03-07 21:37:08 +00001063 switch (getEvaluationKind(RV->getType())) {
1064 case TEK_Scalar:
1065 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
1066 break;
1067 case TEK_Complex:
1068 EmitComplexExprIntoLValue(RV,
1069 MakeNaturalAlignAddrLValue(ReturnValue, RV->getType()),
1070 /*isInit*/ true);
1071 break;
1072 case TEK_Aggregate: {
1073 CharUnits Alignment = getContext().getTypeAlignInChars(RV->getType());
1074 EmitAggExpr(RV, AggValueSlot::forAddr(ReturnValue, Alignment,
1075 Qualifiers(),
1076 AggValueSlot::IsDestructed,
1077 AggValueSlot::DoesNotNeedGCBarriers,
1078 AggValueSlot::IsNotAliased));
1079 break;
1080 }
1081 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001082 }
Eli Friedman144ac612008-05-22 01:22:33 +00001083
Adrian Prantlddb379e2013-05-07 22:41:09 +00001084 ++NumReturnExprs;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001085 if (!RV || RV->isEvaluatable(getContext()))
Adrian Prantlddb379e2013-05-07 22:41:09 +00001086 ++NumSimpleReturnExprs;
Adrian Prantlfa6b0792013-05-02 17:30:20 +00001087
John McCall9f357de2012-09-25 06:56:03 +00001088 cleanupScope.ForceCleanup();
Anders Carlsson82d8ef02009-02-09 20:31:03 +00001089 EmitBranchThroughCleanup(ReturnBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +00001090}
1091
1092void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
Devang Patel91981262011-06-04 00:38:02 +00001093 // As long as debug info is modeled with instructions, we have to ensure we
1094 // have a place to insert here and write the stop point here.
Eric Christopher2b124ea2012-04-10 05:04:07 +00001095 if (HaveInsertPoint())
Devang Patel91981262011-06-04 00:38:02 +00001096 EmitStopPoint(&S);
1097
Stephen Hines651f13c2014-04-23 16:59:28 -07001098 for (const auto *I : S.decls())
1099 EmitDecl(*I);
Chris Lattner6fa5f092007-07-12 15:43:07 +00001100}
Chris Lattnerda138702007-07-16 21:28:45 +00001101
Daniel Dunbar09124252008-11-12 08:21:33 +00001102void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +00001103 assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
1104
Daniel Dunbar09124252008-11-12 08:21:33 +00001105 // If this code is reachable then emit a stop point (if generating
1106 // debug info). We have to do this ourselves because we are on the
1107 // "simple" statement path.
1108 if (HaveInsertPoint())
1109 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +00001110
Stephen Hines651f13c2014-04-23 16:59:28 -07001111 EmitBranchThroughCleanup(BreakContinueStack.back().BreakBlock);
Chris Lattnerda138702007-07-16 21:28:45 +00001112}
1113
Daniel Dunbar09124252008-11-12 08:21:33 +00001114void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +00001115 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
1116
Daniel Dunbar09124252008-11-12 08:21:33 +00001117 // If this code is reachable then emit a stop point (if generating
1118 // debug info). We have to do this ourselves because we are on the
1119 // "simple" statement path.
1120 if (HaveInsertPoint())
1121 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +00001122
Stephen Hines651f13c2014-04-23 16:59:28 -07001123 EmitBranchThroughCleanup(BreakContinueStack.back().ContinueBlock);
Chris Lattnerda138702007-07-16 21:28:45 +00001124}
Devang Patel51b09f22007-10-04 23:45:31 +00001125
Devang Patelc049e4f2007-10-08 20:57:48 +00001126/// EmitCaseStmtRange - If case statement range is not too big then
1127/// add multiple cases to switch instruction, one for each value within
1128/// the range. If range is too big then emit "if" condition check.
1129void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
Daniel Dunbar4efde8d2008-07-24 01:18:41 +00001130 assert(S.getRHS() && "Expected RHS value in CaseStmt");
Devang Patelc049e4f2007-10-08 20:57:48 +00001131
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001132 llvm::APSInt LHS = S.getLHS()->EvaluateKnownConstInt(getContext());
1133 llvm::APSInt RHS = S.getRHS()->EvaluateKnownConstInt(getContext());
Daniel Dunbar4efde8d2008-07-24 01:18:41 +00001134
Stephen Hines651f13c2014-04-23 16:59:28 -07001135 RegionCounter CaseCnt = getPGORegionCounter(&S);
1136
Daniel Dunbar16f23572008-07-25 01:11:38 +00001137 // Emit the code for this case. We do this first to make sure it is
1138 // properly chained from our predecessor before generating the
1139 // switch machinery to enter this block.
Stephen Hines651f13c2014-04-23 16:59:28 -07001140 llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb");
1141 EmitBlockWithFallThrough(CaseDest, CaseCnt);
Daniel Dunbar16f23572008-07-25 01:11:38 +00001142 EmitStmt(S.getSubStmt());
1143
Daniel Dunbar4efde8d2008-07-24 01:18:41 +00001144 // If range is empty, do nothing.
1145 if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))
1146 return;
Devang Patelc049e4f2007-10-08 20:57:48 +00001147
1148 llvm::APInt Range = RHS - LHS;
Daniel Dunbar16f23572008-07-25 01:11:38 +00001149 // FIXME: parameters such as this should not be hardcoded.
Devang Patelc049e4f2007-10-08 20:57:48 +00001150 if (Range.ult(llvm::APInt(Range.getBitWidth(), 64))) {
1151 // Range is small enough to add multiple switch instruction cases.
Stephen Hines651f13c2014-04-23 16:59:28 -07001152 uint64_t Total = CaseCnt.getCount();
1153 unsigned NCases = Range.getZExtValue() + 1;
1154 // We only have one region counter for the entire set of cases here, so we
1155 // need to divide the weights evenly between the generated cases, ensuring
1156 // that the total weight is preserved. E.g., a weight of 5 over three cases
1157 // will be distributed as weights of 2, 2, and 1.
1158 uint64_t Weight = Total / NCases, Rem = Total % NCases;
1159 for (unsigned I = 0; I != NCases; ++I) {
1160 if (SwitchWeights)
1161 SwitchWeights->push_back(Weight + (Rem ? 1 : 0));
1162 if (Rem)
1163 Rem--;
Chris Lattner97d54372011-04-19 20:53:45 +00001164 SwitchInsn->addCase(Builder.getInt(LHS), CaseDest);
Devang Patel2d79d0f2007-10-05 20:54:07 +00001165 LHS++;
1166 }
Devang Patelc049e4f2007-10-08 20:57:48 +00001167 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001168 }
1169
Daniel Dunbar16f23572008-07-25 01:11:38 +00001170 // The range is too big. Emit "if" condition into a new block,
1171 // making sure to save and restore the current insertion point.
1172 llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
Devang Patel2d79d0f2007-10-05 20:54:07 +00001173
Daniel Dunbar16f23572008-07-25 01:11:38 +00001174 // Push this test onto the chain of range checks (which terminates
1175 // in the default basic block). The switch's default will be changed
1176 // to the top of this chain after switch emission is complete.
1177 llvm::BasicBlock *FalseDest = CaseRangeBlock;
Daniel Dunbar55e87422008-11-11 02:29:29 +00001178 CaseRangeBlock = createBasicBlock("sw.caserange");
Devang Patelc049e4f2007-10-08 20:57:48 +00001179
Daniel Dunbar16f23572008-07-25 01:11:38 +00001180 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
1181 Builder.SetInsertPoint(CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +00001182
1183 // Emit range check.
Mike Stump1eb44332009-09-09 15:08:12 +00001184 llvm::Value *Diff =
Benjamin Kramer578faa82011-09-27 21:06:10 +00001185 Builder.CreateSub(SwitchInsn->getCondition(), Builder.getInt(LHS));
Mike Stump1eb44332009-09-09 15:08:12 +00001186 llvm::Value *Cond =
Chris Lattner97d54372011-04-19 20:53:45 +00001187 Builder.CreateICmpULE(Diff, Builder.getInt(Range), "inbounds");
Stephen Hines651f13c2014-04-23 16:59:28 -07001188
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001189 llvm::MDNode *Weights = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07001190 if (SwitchWeights) {
1191 uint64_t ThisCount = CaseCnt.getCount();
1192 uint64_t DefaultCount = (*SwitchWeights)[0];
1193 Weights = PGO.createBranchWeights(ThisCount, DefaultCount);
1194
1195 // Since we're chaining the switch default through each large case range, we
1196 // need to update the weight for the default, ie, the first case, to include
1197 // this case.
1198 (*SwitchWeights)[0] += ThisCount;
1199 }
1200 Builder.CreateCondBr(Cond, CaseDest, FalseDest, Weights);
Devang Patelc049e4f2007-10-08 20:57:48 +00001201
Daniel Dunbar16f23572008-07-25 01:11:38 +00001202 // Restore the appropriate insertion point.
Daniel Dunbara448fb22008-11-11 23:11:34 +00001203 if (RestoreBB)
1204 Builder.SetInsertPoint(RestoreBB);
1205 else
1206 Builder.ClearInsertionPoint();
Devang Patelc049e4f2007-10-08 20:57:48 +00001207}
1208
1209void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
Fariborz Jahaniand66715d2012-01-16 17:35:57 +00001210 // If there is no enclosing switch instance that we're aware of, then this
1211 // case statement and its block can be elided. This situation only happens
1212 // when we've constant-folded the switch, are emitting the constant case,
Stephen Hines651f13c2014-04-23 16:59:28 -07001213 // and part of the constant case includes another case statement. For
Fariborz Jahaniand66715d2012-01-16 17:35:57 +00001214 // instance: switch (4) { case 4: do { case 5: } while (1); }
Fariborz Jahanian303b4f92012-01-17 23:55:19 +00001215 if (!SwitchInsn) {
1216 EmitStmt(S.getSubStmt());
Fariborz Jahaniand66715d2012-01-16 17:35:57 +00001217 return;
Fariborz Jahanian303b4f92012-01-17 23:55:19 +00001218 }
Fariborz Jahaniand66715d2012-01-16 17:35:57 +00001219
Chris Lattnerb11f9192011-04-17 00:54:30 +00001220 // Handle case ranges.
Devang Patelc049e4f2007-10-08 20:57:48 +00001221 if (S.getRHS()) {
1222 EmitCaseStmtRange(S);
1223 return;
1224 }
Mike Stump1eb44332009-09-09 15:08:12 +00001225
Stephen Hines651f13c2014-04-23 16:59:28 -07001226 RegionCounter CaseCnt = getPGORegionCounter(&S);
Chris Lattner97d54372011-04-19 20:53:45 +00001227 llvm::ConstantInt *CaseVal =
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001228 Builder.getInt(S.getLHS()->EvaluateKnownConstInt(getContext()));
Chris Lattner97d54372011-04-19 20:53:45 +00001229
Stephen Hines651f13c2014-04-23 16:59:28 -07001230 // If the body of the case is just a 'break', try to not emit an empty block.
1231 // If we're profiling or we're not optimizing, leave the block in for better
1232 // debug and coverage analysis.
1233 if (!CGM.getCodeGenOpts().ProfileInstrGenerate &&
1234 CGM.getCodeGenOpts().OptimizationLevel > 0 &&
Chad Rosier17083602012-08-24 18:31:16 +00001235 isa<BreakStmt>(S.getSubStmt())) {
Chris Lattnerb11f9192011-04-17 00:54:30 +00001236 JumpDest Block = BreakContinueStack.back().BreakBlock;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001237
Chris Lattnerb11f9192011-04-17 00:54:30 +00001238 // Only do this optimization if there are no cleanups that need emitting.
1239 if (isObviouslyBranchWithoutCleanups(Block)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001240 if (SwitchWeights)
1241 SwitchWeights->push_back(CaseCnt.getCount());
Chris Lattner97d54372011-04-19 20:53:45 +00001242 SwitchInsn->addCase(CaseVal, Block.getBlock());
Chris Lattner42104862011-04-17 23:21:26 +00001243
1244 // If there was a fallthrough into this case, make sure to redirect it to
1245 // the end of the switch as well.
1246 if (Builder.GetInsertBlock()) {
1247 Builder.CreateBr(Block.getBlock());
1248 Builder.ClearInsertionPoint();
1249 }
Chris Lattnerb11f9192011-04-17 00:54:30 +00001250 return;
1251 }
1252 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001253
Stephen Hines651f13c2014-04-23 16:59:28 -07001254 llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb");
1255 EmitBlockWithFallThrough(CaseDest, CaseCnt);
1256 if (SwitchWeights)
1257 SwitchWeights->push_back(CaseCnt.getCount());
Chris Lattner97d54372011-04-19 20:53:45 +00001258 SwitchInsn->addCase(CaseVal, CaseDest);
Mike Stump1eb44332009-09-09 15:08:12 +00001259
Chris Lattner5512f282009-03-04 04:46:18 +00001260 // Recursively emitting the statement is acceptable, but is not wonderful for
1261 // code where we have many case statements nested together, i.e.:
1262 // case 1:
1263 // case 2:
1264 // case 3: etc.
1265 // Handling this recursively will create a new block for each case statement
1266 // that falls through to the next case which is IR intensive. It also causes
1267 // deep recursion which can run into stack depth limitations. Handle
1268 // sequential non-range case statements specially.
1269 const CaseStmt *CurCase = &S;
1270 const CaseStmt *NextCase = dyn_cast<CaseStmt>(S.getSubStmt());
1271
Chris Lattner97d54372011-04-19 20:53:45 +00001272 // Otherwise, iteratively add consecutive cases to this switch stmt.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001273 while (NextCase && NextCase->getRHS() == nullptr) {
Chris Lattner5512f282009-03-04 04:46:18 +00001274 CurCase = NextCase;
Stephen Hines651f13c2014-04-23 16:59:28 -07001275 llvm::ConstantInt *CaseVal =
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001276 Builder.getInt(CurCase->getLHS()->EvaluateKnownConstInt(getContext()));
Stephen Hines651f13c2014-04-23 16:59:28 -07001277
1278 CaseCnt = getPGORegionCounter(NextCase);
1279 if (SwitchWeights)
1280 SwitchWeights->push_back(CaseCnt.getCount());
1281 if (CGM.getCodeGenOpts().ProfileInstrGenerate) {
1282 CaseDest = createBasicBlock("sw.bb");
1283 EmitBlockWithFallThrough(CaseDest, CaseCnt);
1284 }
1285
Chris Lattner97d54372011-04-19 20:53:45 +00001286 SwitchInsn->addCase(CaseVal, CaseDest);
Chris Lattner5512f282009-03-04 04:46:18 +00001287 NextCase = dyn_cast<CaseStmt>(CurCase->getSubStmt());
1288 }
Mike Stump1eb44332009-09-09 15:08:12 +00001289
Chris Lattner5512f282009-03-04 04:46:18 +00001290 // Normal default recursion for non-cases.
1291 EmitStmt(CurCase->getSubStmt());
Devang Patel51b09f22007-10-04 23:45:31 +00001292}
1293
1294void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
Daniel Dunbar16f23572008-07-25 01:11:38 +00001295 llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
Mike Stump1eb44332009-09-09 15:08:12 +00001296 assert(DefaultBlock->empty() &&
Daniel Dunbar55e87422008-11-11 02:29:29 +00001297 "EmitDefaultStmt: Default block already defined?");
Stephen Hines651f13c2014-04-23 16:59:28 -07001298
1299 RegionCounter Cnt = getPGORegionCounter(&S);
1300 EmitBlockWithFallThrough(DefaultBlock, Cnt);
1301
Devang Patel51b09f22007-10-04 23:45:31 +00001302 EmitStmt(S.getSubStmt());
1303}
1304
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001305/// CollectStatementsForCase - Given the body of a 'switch' statement and a
1306/// constant value that is being switched on, see if we can dead code eliminate
1307/// the body of the switch to a simple series of statements to emit. Basically,
1308/// on a switch (5) we want to find these statements:
1309/// case 5:
1310/// printf(...); <--
1311/// ++i; <--
1312/// break;
1313///
1314/// and add them to the ResultStmts vector. If it is unsafe to do this
1315/// transformation (for example, one of the elided statements contains a label
1316/// that might be jumped to), return CSFC_Failure. If we handled it and 'S'
1317/// should include statements after it (e.g. the printf() line is a substmt of
1318/// the case) then return CSFC_FallThrough. If we handled it and found a break
1319/// statement, then return CSFC_Success.
1320///
1321/// If Case is non-null, then we are looking for the specified case, checking
1322/// that nothing we jump over contains labels. If Case is null, then we found
1323/// the case and are looking for the break.
1324///
1325/// If the recursive walk actually finds our Case, then we set FoundCase to
1326/// true.
1327///
1328enum CSFC_Result { CSFC_Failure, CSFC_FallThrough, CSFC_Success };
1329static CSFC_Result CollectStatementsForCase(const Stmt *S,
1330 const SwitchCase *Case,
1331 bool &FoundCase,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001332 SmallVectorImpl<const Stmt*> &ResultStmts) {
Chris Lattner38589382011-02-28 01:02:29 +00001333 // If this is a null statement, just succeed.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001334 if (!S)
Chris Lattner38589382011-02-28 01:02:29 +00001335 return Case ? CSFC_Success : CSFC_FallThrough;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001336
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001337 // If this is the switchcase (case 4: or default) that we're looking for, then
1338 // we're in business. Just add the substatement.
1339 if (const SwitchCase *SC = dyn_cast<SwitchCase>(S)) {
1340 if (S == Case) {
1341 FoundCase = true;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001342 return CollectStatementsForCase(SC->getSubStmt(), nullptr, FoundCase,
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001343 ResultStmts);
1344 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001345
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001346 // Otherwise, this is some other case or default statement, just ignore it.
1347 return CollectStatementsForCase(SC->getSubStmt(), Case, FoundCase,
1348 ResultStmts);
1349 }
Chris Lattner38589382011-02-28 01:02:29 +00001350
1351 // If we are in the live part of the code and we found our break statement,
1352 // return a success!
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001353 if (!Case && isa<BreakStmt>(S))
Chris Lattner38589382011-02-28 01:02:29 +00001354 return CSFC_Success;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001355
Chris Lattner38589382011-02-28 01:02:29 +00001356 // If this is a switch statement, then it might contain the SwitchCase, the
1357 // break, or neither.
1358 if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
1359 // Handle this as two cases: we might be looking for the SwitchCase (if so
1360 // the skipped statements must be skippable) or we might already have it.
1361 CompoundStmt::const_body_iterator I = CS->body_begin(), E = CS->body_end();
1362 if (Case) {
Chris Lattner3f06e272011-02-28 07:22:44 +00001363 // Keep track of whether we see a skipped declaration. The code could be
1364 // using the declaration even if it is skipped, so we can't optimize out
1365 // the decl if the kept statements might refer to it.
1366 bool HadSkippedDecl = false;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001367
Chris Lattner38589382011-02-28 01:02:29 +00001368 // If we're looking for the case, just see if we can skip each of the
1369 // substatements.
1370 for (; Case && I != E; ++I) {
Eli Friedman4d509342011-05-21 19:15:39 +00001371 HadSkippedDecl |= isa<DeclStmt>(*I);
Chad Rosier6f61ba22012-06-20 17:43:05 +00001372
Chris Lattner38589382011-02-28 01:02:29 +00001373 switch (CollectStatementsForCase(*I, Case, FoundCase, ResultStmts)) {
1374 case CSFC_Failure: return CSFC_Failure;
1375 case CSFC_Success:
1376 // A successful result means that either 1) that the statement doesn't
1377 // have the case and is skippable, or 2) does contain the case value
Chris Lattner94671102011-02-28 07:16:14 +00001378 // and also contains the break to exit the switch. In the later case,
1379 // we just verify the rest of the statements are elidable.
1380 if (FoundCase) {
Chris Lattner3f06e272011-02-28 07:22:44 +00001381 // If we found the case and skipped declarations, we can't do the
1382 // optimization.
1383 if (HadSkippedDecl)
1384 return CSFC_Failure;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001385
Chris Lattner94671102011-02-28 07:16:14 +00001386 for (++I; I != E; ++I)
1387 if (CodeGenFunction::ContainsLabel(*I, true))
1388 return CSFC_Failure;
1389 return CSFC_Success;
1390 }
Chris Lattner38589382011-02-28 01:02:29 +00001391 break;
1392 case CSFC_FallThrough:
1393 // If we have a fallthrough condition, then we must have found the
1394 // case started to include statements. Consider the rest of the
1395 // statements in the compound statement as candidates for inclusion.
1396 assert(FoundCase && "Didn't find case but returned fallthrough?");
1397 // We recursively found Case, so we're not looking for it anymore.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001398 Case = nullptr;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001399
Chris Lattner3f06e272011-02-28 07:22:44 +00001400 // If we found the case and skipped declarations, we can't do the
1401 // optimization.
1402 if (HadSkippedDecl)
1403 return CSFC_Failure;
Chris Lattner38589382011-02-28 01:02:29 +00001404 break;
1405 }
1406 }
1407 }
1408
1409 // If we have statements in our range, then we know that the statements are
1410 // live and need to be added to the set of statements we're tracking.
1411 for (; I != E; ++I) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001412 switch (CollectStatementsForCase(*I, nullptr, FoundCase, ResultStmts)) {
Chris Lattner38589382011-02-28 01:02:29 +00001413 case CSFC_Failure: return CSFC_Failure;
1414 case CSFC_FallThrough:
1415 // A fallthrough result means that the statement was simple and just
1416 // included in ResultStmt, keep adding them afterwards.
1417 break;
1418 case CSFC_Success:
1419 // A successful result means that we found the break statement and
1420 // stopped statement inclusion. We just ensure that any leftover stmts
1421 // are skippable and return success ourselves.
1422 for (++I; I != E; ++I)
1423 if (CodeGenFunction::ContainsLabel(*I, true))
1424 return CSFC_Failure;
1425 return CSFC_Success;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001426 }
Chris Lattner38589382011-02-28 01:02:29 +00001427 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001428
Chris Lattner38589382011-02-28 01:02:29 +00001429 return Case ? CSFC_Success : CSFC_FallThrough;
1430 }
1431
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001432 // Okay, this is some other statement that we don't handle explicitly, like a
1433 // for statement or increment etc. If we are skipping over this statement,
1434 // just verify it doesn't have labels, which would make it invalid to elide.
1435 if (Case) {
Chris Lattner3f06e272011-02-28 07:22:44 +00001436 if (CodeGenFunction::ContainsLabel(S, true))
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001437 return CSFC_Failure;
1438 return CSFC_Success;
1439 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001440
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001441 // Otherwise, we want to include this statement. Everything is cool with that
1442 // so long as it doesn't contain a break out of the switch we're in.
1443 if (CodeGenFunction::containsBreak(S)) return CSFC_Failure;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001444
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001445 // Otherwise, everything is great. Include the statement and tell the caller
1446 // that we fall through and include the next statement as well.
1447 ResultStmts.push_back(S);
1448 return CSFC_FallThrough;
1449}
1450
1451/// FindCaseStatementsForValue - Find the case statement being jumped to and
1452/// then invoke CollectStatementsForCase to find the list of statements to emit
1453/// for a switch on constant. See the comment above CollectStatementsForCase
1454/// for more details.
1455static bool FindCaseStatementsForValue(const SwitchStmt &S,
Richard Trieue1ecdc12012-07-23 20:21:35 +00001456 const llvm::APSInt &ConstantCondValue,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001457 SmallVectorImpl<const Stmt*> &ResultStmts,
Stephen Hines651f13c2014-04-23 16:59:28 -07001458 ASTContext &C,
1459 const SwitchCase *&ResultCase) {
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001460 // First step, find the switch case that is being branched to. We can do this
1461 // efficiently by scanning the SwitchCase list.
1462 const SwitchCase *Case = S.getSwitchCaseList();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001463 const DefaultStmt *DefaultCase = nullptr;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001464
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001465 for (; Case; Case = Case->getNextSwitchCase()) {
1466 // It's either a default or case. Just remember the default statement in
1467 // case we're not jumping to any numbered cases.
1468 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) {
1469 DefaultCase = DS;
1470 continue;
1471 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001472
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001473 // Check to see if this case is the one we're looking for.
1474 const CaseStmt *CS = cast<CaseStmt>(Case);
1475 // Don't handle case ranges yet.
1476 if (CS->getRHS()) return false;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001477
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001478 // If we found our case, remember it as 'case'.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001479 if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue)
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001480 break;
1481 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001482
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001483 // If we didn't find a matching case, we use a default if it exists, or we
1484 // elide the whole switch body!
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001485 if (!Case) {
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001486 // It is safe to elide the body of the switch if it doesn't contain labels
1487 // etc. If it is safe, return successfully with an empty ResultStmts list.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001488 if (!DefaultCase)
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001489 return !CodeGenFunction::ContainsLabel(&S);
1490 Case = DefaultCase;
1491 }
1492
1493 // Ok, we know which case is being jumped to, try to collect all the
1494 // statements that follow it. This can fail for a variety of reasons. Also,
1495 // check to see that the recursive walk actually found our case statement.
1496 // Insane cases like this can fail to find it in the recursive walk since we
1497 // don't handle every stmt kind:
1498 // switch (4) {
1499 // while (1) {
1500 // case 4: ...
1501 bool FoundCase = false;
Stephen Hines651f13c2014-04-23 16:59:28 -07001502 ResultCase = Case;
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001503 return CollectStatementsForCase(S.getBody(), Case, FoundCase,
1504 ResultStmts) != CSFC_Failure &&
1505 FoundCase;
1506}
1507
Devang Patel51b09f22007-10-04 23:45:31 +00001508void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001509 // Handle nested switch statements.
1510 llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
Stephen Hines651f13c2014-04-23 16:59:28 -07001511 SmallVector<uint64_t, 16> *SavedSwitchWeights = SwitchWeights;
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001512 llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
1513
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001514 // See if we can constant fold the condition of the switch and therefore only
1515 // emit the live case statement (if any) of the switch.
Richard Trieue1ecdc12012-07-23 20:21:35 +00001516 llvm::APSInt ConstantCondValue;
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001517 if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001518 SmallVector<const Stmt*, 4> CaseStmts;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001519 const SwitchCase *Case = nullptr;
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001520 if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts,
Stephen Hines651f13c2014-04-23 16:59:28 -07001521 getContext(), Case)) {
1522 if (Case) {
1523 RegionCounter CaseCnt = getPGORegionCounter(Case);
1524 CaseCnt.beginRegion(Builder);
1525 }
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001526 RunCleanupsScope ExecutedScope(*this);
1527
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001528 // Emit the condition variable if needed inside the entire cleanup scope
1529 // used by this special case for constant folded switches.
1530 if (S.getConditionVariable())
1531 EmitAutoVarDecl(*S.getConditionVariable());
1532
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001533 // At this point, we are no longer "within" a switch instance, so
1534 // we can temporarily enforce this to ensure that any embedded case
1535 // statements are not emitted.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001536 SwitchInsn = nullptr;
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001537
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001538 // Okay, we can dead code eliminate everything except this case. Emit the
1539 // specified series of statements and we're good.
1540 for (unsigned i = 0, e = CaseStmts.size(); i != e; ++i)
1541 EmitStmt(CaseStmts[i]);
Stephen Hines651f13c2014-04-23 16:59:28 -07001542 RegionCounter ExitCnt = getPGORegionCounter(&S);
1543 ExitCnt.beginRegion(Builder);
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001544
Eric Christopherfc65ec82012-04-10 05:04:04 +00001545 // Now we want to restore the saved switch instance so that nested
1546 // switches continue to function properly
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001547 SwitchInsn = SavedSwitchInsn;
1548
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001549 return;
1550 }
1551 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001552
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001553 JumpDest SwitchExit = getJumpDestInCurrentScope("sw.epilog");
1554
1555 RunCleanupsScope ConditionScope(*this);
1556 if (S.getConditionVariable())
1557 EmitAutoVarDecl(*S.getConditionVariable());
Devang Patel51b09f22007-10-04 23:45:31 +00001558 llvm::Value *CondV = EmitScalarExpr(S.getCond());
1559
Daniel Dunbar16f23572008-07-25 01:11:38 +00001560 // Create basic block to hold stuff that comes after switch
1561 // statement. We also need to create a default block now so that
1562 // explicit case ranges tests can have a place to jump to on
1563 // failure.
Daniel Dunbar55e87422008-11-11 02:29:29 +00001564 llvm::BasicBlock *DefaultBlock = createBasicBlock("sw.default");
Daniel Dunbar16f23572008-07-25 01:11:38 +00001565 SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
Stephen Hines651f13c2014-04-23 16:59:28 -07001566 if (PGO.haveRegionCounts()) {
1567 // Walk the SwitchCase list to find how many there are.
1568 uint64_t DefaultCount = 0;
1569 unsigned NumCases = 0;
1570 for (const SwitchCase *Case = S.getSwitchCaseList();
1571 Case;
1572 Case = Case->getNextSwitchCase()) {
1573 if (isa<DefaultStmt>(Case))
1574 DefaultCount = getPGORegionCounter(Case).getCount();
1575 NumCases += 1;
1576 }
1577 SwitchWeights = new SmallVector<uint64_t, 16>();
1578 SwitchWeights->reserve(NumCases);
1579 // The default needs to be first. We store the edge count, so we already
1580 // know the right weight.
1581 SwitchWeights->push_back(DefaultCount);
1582 }
Daniel Dunbar16f23572008-07-25 01:11:38 +00001583 CaseRangeBlock = DefaultBlock;
Devang Patel51b09f22007-10-04 23:45:31 +00001584
Daniel Dunbar09124252008-11-12 08:21:33 +00001585 // Clear the insertion point to indicate we are in unreachable code.
1586 Builder.ClearInsertionPoint();
Eli Friedmand28a80d2008-05-12 16:08:04 +00001587
Stephen Hines651f13c2014-04-23 16:59:28 -07001588 // All break statements jump to NextBlock. If BreakContinueStack is non-empty
Devang Patele9b8c0a2007-10-30 20:59:40 +00001589 // then reuse last ContinueBlock.
John McCallf1549f62010-07-06 01:34:17 +00001590 JumpDest OuterContinue;
Anders Carlssone4b6d342009-02-10 05:52:02 +00001591 if (!BreakContinueStack.empty())
John McCallf1549f62010-07-06 01:34:17 +00001592 OuterContinue = BreakContinueStack.back().ContinueBlock;
Anders Carlssone4b6d342009-02-10 05:52:02 +00001593
John McCallf1549f62010-07-06 01:34:17 +00001594 BreakContinueStack.push_back(BreakContinue(SwitchExit, OuterContinue));
Devang Patel51b09f22007-10-04 23:45:31 +00001595
1596 // Emit switch body.
1597 EmitStmt(S.getBody());
Mike Stump1eb44332009-09-09 15:08:12 +00001598
Anders Carlssone4b6d342009-02-10 05:52:02 +00001599 BreakContinueStack.pop_back();
Devang Patel51b09f22007-10-04 23:45:31 +00001600
Daniel Dunbar16f23572008-07-25 01:11:38 +00001601 // Update the default block in case explicit case range tests have
1602 // been chained on top.
Stepan Dyatkovskiyab14ae22012-02-01 07:50:21 +00001603 SwitchInsn->setDefaultDest(CaseRangeBlock);
Mike Stump1eb44332009-09-09 15:08:12 +00001604
John McCallf1549f62010-07-06 01:34:17 +00001605 // If a default was never emitted:
Daniel Dunbar16f23572008-07-25 01:11:38 +00001606 if (!DefaultBlock->getParent()) {
John McCallf1549f62010-07-06 01:34:17 +00001607 // If we have cleanups, emit the default block so that there's a
1608 // place to jump through the cleanups from.
1609 if (ConditionScope.requiresCleanups()) {
1610 EmitBlock(DefaultBlock);
1611
1612 // Otherwise, just forward the default block to the switch end.
1613 } else {
John McCallff8e1152010-07-23 21:56:41 +00001614 DefaultBlock->replaceAllUsesWith(SwitchExit.getBlock());
John McCallf1549f62010-07-06 01:34:17 +00001615 delete DefaultBlock;
1616 }
Daniel Dunbar16f23572008-07-25 01:11:38 +00001617 }
Devang Patel51b09f22007-10-04 23:45:31 +00001618
John McCallff8e1152010-07-23 21:56:41 +00001619 ConditionScope.ForceCleanup();
1620
Daniel Dunbar16f23572008-07-25 01:11:38 +00001621 // Emit continuation.
John McCallff8e1152010-07-23 21:56:41 +00001622 EmitBlock(SwitchExit.getBlock(), true);
Stephen Hines651f13c2014-04-23 16:59:28 -07001623 RegionCounter ExitCnt = getPGORegionCounter(&S);
1624 ExitCnt.beginRegion(Builder);
Daniel Dunbar16f23572008-07-25 01:11:38 +00001625
Stephen Hines651f13c2014-04-23 16:59:28 -07001626 if (SwitchWeights) {
1627 assert(SwitchWeights->size() == 1 + SwitchInsn->getNumCases() &&
1628 "switch weights do not match switch cases");
1629 // If there's only one jump destination there's no sense weighting it.
1630 if (SwitchWeights->size() > 1)
1631 SwitchInsn->setMetadata(llvm::LLVMContext::MD_prof,
1632 PGO.createBranchWeights(*SwitchWeights));
1633 delete SwitchWeights;
1634 }
Devang Patel51b09f22007-10-04 23:45:31 +00001635 SwitchInsn = SavedSwitchInsn;
Stephen Hines651f13c2014-04-23 16:59:28 -07001636 SwitchWeights = SavedSwitchWeights;
Devang Patelc049e4f2007-10-08 20:57:48 +00001637 CaseRangeBlock = SavedCRBlock;
Devang Patel51b09f22007-10-04 23:45:31 +00001638}
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001639
Chris Lattner2819fa82009-04-26 17:57:12 +00001640static std::string
Daniel Dunbar444be732009-11-13 05:51:54 +00001641SimplifyConstraint(const char *Constraint, const TargetInfo &Target,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001642 SmallVectorImpl<TargetInfo::ConstraintInfo> *OutCons=nullptr) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001643 std::string Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001644
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001645 while (*Constraint) {
1646 switch (*Constraint) {
1647 default:
Stuart Hastings002333f2011-06-07 23:45:05 +00001648 Result += Target.convertConstraint(Constraint);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001649 break;
1650 // Ignore these
1651 case '*':
1652 case '?':
1653 case '!':
John Thompsonef44e112010-08-10 19:20:14 +00001654 case '=': // Will see this and the following in mult-alt constraints.
1655 case '+':
1656 break;
Ulrich Weigande6b3dba2012-10-29 12:20:54 +00001657 case '#': // Ignore the rest of the constraint alternative.
1658 while (Constraint[1] && Constraint[1] != ',')
Eric Christopher7b309b02013-07-10 20:14:36 +00001659 Constraint++;
Ulrich Weigande6b3dba2012-10-29 12:20:54 +00001660 break;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001661 case '&':
1662 case '%':
1663 Result += *Constraint;
1664 while (Constraint[1] && Constraint[1] == *Constraint)
1665 Constraint++;
1666 break;
John Thompson2f474ea2010-09-18 01:15:13 +00001667 case ',':
1668 Result += "|";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001669 break;
1670 case 'g':
1671 Result += "imr";
1672 break;
Anders Carlsson300fb5d2009-01-18 02:06:20 +00001673 case '[': {
Chris Lattner2819fa82009-04-26 17:57:12 +00001674 assert(OutCons &&
Anders Carlsson300fb5d2009-01-18 02:06:20 +00001675 "Must pass output names to constraints with a symbolic name");
1676 unsigned Index;
Mike Stump1eb44332009-09-09 15:08:12 +00001677 bool result = Target.resolveSymbolicName(Constraint,
Chris Lattner2819fa82009-04-26 17:57:12 +00001678 &(*OutCons)[0],
1679 OutCons->size(), Index);
Chris Lattnercbf40f92011-01-05 18:41:53 +00001680 assert(result && "Could not resolve symbolic name"); (void)result;
Anders Carlsson300fb5d2009-01-18 02:06:20 +00001681 Result += llvm::utostr(Index);
1682 break;
1683 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001684 }
Mike Stump1eb44332009-09-09 15:08:12 +00001685
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001686 Constraint++;
1687 }
Mike Stump1eb44332009-09-09 15:08:12 +00001688
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001689 return Result;
1690}
1691
Rafael Espindola03117d12011-01-01 21:12:33 +00001692/// AddVariableConstraints - Look at AsmExpr and if it is a variable declared
1693/// as using a particular register add that as a constraint that will be used
1694/// in this asm stmt.
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001695static std::string
Rafael Espindola03117d12011-01-01 21:12:33 +00001696AddVariableConstraints(const std::string &Constraint, const Expr &AsmExpr,
1697 const TargetInfo &Target, CodeGenModule &CGM,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001698 const AsmStmt &Stmt, const bool EarlyClobber) {
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001699 const DeclRefExpr *AsmDeclRef = dyn_cast<DeclRefExpr>(&AsmExpr);
1700 if (!AsmDeclRef)
1701 return Constraint;
1702 const ValueDecl &Value = *AsmDeclRef->getDecl();
1703 const VarDecl *Variable = dyn_cast<VarDecl>(&Value);
1704 if (!Variable)
1705 return Constraint;
Eli Friedmana43ef3e2012-03-15 23:12:51 +00001706 if (Variable->getStorageClass() != SC_Register)
1707 return Constraint;
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001708 AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>();
1709 if (!Attr)
1710 return Constraint;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001711 StringRef Register = Attr->getLabel();
Rafael Espindolabaf86952011-01-01 21:47:03 +00001712 assert(Target.isValidGCCRegisterName(Register));
Eric Christophere3e07a52011-06-17 01:53:34 +00001713 // We're using validateOutputConstraint here because we only care if
1714 // this is a register constraint.
1715 TargetInfo::ConstraintInfo Info(Constraint, "");
1716 if (Target.validateOutputConstraint(Info) &&
1717 !Info.allowsRegister()) {
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001718 CGM.ErrorUnsupported(&Stmt, "__asm__");
1719 return Constraint;
1720 }
Eric Christopher43fec872011-06-21 00:07:10 +00001721 // Canonicalize the register here before returning it.
1722 Register = Target.getNormalizedGCCRegisterName(Register);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001723 return (EarlyClobber ? "&{" : "{") + Register.str() + "}";
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001724}
1725
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001726llvm::Value*
Chad Rosier42b60552012-08-23 20:00:18 +00001727CodeGenFunction::EmitAsmInputLValue(const TargetInfo::ConstraintInfo &Info,
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001728 LValue InputValue, QualType InputType,
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001729 std::string &ConstraintStr,
1730 SourceLocation Loc) {
Anders Carlsson63471722009-01-11 19:32:54 +00001731 llvm::Value *Arg;
Mike Stump1eb44332009-09-09 15:08:12 +00001732 if (Info.allowsRegister() || !Info.allowsMemory()) {
John McCall9d232c82013-03-07 21:37:08 +00001733 if (CodeGenFunction::hasScalarEvaluationKind(InputType)) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001734 Arg = EmitLoadOfLValue(InputValue, Loc).getScalarVal();
Anders Carlsson63471722009-01-11 19:32:54 +00001735 } else {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001736 llvm::Type *Ty = ConvertType(InputType);
Micah Villmow25a6a842012-10-08 16:25:52 +00001737 uint64_t Size = CGM.getDataLayout().getTypeSizeInBits(Ty);
Anders Carlssonebaae2a2009-01-12 02:22:13 +00001738 if (Size <= 64 && llvm::isPowerOf2_64(Size)) {
John McCalld16c2cf2011-02-08 08:22:06 +00001739 Ty = llvm::IntegerType::get(getLLVMContext(), Size);
Anders Carlssonebaae2a2009-01-12 02:22:13 +00001740 Ty = llvm::PointerType::getUnqual(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001741
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001742 Arg = Builder.CreateLoad(Builder.CreateBitCast(InputValue.getAddress(),
1743 Ty));
Anders Carlssonebaae2a2009-01-12 02:22:13 +00001744 } else {
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001745 Arg = InputValue.getAddress();
Anders Carlssonebaae2a2009-01-12 02:22:13 +00001746 ConstraintStr += '*';
1747 }
Anders Carlsson63471722009-01-11 19:32:54 +00001748 }
1749 } else {
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001750 Arg = InputValue.getAddress();
Anders Carlsson63471722009-01-11 19:32:54 +00001751 ConstraintStr += '*';
1752 }
Mike Stump1eb44332009-09-09 15:08:12 +00001753
Anders Carlsson63471722009-01-11 19:32:54 +00001754 return Arg;
1755}
1756
Chad Rosier42b60552012-08-23 20:00:18 +00001757llvm::Value* CodeGenFunction::EmitAsmInput(
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001758 const TargetInfo::ConstraintInfo &Info,
1759 const Expr *InputExpr,
1760 std::string &ConstraintStr) {
1761 if (Info.allowsRegister() || !Info.allowsMemory())
John McCall9d232c82013-03-07 21:37:08 +00001762 if (CodeGenFunction::hasScalarEvaluationKind(InputExpr->getType()))
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001763 return EmitScalarExpr(InputExpr);
1764
1765 InputExpr = InputExpr->IgnoreParenNoopCasts(getContext());
1766 LValue Dest = EmitLValue(InputExpr);
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001767 return EmitAsmInputLValue(Info, Dest, InputExpr->getType(), ConstraintStr,
1768 InputExpr->getExprLoc());
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001769}
1770
Chris Lattner47fc7e92010-11-17 05:58:54 +00001771/// getAsmSrcLocInfo - Return the !srcloc metadata node to attach to an inline
Chris Lattner5d936532010-11-17 08:25:26 +00001772/// asm call instruction. The !srcloc MDNode contains a list of constant
1773/// integers which are the source locations of the start of each line in the
1774/// asm.
Chris Lattner47fc7e92010-11-17 05:58:54 +00001775static llvm::MDNode *getAsmSrcLocInfo(const StringLiteral *Str,
1776 CodeGenFunction &CGF) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001777 SmallVector<llvm::Metadata *, 8> Locs;
Chris Lattner5d936532010-11-17 08:25:26 +00001778 // Add the location of the first line to the MDNode.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001779 Locs.push_back(llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
1780 CGF.Int32Ty, Str->getLocStart().getRawEncoding())));
Chris Lattner5f9e2722011-07-23 10:55:15 +00001781 StringRef StrVal = Str->getString();
Chris Lattner5d936532010-11-17 08:25:26 +00001782 if (!StrVal.empty()) {
1783 const SourceManager &SM = CGF.CGM.getContext().getSourceManager();
David Blaikie4e4d0842012-03-11 07:00:24 +00001784 const LangOptions &LangOpts = CGF.CGM.getLangOpts();
Chad Rosier6f61ba22012-06-20 17:43:05 +00001785
Chris Lattner5d936532010-11-17 08:25:26 +00001786 // Add the location of the start of each subsequent line of the asm to the
1787 // MDNode.
1788 for (unsigned i = 0, e = StrVal.size()-1; i != e; ++i) {
1789 if (StrVal[i] != '\n') continue;
1790 SourceLocation LineLoc = Str->getLocationOfByte(i+1, SM, LangOpts,
John McCall64aa4b32013-04-16 22:48:15 +00001791 CGF.getTarget());
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001792 Locs.push_back(llvm::ConstantAsMetadata::get(
1793 llvm::ConstantInt::get(CGF.Int32Ty, LineLoc.getRawEncoding())));
Chris Lattner5d936532010-11-17 08:25:26 +00001794 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001795 }
1796
Jay Foad6f141652011-04-21 19:59:12 +00001797 return llvm::MDNode::get(CGF.getLLVMContext(), Locs);
Chris Lattner47fc7e92010-11-17 05:58:54 +00001798}
1799
Chad Rosiera23b91d2012-08-28 18:54:39 +00001800void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
Chad Rosierbe3ace82012-08-24 17:05:45 +00001801 // Assemble the final asm string.
Chad Rosierda083b22012-08-27 20:23:31 +00001802 std::string AsmString = S.generateAsmString(getContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001803
Chris Lattner481fef92009-05-03 07:05:00 +00001804 // Get all the output and input constraints together.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001805 SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
1806 SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
Chris Lattner481fef92009-05-03 07:05:00 +00001807
Mike Stump1eb44332009-09-09 15:08:12 +00001808 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
John McCallaeeacf72013-05-03 00:10:13 +00001809 StringRef Name;
1810 if (const GCCAsmStmt *GAS = dyn_cast<GCCAsmStmt>(&S))
1811 Name = GAS->getOutputName(i);
1812 TargetInfo::ConstraintInfo Info(S.getOutputConstraint(i), Name);
John McCall64aa4b32013-04-16 22:48:15 +00001813 bool IsValid = getTarget().validateOutputConstraint(Info); (void)IsValid;
Stephen Hines651f13c2014-04-23 16:59:28 -07001814 assert(IsValid && "Failed to parse output constraint");
Chris Lattner481fef92009-05-03 07:05:00 +00001815 OutputConstraintInfos.push_back(Info);
Mike Stump1eb44332009-09-09 15:08:12 +00001816 }
1817
Chris Lattner481fef92009-05-03 07:05:00 +00001818 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
John McCallaeeacf72013-05-03 00:10:13 +00001819 StringRef Name;
1820 if (const GCCAsmStmt *GAS = dyn_cast<GCCAsmStmt>(&S))
1821 Name = GAS->getInputName(i);
1822 TargetInfo::ConstraintInfo Info(S.getInputConstraint(i), Name);
John McCall64aa4b32013-04-16 22:48:15 +00001823 bool IsValid =
1824 getTarget().validateInputConstraint(OutputConstraintInfos.data(),
1825 S.getNumOutputs(), Info);
Chris Lattnerb9922592010-03-03 21:52:23 +00001826 assert(IsValid && "Failed to parse input constraint"); (void)IsValid;
Chris Lattner481fef92009-05-03 07:05:00 +00001827 InputConstraintInfos.push_back(Info);
1828 }
Mike Stump1eb44332009-09-09 15:08:12 +00001829
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001830 std::string Constraints;
Mike Stump1eb44332009-09-09 15:08:12 +00001831
Chris Lattnerede9d902009-05-03 07:53:25 +00001832 std::vector<LValue> ResultRegDests;
1833 std::vector<QualType> ResultRegQualTys;
Jay Foadef6de3d2011-07-11 09:56:20 +00001834 std::vector<llvm::Type *> ResultRegTypes;
1835 std::vector<llvm::Type *> ResultTruncRegTypes;
Chad Rosierd1c0c942012-05-01 19:53:37 +00001836 std::vector<llvm::Type *> ArgTypes;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001837 std::vector<llvm::Value*> Args;
Anders Carlssonf39a4212008-02-05 20:01:53 +00001838
1839 // Keep track of inout constraints.
1840 std::string InOutConstraints;
1841 std::vector<llvm::Value*> InOutArgs;
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001842 std::vector<llvm::Type*> InOutArgTypes;
Anders Carlsson03eb5432009-01-27 20:38:24 +00001843
Mike Stump1eb44332009-09-09 15:08:12 +00001844 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
Chris Lattner481fef92009-05-03 07:05:00 +00001845 TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i];
Anders Carlsson03eb5432009-01-27 20:38:24 +00001846
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001847 // Simplify the output constraint.
Chris Lattner481fef92009-05-03 07:05:00 +00001848 std::string OutputConstraint(S.getOutputConstraint(i));
John McCall64aa4b32013-04-16 22:48:15 +00001849 OutputConstraint = SimplifyConstraint(OutputConstraint.c_str() + 1,
1850 getTarget());
Mike Stump1eb44332009-09-09 15:08:12 +00001851
Chris Lattner810f6d52009-03-13 17:38:01 +00001852 const Expr *OutExpr = S.getOutputExpr(i);
1853 OutExpr = OutExpr->IgnoreParenNoopCasts(getContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001854
Eric Christophera18f5392011-06-03 14:52:25 +00001855 OutputConstraint = AddVariableConstraints(OutputConstraint, *OutExpr,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001856 getTarget(), CGM, S,
1857 Info.earlyClobber());
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001858
Chris Lattner810f6d52009-03-13 17:38:01 +00001859 LValue Dest = EmitLValue(OutExpr);
Chris Lattnerede9d902009-05-03 07:53:25 +00001860 if (!Constraints.empty())
Anders Carlssonbad3a942009-05-01 00:16:04 +00001861 Constraints += ',';
1862
Chris Lattnera077b5c2009-05-03 08:21:20 +00001863 // If this is a register output, then make the inline asm return it
1864 // by-value. If this is a memory result, return the value by-reference.
John McCall9d232c82013-03-07 21:37:08 +00001865 if (!Info.allowsMemory() && hasScalarEvaluationKind(OutExpr->getType())) {
Chris Lattnera077b5c2009-05-03 08:21:20 +00001866 Constraints += "=" + OutputConstraint;
Chris Lattnerede9d902009-05-03 07:53:25 +00001867 ResultRegQualTys.push_back(OutExpr->getType());
1868 ResultRegDests.push_back(Dest);
Chris Lattnera077b5c2009-05-03 08:21:20 +00001869 ResultRegTypes.push_back(ConvertTypeForMem(OutExpr->getType()));
1870 ResultTruncRegTypes.push_back(ResultRegTypes.back());
Mike Stump1eb44332009-09-09 15:08:12 +00001871
Chris Lattnera077b5c2009-05-03 08:21:20 +00001872 // If this output is tied to an input, and if the input is larger, then
1873 // we need to set the actual result type of the inline asm node to be the
1874 // same as the input type.
1875 if (Info.hasMatchingInput()) {
Chris Lattnerebfc9852009-05-03 08:38:58 +00001876 unsigned InputNo;
1877 for (InputNo = 0; InputNo != S.getNumInputs(); ++InputNo) {
1878 TargetInfo::ConstraintInfo &Input = InputConstraintInfos[InputNo];
Chris Lattneraab64d02010-04-23 17:27:29 +00001879 if (Input.hasTiedOperand() && Input.getTiedOperand() == i)
Chris Lattnera077b5c2009-05-03 08:21:20 +00001880 break;
Chris Lattnerebfc9852009-05-03 08:38:58 +00001881 }
1882 assert(InputNo != S.getNumInputs() && "Didn't find matching input!");
Mike Stump1eb44332009-09-09 15:08:12 +00001883
Chris Lattnera077b5c2009-05-03 08:21:20 +00001884 QualType InputTy = S.getInputExpr(InputNo)->getType();
Chris Lattneraab64d02010-04-23 17:27:29 +00001885 QualType OutputType = OutExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001886
Chris Lattnera077b5c2009-05-03 08:21:20 +00001887 uint64_t InputSize = getContext().getTypeSize(InputTy);
Chris Lattneraab64d02010-04-23 17:27:29 +00001888 if (getContext().getTypeSize(OutputType) < InputSize) {
1889 // Form the asm to return the value as a larger integer or fp type.
1890 ResultRegTypes.back() = ConvertType(InputTy);
Chris Lattnera077b5c2009-05-03 08:21:20 +00001891 }
1892 }
Tim Northover1bea6532013-06-07 00:04:50 +00001893 if (llvm::Type* AdjTy =
Peter Collingbourne4b93d662011-02-19 23:03:58 +00001894 getTargetHooks().adjustInlineAsmType(*this, OutputConstraint,
1895 ResultRegTypes.back()))
Dale Johannesenf6e2c202010-10-29 23:12:32 +00001896 ResultRegTypes.back() = AdjTy;
Tim Northover1bea6532013-06-07 00:04:50 +00001897 else {
1898 CGM.getDiags().Report(S.getAsmLoc(),
1899 diag::err_asm_invalid_type_in_input)
1900 << OutExpr->getType() << OutputConstraint;
1901 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001902 } else {
1903 ArgTypes.push_back(Dest.getAddress()->getType());
Anders Carlssoncad3ab62008-02-05 16:57:38 +00001904 Args.push_back(Dest.getAddress());
Anders Carlssonf39a4212008-02-05 20:01:53 +00001905 Constraints += "=*";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001906 Constraints += OutputConstraint;
Anders Carlssonf39a4212008-02-05 20:01:53 +00001907 }
Mike Stump1eb44332009-09-09 15:08:12 +00001908
Chris Lattner44def072009-04-26 07:16:29 +00001909 if (Info.isReadWrite()) {
Anders Carlssonf39a4212008-02-05 20:01:53 +00001910 InOutConstraints += ',';
Anders Carlsson63471722009-01-11 19:32:54 +00001911
Anders Carlssonfca93612009-08-04 18:18:36 +00001912 const Expr *InputExpr = S.getOutputExpr(i);
Chad Rosier42b60552012-08-23 20:00:18 +00001913 llvm::Value *Arg = EmitAsmInputLValue(Info, Dest, InputExpr->getType(),
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001914 InOutConstraints,
1915 InputExpr->getExprLoc());
Mike Stump1eb44332009-09-09 15:08:12 +00001916
Bill Wendlingacb53102012-03-22 23:25:07 +00001917 if (llvm::Type* AdjTy =
Tim Northover1bea6532013-06-07 00:04:50 +00001918 getTargetHooks().adjustInlineAsmType(*this, OutputConstraint,
1919 Arg->getType()))
Bill Wendlingacb53102012-03-22 23:25:07 +00001920 Arg = Builder.CreateBitCast(Arg, AdjTy);
1921
Chris Lattner44def072009-04-26 07:16:29 +00001922 if (Info.allowsRegister())
Anders Carlsson9f2505b2009-01-11 21:23:27 +00001923 InOutConstraints += llvm::utostr(i);
1924 else
1925 InOutConstraints += OutputConstraint;
Anders Carlsson2763b3a2009-01-11 19:46:50 +00001926
Anders Carlssonfca93612009-08-04 18:18:36 +00001927 InOutArgTypes.push_back(Arg->getType());
1928 InOutArgs.push_back(Arg);
Anders Carlssonf39a4212008-02-05 20:01:53 +00001929 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001930 }
Mike Stump1eb44332009-09-09 15:08:12 +00001931
Stephen Hines176edba2014-12-01 14:53:08 -08001932 // If this is a Microsoft-style asm blob, store the return registers (EAX:EDX)
1933 // to the return value slot. Only do this when returning in registers.
1934 if (isa<MSAsmStmt>(&S)) {
1935 const ABIArgInfo &RetAI = CurFnInfo->getReturnInfo();
1936 if (RetAI.isDirect() || RetAI.isExtend()) {
1937 // Make a fake lvalue for the return value slot.
1938 LValue ReturnSlot = MakeAddrLValue(ReturnValue, FnRetTy);
1939 CGM.getTargetCodeGenInfo().addReturnRegisterOutputs(
1940 *this, ReturnSlot, Constraints, ResultRegTypes, ResultTruncRegTypes,
1941 ResultRegDests, AsmString, S.getNumOutputs());
1942 SawAsmBlock = true;
1943 }
1944 }
Mike Stump1eb44332009-09-09 15:08:12 +00001945
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001946 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
1947 const Expr *InputExpr = S.getInputExpr(i);
1948
Chris Lattner481fef92009-05-03 07:05:00 +00001949 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
1950
Chris Lattnerede9d902009-05-03 07:53:25 +00001951 if (!Constraints.empty())
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001952 Constraints += ',';
Mike Stump1eb44332009-09-09 15:08:12 +00001953
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001954 // Simplify the input constraint.
Chris Lattner481fef92009-05-03 07:05:00 +00001955 std::string InputConstraint(S.getInputConstraint(i));
John McCall64aa4b32013-04-16 22:48:15 +00001956 InputConstraint = SimplifyConstraint(InputConstraint.c_str(), getTarget(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001957 &OutputConstraintInfos);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001958
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001959 InputConstraint = AddVariableConstraints(
1960 InputConstraint, *InputExpr->IgnoreParenNoopCasts(getContext()),
1961 getTarget(), CGM, S, false /* No EarlyClobber */);
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001962
Chad Rosier42b60552012-08-23 20:00:18 +00001963 llvm::Value *Arg = EmitAsmInput(Info, InputExpr, Constraints);
Mike Stump1eb44332009-09-09 15:08:12 +00001964
Chris Lattner4df4ee02009-05-03 07:27:51 +00001965 // If this input argument is tied to a larger output result, extend the
1966 // input to be the same size as the output. The LLVM backend wants to see
1967 // the input and output of a matching constraint be the same size. Note
1968 // that GCC does not define what the top bits are here. We use zext because
1969 // that is usually cheaper, but LLVM IR should really get an anyext someday.
1970 if (Info.hasTiedOperand()) {
1971 unsigned Output = Info.getTiedOperand();
Chris Lattneraab64d02010-04-23 17:27:29 +00001972 QualType OutputType = S.getOutputExpr(Output)->getType();
Chris Lattner4df4ee02009-05-03 07:27:51 +00001973 QualType InputTy = InputExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001974
Chris Lattneraab64d02010-04-23 17:27:29 +00001975 if (getContext().getTypeSize(OutputType) >
Chris Lattner4df4ee02009-05-03 07:27:51 +00001976 getContext().getTypeSize(InputTy)) {
1977 // Use ptrtoint as appropriate so that we can do our extension.
1978 if (isa<llvm::PointerType>(Arg->getType()))
Chris Lattner77b89b82010-06-27 07:15:29 +00001979 Arg = Builder.CreatePtrToInt(Arg, IntPtrTy);
Chris Lattner2acc6e32011-07-18 04:24:23 +00001980 llvm::Type *OutputTy = ConvertType(OutputType);
Chris Lattneraab64d02010-04-23 17:27:29 +00001981 if (isa<llvm::IntegerType>(OutputTy))
1982 Arg = Builder.CreateZExt(Arg, OutputTy);
Peter Collingbourne93f13222011-07-29 00:24:50 +00001983 else if (isa<llvm::PointerType>(OutputTy))
1984 Arg = Builder.CreateZExt(Arg, IntPtrTy);
1985 else {
1986 assert(OutputTy->isFloatingPointTy() && "Unexpected output type");
Chris Lattneraab64d02010-04-23 17:27:29 +00001987 Arg = Builder.CreateFPExt(Arg, OutputTy);
Peter Collingbourne93f13222011-07-29 00:24:50 +00001988 }
Chris Lattner4df4ee02009-05-03 07:27:51 +00001989 }
1990 }
Bill Wendlingacb53102012-03-22 23:25:07 +00001991 if (llvm::Type* AdjTy =
Peter Collingbourne4b93d662011-02-19 23:03:58 +00001992 getTargetHooks().adjustInlineAsmType(*this, InputConstraint,
1993 Arg->getType()))
Dale Johannesenf6e2c202010-10-29 23:12:32 +00001994 Arg = Builder.CreateBitCast(Arg, AdjTy);
Tim Northover1bea6532013-06-07 00:04:50 +00001995 else
1996 CGM.getDiags().Report(S.getAsmLoc(), diag::err_asm_invalid_type_in_input)
1997 << InputExpr->getType() << InputConstraint;
Mike Stump1eb44332009-09-09 15:08:12 +00001998
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001999 ArgTypes.push_back(Arg->getType());
2000 Args.push_back(Arg);
2001 Constraints += InputConstraint;
2002 }
Mike Stump1eb44332009-09-09 15:08:12 +00002003
Anders Carlssonf39a4212008-02-05 20:01:53 +00002004 // Append the "input" part of inout constraints last.
2005 for (unsigned i = 0, e = InOutArgs.size(); i != e; i++) {
2006 ArgTypes.push_back(InOutArgTypes[i]);
2007 Args.push_back(InOutArgs[i]);
2008 }
2009 Constraints += InOutConstraints;
Mike Stump1eb44332009-09-09 15:08:12 +00002010
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002011 // Clobbers
2012 for (unsigned i = 0, e = S.getNumClobbers(); i != e; i++) {
Chad Rosier33f05582012-08-27 23:47:56 +00002013 StringRef Clobber = S.getClobber(i);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002014
Eric Christopherde31fd72011-06-28 18:20:53 +00002015 if (Clobber != "memory" && Clobber != "cc")
Stephen Hines176edba2014-12-01 14:53:08 -08002016 Clobber = getTarget().getNormalizedGCCRegisterName(Clobber);
Mike Stump1eb44332009-09-09 15:08:12 +00002017
Stephen Hines176edba2014-12-01 14:53:08 -08002018 if (!Constraints.empty())
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002019 Constraints += ',';
Mike Stump1eb44332009-09-09 15:08:12 +00002020
Anders Carlssonea041752008-02-06 00:11:32 +00002021 Constraints += "~{";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002022 Constraints += Clobber;
Anders Carlssonea041752008-02-06 00:11:32 +00002023 Constraints += '}';
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002024 }
Mike Stump1eb44332009-09-09 15:08:12 +00002025
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002026 // Add machine specific clobbers
John McCall64aa4b32013-04-16 22:48:15 +00002027 std::string MachineClobbers = getTarget().getClobbers();
Eli Friedmanccf614c2008-12-21 01:15:32 +00002028 if (!MachineClobbers.empty()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002029 if (!Constraints.empty())
2030 Constraints += ',';
Eli Friedmanccf614c2008-12-21 01:15:32 +00002031 Constraints += MachineClobbers;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002032 }
Anders Carlssonbad3a942009-05-01 00:16:04 +00002033
Chris Lattner2acc6e32011-07-18 04:24:23 +00002034 llvm::Type *ResultType;
Chris Lattnera077b5c2009-05-03 08:21:20 +00002035 if (ResultRegTypes.empty())
Chris Lattner8b418682012-02-07 00:39:47 +00002036 ResultType = VoidTy;
Chris Lattnera077b5c2009-05-03 08:21:20 +00002037 else if (ResultRegTypes.size() == 1)
2038 ResultType = ResultRegTypes[0];
Anders Carlssonbad3a942009-05-01 00:16:04 +00002039 else
John McCalld16c2cf2011-02-08 08:22:06 +00002040 ResultType = llvm::StructType::get(getLLVMContext(), ResultRegTypes);
Mike Stump1eb44332009-09-09 15:08:12 +00002041
Chris Lattner2acc6e32011-07-18 04:24:23 +00002042 llvm::FunctionType *FTy =
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002043 llvm::FunctionType::get(ResultType, ArgTypes, false);
Mike Stump1eb44332009-09-09 15:08:12 +00002044
Chad Rosier2ab7d432012-09-04 19:50:17 +00002045 bool HasSideEffect = S.isVolatile() || S.getNumOutputs() == 0;
Chad Rosierfcf75a32012-09-05 19:01:07 +00002046 llvm::InlineAsm::AsmDialect AsmDialect = isa<MSAsmStmt>(&S) ?
2047 llvm::InlineAsm::AD_Intel : llvm::InlineAsm::AD_ATT;
Mike Stump1eb44332009-09-09 15:08:12 +00002048 llvm::InlineAsm *IA =
Chad Rosier790cbd82012-09-04 23:08:24 +00002049 llvm::InlineAsm::get(FTy, AsmString, Constraints, HasSideEffect,
Chad Rosierfcf75a32012-09-05 19:01:07 +00002050 /* IsAlignStack */ false, AsmDialect);
Jay Foad4c7d9f12011-07-15 08:37:34 +00002051 llvm::CallInst *Result = Builder.CreateCall(IA, Args);
Bill Wendling785b7782012-12-07 23:17:26 +00002052 Result->addAttribute(llvm::AttributeSet::FunctionIndex,
Peter Collingbourne15e05e92013-03-02 01:20:22 +00002053 llvm::Attribute::NoUnwind);
Mike Stump1eb44332009-09-09 15:08:12 +00002054
Chris Lattnerfc1a9c32010-04-07 05:46:54 +00002055 // Slap the source location of the inline asm into a !srcloc metadata on the
Stephen Hines176edba2014-12-01 14:53:08 -08002056 // call.
2057 if (const GCCAsmStmt *gccAsmStmt = dyn_cast<GCCAsmStmt>(&S)) {
Chad Rosiera23b91d2012-08-28 18:54:39 +00002058 Result->setMetadata("srcloc", getAsmSrcLocInfo(gccAsmStmt->getAsmString(),
2059 *this));
Stephen Hines176edba2014-12-01 14:53:08 -08002060 } else {
2061 // At least put the line number on MS inline asm blobs.
2062 auto Loc = llvm::ConstantInt::get(Int32Ty, S.getAsmLoc().getRawEncoding());
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002063 Result->setMetadata("srcloc",
2064 llvm::MDNode::get(getLLVMContext(),
2065 llvm::ConstantAsMetadata::get(Loc)));
Stephen Hines176edba2014-12-01 14:53:08 -08002066 }
Mike Stump1eb44332009-09-09 15:08:12 +00002067
Chris Lattnera077b5c2009-05-03 08:21:20 +00002068 // Extract all of the register value results from the asm.
2069 std::vector<llvm::Value*> RegResults;
2070 if (ResultRegTypes.size() == 1) {
2071 RegResults.push_back(Result);
Anders Carlssonbad3a942009-05-01 00:16:04 +00002072 } else {
Chris Lattnera077b5c2009-05-03 08:21:20 +00002073 for (unsigned i = 0, e = ResultRegTypes.size(); i != e; ++i) {
Anders Carlssonbad3a942009-05-01 00:16:04 +00002074 llvm::Value *Tmp = Builder.CreateExtractValue(Result, i, "asmresult");
Chris Lattnera077b5c2009-05-03 08:21:20 +00002075 RegResults.push_back(Tmp);
Anders Carlssonbad3a942009-05-01 00:16:04 +00002076 }
2077 }
Mike Stump1eb44332009-09-09 15:08:12 +00002078
Stephen Hines176edba2014-12-01 14:53:08 -08002079 assert(RegResults.size() == ResultRegTypes.size());
2080 assert(RegResults.size() == ResultTruncRegTypes.size());
2081 assert(RegResults.size() == ResultRegDests.size());
Chris Lattnera077b5c2009-05-03 08:21:20 +00002082 for (unsigned i = 0, e = RegResults.size(); i != e; ++i) {
2083 llvm::Value *Tmp = RegResults[i];
Mike Stump1eb44332009-09-09 15:08:12 +00002084
Chris Lattnera077b5c2009-05-03 08:21:20 +00002085 // If the result type of the LLVM IR asm doesn't match the result type of
2086 // the expression, do the conversion.
2087 if (ResultRegTypes[i] != ResultTruncRegTypes[i]) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00002088 llvm::Type *TruncTy = ResultTruncRegTypes[i];
Chad Rosier6f61ba22012-06-20 17:43:05 +00002089
Chris Lattneraab64d02010-04-23 17:27:29 +00002090 // Truncate the integer result to the right size, note that TruncTy can be
2091 // a pointer.
2092 if (TruncTy->isFloatingPointTy())
2093 Tmp = Builder.CreateFPTrunc(Tmp, TruncTy);
Dan Gohman2dca88f2010-04-24 04:55:02 +00002094 else if (TruncTy->isPointerTy() && Tmp->getType()->isIntegerTy()) {
Micah Villmow25a6a842012-10-08 16:25:52 +00002095 uint64_t ResSize = CGM.getDataLayout().getTypeSizeInBits(TruncTy);
John McCalld16c2cf2011-02-08 08:22:06 +00002096 Tmp = Builder.CreateTrunc(Tmp,
2097 llvm::IntegerType::get(getLLVMContext(), (unsigned)ResSize));
Chris Lattnera077b5c2009-05-03 08:21:20 +00002098 Tmp = Builder.CreateIntToPtr(Tmp, TruncTy);
Dan Gohman2dca88f2010-04-24 04:55:02 +00002099 } else if (Tmp->getType()->isPointerTy() && TruncTy->isIntegerTy()) {
Micah Villmow25a6a842012-10-08 16:25:52 +00002100 uint64_t TmpSize =CGM.getDataLayout().getTypeSizeInBits(Tmp->getType());
John McCalld16c2cf2011-02-08 08:22:06 +00002101 Tmp = Builder.CreatePtrToInt(Tmp,
2102 llvm::IntegerType::get(getLLVMContext(), (unsigned)TmpSize));
Dan Gohman2dca88f2010-04-24 04:55:02 +00002103 Tmp = Builder.CreateTrunc(Tmp, TruncTy);
2104 } else if (TruncTy->isIntegerTy()) {
2105 Tmp = Builder.CreateTrunc(Tmp, TruncTy);
Dale Johannesenf6e2c202010-10-29 23:12:32 +00002106 } else if (TruncTy->isVectorTy()) {
2107 Tmp = Builder.CreateBitCast(Tmp, TruncTy);
Chris Lattnera077b5c2009-05-03 08:21:20 +00002108 }
2109 }
Mike Stump1eb44332009-09-09 15:08:12 +00002110
John McCall545d9962011-06-25 02:11:03 +00002111 EmitStoreThroughLValue(RValue::get(Tmp), ResultRegDests[i]);
Chris Lattnera077b5c2009-05-03 08:21:20 +00002112 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002113}
Tareq A. Siraj051303c2013-04-16 18:53:08 +00002114
Stephen Hines176edba2014-12-01 14:53:08 -08002115LValue CodeGenFunction::InitCapturedStruct(const CapturedStmt &S) {
Ben Langmuir524387a2013-05-09 19:17:11 +00002116 const RecordDecl *RD = S.getCapturedRecordDecl();
Stephen Hines176edba2014-12-01 14:53:08 -08002117 QualType RecordTy = getContext().getRecordType(RD);
Ben Langmuir524387a2013-05-09 19:17:11 +00002118
2119 // Initialize the captured struct.
Stephen Hines176edba2014-12-01 14:53:08 -08002120 LValue SlotLV = MakeNaturalAlignAddrLValue(
2121 CreateMemTemp(RecordTy, "agg.captured"), RecordTy);
Ben Langmuir524387a2013-05-09 19:17:11 +00002122
2123 RecordDecl::field_iterator CurField = RD->field_begin();
2124 for (CapturedStmt::capture_init_iterator I = S.capture_init_begin(),
2125 E = S.capture_init_end();
2126 I != E; ++I, ++CurField) {
Stephen Hines176edba2014-12-01 14:53:08 -08002127 LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
2128 if (CurField->hasCapturedVLAType()) {
2129 auto VAT = CurField->getCapturedVLAType();
2130 EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
2131 } else {
2132 EmitInitializerForField(*CurField, LV, *I, None);
2133 }
Ben Langmuir524387a2013-05-09 19:17:11 +00002134 }
2135
2136 return SlotLV;
2137}
2138
2139/// Generate an outlined function for the body of a CapturedStmt, store any
2140/// captured variables into the captured struct, and call the outlined function.
2141llvm::Function *
2142CodeGenFunction::EmitCapturedStmt(const CapturedStmt &S, CapturedRegionKind K) {
Stephen Hines176edba2014-12-01 14:53:08 -08002143 LValue CapStruct = InitCapturedStruct(S);
Ben Langmuir524387a2013-05-09 19:17:11 +00002144
2145 // Emit the CapturedDecl
2146 CodeGenFunction CGF(CGM, true);
2147 CGF.CapturedStmtInfo = new CGCapturedStmtInfo(S, K);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002148 llvm::Function *F = CGF.GenerateCapturedStmtFunction(S);
Ben Langmuir524387a2013-05-09 19:17:11 +00002149 delete CGF.CapturedStmtInfo;
2150
2151 // Emit call to the helper function.
2152 EmitCallOrInvoke(F, CapStruct.getAddress());
2153
2154 return F;
2155}
2156
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002157llvm::Value *
2158CodeGenFunction::GenerateCapturedStmtArgument(const CapturedStmt &S) {
Stephen Hines176edba2014-12-01 14:53:08 -08002159 LValue CapStruct = InitCapturedStruct(S);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002160 return CapStruct.getAddress();
2161}
2162
Ben Langmuir524387a2013-05-09 19:17:11 +00002163/// Creates the outlined function for a CapturedStmt.
2164llvm::Function *
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002165CodeGenFunction::GenerateCapturedStmtFunction(const CapturedStmt &S) {
Ben Langmuir524387a2013-05-09 19:17:11 +00002166 assert(CapturedStmtInfo &&
2167 "CapturedStmtInfo should be set when generating the captured function");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002168 const CapturedDecl *CD = S.getCapturedDecl();
2169 const RecordDecl *RD = S.getCapturedRecordDecl();
2170 SourceLocation Loc = S.getLocStart();
2171 assert(CD->hasBody() && "missing CapturedDecl body");
Ben Langmuir524387a2013-05-09 19:17:11 +00002172
Ben Langmuir524387a2013-05-09 19:17:11 +00002173 // Build the argument list.
2174 ASTContext &Ctx = CGM.getContext();
2175 FunctionArgList Args;
2176 Args.append(CD->param_begin(), CD->param_end());
2177
2178 // Create the function declaration.
2179 FunctionType::ExtInfo ExtInfo;
2180 const CGFunctionInfo &FuncInfo =
Stephen Hines651f13c2014-04-23 16:59:28 -07002181 CGM.getTypes().arrangeFreeFunctionDeclaration(Ctx.VoidTy, Args, ExtInfo,
2182 /*IsVariadic=*/false);
Ben Langmuir524387a2013-05-09 19:17:11 +00002183 llvm::FunctionType *FuncLLVMTy = CGM.getTypes().GetFunctionType(FuncInfo);
2184
2185 llvm::Function *F =
2186 llvm::Function::Create(FuncLLVMTy, llvm::GlobalValue::InternalLinkage,
2187 CapturedStmtInfo->getHelperName(), &CGM.getModule());
2188 CGM.SetInternalFunctionAttributes(CD, F, FuncInfo);
2189
2190 // Generate the function.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002191 StartFunction(CD, Ctx.VoidTy, F, FuncInfo, Args,
2192 CD->getLocation(),
2193 CD->getBody()->getLocStart());
Ben Langmuir524387a2013-05-09 19:17:11 +00002194 // Set the context parameter in CapturedStmtInfo.
2195 llvm::Value *DeclPtr = LocalDeclMap[CD->getContextParam()];
2196 assert(DeclPtr && "missing context parameter for CapturedStmt");
2197 CapturedStmtInfo->setContextValue(Builder.CreateLoad(DeclPtr));
2198
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002199 // Initialize variable-length arrays.
Stephen Hines176edba2014-12-01 14:53:08 -08002200 LValue Base = MakeNaturalAlignAddrLValue(CapturedStmtInfo->getContextValue(),
2201 Ctx.getTagDeclType(RD));
2202 for (auto *FD : RD->fields()) {
2203 if (FD->hasCapturedVLAType()) {
2204 auto *ExprArg = EmitLoadOfLValue(EmitLValueForField(Base, FD),
2205 S.getLocStart()).getScalarVal();
2206 auto VAT = FD->getCapturedVLAType();
2207 VLASizeMap[VAT->getSizeExpr()] = ExprArg;
2208 }
2209 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002210
Ben Langmuir524387a2013-05-09 19:17:11 +00002211 // If 'this' is captured, load it into CXXThisValue.
2212 if (CapturedStmtInfo->isCXXThisExprCaptured()) {
2213 FieldDecl *FD = CapturedStmtInfo->getThisFieldDecl();
Stephen Hines176edba2014-12-01 14:53:08 -08002214 LValue ThisLValue = EmitLValueForField(Base, FD);
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002215 CXXThisValue = EmitLoadOfLValue(ThisLValue, Loc).getScalarVal();
Ben Langmuir524387a2013-05-09 19:17:11 +00002216 }
2217
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002218 PGO.assignRegionCounters(CD, F);
Ben Langmuir524387a2013-05-09 19:17:11 +00002219 CapturedStmtInfo->EmitBody(*this, CD->getBody());
2220 FinishFunction(CD->getBodyRBrace());
2221
2222 return F;
Tareq A. Siraj051303c2013-04-16 18:53:08 +00002223}