blob: f207a4f7f8d1cee77cc7433050c244ba1acca724 [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:
91 llvm_unreachable("should have emitted these statements as simple");
Daniel Dunbarcd5e60e2009-07-19 08:23:12 +000092
John McCall2a416372010-12-05 02:00:02 +000093#define STMT(Type, Base)
94#define ABSTRACT_STMT(Op)
95#define EXPR(Type, Base) \
96 case Stmt::Type##Class:
97#include "clang/AST/StmtNodes.inc"
John McCallcd5b22e2011-01-12 03:41:02 +000098 {
99 // Remember the block we came in on.
100 llvm::BasicBlock *incoming = Builder.GetInsertBlock();
101 assert(incoming && "expression emission must have an insertion point");
102
John McCall2a416372010-12-05 02:00:02 +0000103 EmitIgnoredExpr(cast<Expr>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000104
John McCallcd5b22e2011-01-12 03:41:02 +0000105 llvm::BasicBlock *outgoing = Builder.GetInsertBlock();
106 assert(outgoing && "expression emission cleared block!");
107
108 // The expression emitters assume (reasonably!) that the insertion
109 // point is always set. To maintain that, the call-emission code
110 // for noreturn functions has to enter a new block with no
111 // predecessors. We want to kill that block and mark the current
112 // insertion point unreachable in the common case of a call like
113 // "exit();". Since expression emission doesn't otherwise create
114 // blocks with no predecessors, we can just test for that.
115 // However, we must be careful not to do this to our incoming
116 // block, because *statement* emission does sometimes create
117 // reachable blocks which will have no predecessors until later in
118 // the function. This occurs with, e.g., labels that are not
119 // reachable by fallthrough.
120 if (incoming != outgoing && outgoing->use_empty()) {
121 outgoing->eraseFromParent();
122 Builder.ClearInsertionPoint();
Reid Spencer5f016e22007-07-11 17:01:13 +0000123 }
124 break;
John McCallcd5b22e2011-01-12 03:41:02 +0000125 }
John McCall2a416372010-12-05 02:00:02 +0000126
Mike Stump1eb44332009-09-09 15:08:12 +0000127 case Stmt::IndirectGotoStmtClass:
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000128 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000129
130 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
131 case Stmt::WhileStmtClass: EmitWhileStmt(cast<WhileStmt>(*S)); break;
132 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break;
133 case Stmt::ForStmtClass: EmitForStmt(cast<ForStmt>(*S)); break;
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Reid Spencer5f016e22007-07-11 17:01:13 +0000135 case Stmt::ReturnStmtClass: EmitReturnStmt(cast<ReturnStmt>(*S)); break;
Daniel Dunbara4275d12008-10-02 18:02:06 +0000136
Devang Patel51b09f22007-10-04 23:45:31 +0000137 case Stmt::SwitchStmtClass: EmitSwitchStmt(cast<SwitchStmt>(*S)); break;
Chad Rosierd1a8d2e2012-08-28 21:11:24 +0000138 case Stmt::GCCAsmStmtClass: // Intentional fall-through.
139 case Stmt::MSAsmStmtClass: EmitAsmStmt(cast<AsmStmt>(*S)); break;
Alexey Bataev0c018352013-09-06 18:03:48 +0000140 case Stmt::CapturedStmtClass: {
141 const CapturedStmt *CS = cast<CapturedStmt>(S);
142 EmitCapturedStmt(*CS, CS->getCapturedRegionKind());
143 }
Tareq A. Siraj051303c2013-04-16 18:53:08 +0000144 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000145 case Stmt::ObjCAtTryStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000146 EmitObjCAtTryStmt(cast<ObjCAtTryStmt>(*S));
Mike Stump1eb44332009-09-09 15:08:12 +0000147 break;
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000148 case Stmt::ObjCAtCatchStmtClass:
David Blaikieb219cfc2011-09-23 05:06:16 +0000149 llvm_unreachable(
150 "@catch statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000151 case Stmt::ObjCAtFinallyStmtClass:
David Blaikieb219cfc2011-09-23 05:06:16 +0000152 llvm_unreachable(
153 "@finally statements should be handled by EmitObjCAtTryStmt");
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000154 case Stmt::ObjCAtThrowStmtClass:
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000155 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000156 break;
157 case Stmt::ObjCAtSynchronizedStmtClass:
Chris Lattner10cac6f2008-11-15 21:26:17 +0000158 EmitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000159 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000160 case Stmt::ObjCForCollectionStmtClass:
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000161 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000162 break;
John McCallf85e1932011-06-15 23:02:42 +0000163 case Stmt::ObjCAutoreleasePoolStmtClass:
164 EmitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(*S));
165 break;
Chad Rosier6f61ba22012-06-20 17:43:05 +0000166
Anders Carlsson6815e942009-09-27 18:58:34 +0000167 case Stmt::CXXTryStmtClass:
168 EmitCXXTryStmt(cast<CXXTryStmt>(*S));
169 break;
Richard Smithad762fc2011-04-14 22:09:26 +0000170 case Stmt::CXXForRangeStmtClass:
171 EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*S));
Reid Kleckner98592d92013-09-16 21:46:30 +0000172 break;
John Wiegley28bbe4b2011-04-28 01:08:34 +0000173 case Stmt::SEHTryStmtClass:
Reid Kleckner98592d92013-09-16 21:46:30 +0000174 EmitSEHTryStmt(cast<SEHTryStmt>(*S));
Richard Smithad762fc2011-04-14 22:09:26 +0000175 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700176 case Stmt::SEHLeaveStmtClass:
177 EmitSEHLeaveStmt(cast<SEHLeaveStmt>(*S));
178 break;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700179 case Stmt::OMPParallelDirectiveClass:
180 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S));
181 break;
182 case Stmt::OMPSimdDirectiveClass:
183 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S));
184 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700185 case Stmt::OMPForDirectiveClass:
186 EmitOMPForDirective(cast<OMPForDirective>(*S));
187 break;
Stephen Hines176edba2014-12-01 14:53:08 -0800188 case Stmt::OMPForSimdDirectiveClass:
189 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S));
190 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700191 case Stmt::OMPSectionsDirectiveClass:
192 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S));
193 break;
194 case Stmt::OMPSectionDirectiveClass:
195 EmitOMPSectionDirective(cast<OMPSectionDirective>(*S));
196 break;
197 case Stmt::OMPSingleDirectiveClass:
198 EmitOMPSingleDirective(cast<OMPSingleDirective>(*S));
199 break;
Stephen Hines176edba2014-12-01 14:53:08 -0800200 case Stmt::OMPMasterDirectiveClass:
201 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S));
202 break;
203 case Stmt::OMPCriticalDirectiveClass:
204 EmitOMPCriticalDirective(cast<OMPCriticalDirective>(*S));
205 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700206 case Stmt::OMPParallelForDirectiveClass:
207 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S));
208 break;
Stephen Hines176edba2014-12-01 14:53:08 -0800209 case Stmt::OMPParallelForSimdDirectiveClass:
210 EmitOMPParallelForSimdDirective(cast<OMPParallelForSimdDirective>(*S));
211 break;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700212 case Stmt::OMPParallelSectionsDirectiveClass:
213 EmitOMPParallelSectionsDirective(cast<OMPParallelSectionsDirective>(*S));
214 break;
Stephen Hines176edba2014-12-01 14:53:08 -0800215 case Stmt::OMPTaskDirectiveClass:
216 EmitOMPTaskDirective(cast<OMPTaskDirective>(*S));
217 break;
218 case Stmt::OMPTaskyieldDirectiveClass:
219 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S));
220 break;
221 case Stmt::OMPBarrierDirectiveClass:
222 EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S));
223 break;
224 case Stmt::OMPTaskwaitDirectiveClass:
225 EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S));
226 break;
227 case Stmt::OMPFlushDirectiveClass:
228 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S));
229 break;
230 case Stmt::OMPOrderedDirectiveClass:
231 EmitOMPOrderedDirective(cast<OMPOrderedDirective>(*S));
232 break;
233 case Stmt::OMPAtomicDirectiveClass:
234 EmitOMPAtomicDirective(cast<OMPAtomicDirective>(*S));
235 break;
236 case Stmt::OMPTargetDirectiveClass:
237 EmitOMPTargetDirective(cast<OMPTargetDirective>(*S));
238 break;
239 case Stmt::OMPTeamsDirectiveClass:
240 EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S));
241 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000242 }
243}
244
Daniel Dunbar09124252008-11-12 08:21:33 +0000245bool CodeGenFunction::EmitSimpleStmt(const Stmt *S) {
246 switch (S->getStmtClass()) {
247 default: return false;
248 case Stmt::NullStmtClass: break;
249 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
Daniel Dunbard286f052009-07-19 06:58:07 +0000250 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
Daniel Dunbar09124252008-11-12 08:21:33 +0000251 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break;
Richard Smith534986f2012-04-14 00:33:13 +0000252 case Stmt::AttributedStmtClass:
253 EmitAttributedStmt(cast<AttributedStmt>(*S)); break;
Daniel Dunbar09124252008-11-12 08:21:33 +0000254 case Stmt::GotoStmtClass: EmitGotoStmt(cast<GotoStmt>(*S)); break;
255 case Stmt::BreakStmtClass: EmitBreakStmt(cast<BreakStmt>(*S)); break;
256 case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break;
257 case Stmt::DefaultStmtClass: EmitDefaultStmt(cast<DefaultStmt>(*S)); break;
258 case Stmt::CaseStmtClass: EmitCaseStmt(cast<CaseStmt>(*S)); break;
259 }
260
261 return true;
262}
263
Chris Lattner33793202007-08-31 22:09:40 +0000264/// EmitCompoundStmt - Emit a compound statement {..} node. If GetLast is true,
265/// this captures the expression result of the last sub-statement and returns it
266/// (for use by the statement expression extension).
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000267llvm::Value* CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
268 AggValueSlot AggSlot) {
Chris Lattner7d22bf02009-03-05 08:04:57 +0000269 PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),S.getLBracLoc(),
270 "LLVM IR generation of compound statement ('{}')");
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Eric Christopherfdc5d562012-02-23 00:43:07 +0000272 // Keep track of the current cleanup stack depth, including debug scopes.
273 LexicalScope Scope(*this, S.getSourceRange());
Mike Stump1eb44332009-09-09 15:08:12 +0000274
David Blaikiea6504852013-01-26 22:16:26 +0000275 return EmitCompoundStmtWithoutScope(S, GetLast, AggSlot);
276}
277
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000278llvm::Value*
279CodeGenFunction::EmitCompoundStmtWithoutScope(const CompoundStmt &S,
280 bool GetLast,
281 AggValueSlot AggSlot) {
David Blaikiea6504852013-01-26 22:16:26 +0000282
Chris Lattner33793202007-08-31 22:09:40 +0000283 for (CompoundStmt::const_body_iterator I = S.body_begin(),
284 E = S.body_end()-GetLast; I != E; ++I)
Reid Spencer5f016e22007-07-11 17:01:13 +0000285 EmitStmt(*I);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000286
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700287 llvm::Value *RetAlloca = nullptr;
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000288 if (GetLast) {
Mike Stump1eb44332009-09-09 15:08:12 +0000289 // We have to special case labels here. They are statements, but when put
Anders Carlsson17d28a32008-12-12 05:52:00 +0000290 // at the end of a statement expression, they yield the value of their
291 // subexpression. Handle this by walking through all labels we encounter,
292 // emitting them before we evaluate the subexpr.
293 const Stmt *LastStmt = S.body_back();
294 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000295 EmitLabel(LS->getDecl());
Anders Carlsson17d28a32008-12-12 05:52:00 +0000296 LastStmt = LS->getSubStmt();
297 }
Mike Stump1eb44332009-09-09 15:08:12 +0000298
Anders Carlsson17d28a32008-12-12 05:52:00 +0000299 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000301 QualType ExprTy = cast<Expr>(LastStmt)->getType();
302 if (hasAggregateEvaluationKind(ExprTy)) {
303 EmitAggExpr(cast<Expr>(LastStmt), AggSlot);
304 } else {
305 // We can't return an RValue here because there might be cleanups at
306 // the end of the StmtExpr. Because of that, we have to emit the result
307 // here into a temporary alloca.
308 RetAlloca = CreateMemTemp(ExprTy);
309 EmitAnyExprToMem(cast<Expr>(LastStmt), RetAlloca, Qualifiers(),
310 /*IsInit*/false);
311 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700312
Anders Carlsson17d28a32008-12-12 05:52:00 +0000313 }
314
Eli Friedman2ac2fa72013-06-10 22:04:49 +0000315 return RetAlloca;
Reid Spencer5f016e22007-07-11 17:01:13 +0000316}
317
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000318void CodeGenFunction::SimplifyForwardingBlocks(llvm::BasicBlock *BB) {
319 llvm::BranchInst *BI = dyn_cast<llvm::BranchInst>(BB->getTerminator());
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000321 // If there is a cleanup stack, then we it isn't worth trying to
322 // simplify this block (we would need to remove it from the scope map
323 // and cleanup entry).
John McCallf1549f62010-07-06 01:34:17 +0000324 if (!EHStack.empty())
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000325 return;
326
327 // Can only simplify direct branches.
328 if (!BI || !BI->isUnconditional())
329 return;
330
Eli Friedman3d7c7802012-10-26 23:23:35 +0000331 // Can only simplify empty blocks.
332 if (BI != BB->begin())
333 return;
334
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000335 BB->replaceAllUsesWith(BI->getSuccessor(0));
336 BI->eraseFromParent();
337 BB->eraseFromParent();
338}
339
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000340void CodeGenFunction::EmitBlock(llvm::BasicBlock *BB, bool IsFinished) {
John McCall548ce5e2010-04-21 11:18:06 +0000341 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
342
Daniel Dunbard57a8712008-11-11 09:41:28 +0000343 // Fall out of the current block (if necessary).
344 EmitBranch(BB);
Daniel Dunbara0c21a82008-11-13 01:24:05 +0000345
346 if (IsFinished && BB->use_empty()) {
347 delete BB;
348 return;
349 }
350
John McCall839cbaa2010-04-21 10:29:06 +0000351 // Place the block after the current block, if possible, or else at
352 // the end of the function.
John McCall548ce5e2010-04-21 11:18:06 +0000353 if (CurBB && CurBB->getParent())
354 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
John McCall839cbaa2010-04-21 10:29:06 +0000355 else
356 CurFn->getBasicBlockList().push_back(BB);
Reid Spencer5f016e22007-07-11 17:01:13 +0000357 Builder.SetInsertPoint(BB);
358}
359
Daniel Dunbard57a8712008-11-11 09:41:28 +0000360void CodeGenFunction::EmitBranch(llvm::BasicBlock *Target) {
361 // Emit a branch from the current block to the target one if this
362 // was a real block. If this was just a fall-through block after a
363 // terminator, don't emit it.
364 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
365
366 if (!CurBB || CurBB->getTerminator()) {
367 // If there is no insert point or the previous block is already
368 // terminated, don't touch it.
Daniel Dunbard57a8712008-11-11 09:41:28 +0000369 } else {
370 // Otherwise, create a fall-through branch.
371 Builder.CreateBr(Target);
372 }
Daniel Dunbar5e08ad32008-11-11 22:06:59 +0000373
374 Builder.ClearInsertionPoint();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000375}
376
John McCall777d6e52011-08-11 02:22:43 +0000377void CodeGenFunction::EmitBlockAfterUses(llvm::BasicBlock *block) {
378 bool inserted = false;
Stephen Hines651f13c2014-04-23 16:59:28 -0700379 for (llvm::User *u : block->users()) {
380 if (llvm::Instruction *insn = dyn_cast<llvm::Instruction>(u)) {
John McCall777d6e52011-08-11 02:22:43 +0000381 CurFn->getBasicBlockList().insertAfter(insn->getParent(), block);
382 inserted = true;
383 break;
384 }
385 }
386
387 if (!inserted)
388 CurFn->getBasicBlockList().push_back(block);
389
390 Builder.SetInsertPoint(block);
391}
392
John McCallf1549f62010-07-06 01:34:17 +0000393CodeGenFunction::JumpDest
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000394CodeGenFunction::getJumpDestForLabel(const LabelDecl *D) {
395 JumpDest &Dest = LabelMap[D];
John McCallff8e1152010-07-23 21:56:41 +0000396 if (Dest.isValid()) return Dest;
John McCallf1549f62010-07-06 01:34:17 +0000397
398 // Create, but don't insert, the new block.
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000399 Dest = JumpDest(createBasicBlock(D->getName()),
John McCallff8e1152010-07-23 21:56:41 +0000400 EHScopeStack::stable_iterator::invalid(),
401 NextCleanupDestIndex++);
John McCallf1549f62010-07-06 01:34:17 +0000402 return Dest;
403}
404
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000405void CodeGenFunction::EmitLabel(const LabelDecl *D) {
Nadav Rotem495cfa42013-03-23 06:43:35 +0000406 // Add this label to the current lexical scope if we're within any
407 // normal cleanups. Jumps "in" to this label --- when permitted by
408 // the language --- may need to be routed around such cleanups.
409 if (EHStack.hasNormalCleanups() && CurLexicalScope)
410 CurLexicalScope->addLabel(D);
411
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000412 JumpDest &Dest = LabelMap[D];
John McCallf1549f62010-07-06 01:34:17 +0000413
John McCallff8e1152010-07-23 21:56:41 +0000414 // If we didn't need a forward reference to this label, just go
John McCallf1549f62010-07-06 01:34:17 +0000415 // ahead and create a destination at the current scope.
John McCallff8e1152010-07-23 21:56:41 +0000416 if (!Dest.isValid()) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000417 Dest = getJumpDestInCurrentScope(D->getName());
John McCallf1549f62010-07-06 01:34:17 +0000418
419 // Otherwise, we need to give this label a target depth and remove
420 // it from the branch-fixups list.
421 } else {
John McCallff8e1152010-07-23 21:56:41 +0000422 assert(!Dest.getScopeDepth().isValid() && "already emitted label!");
Nadav Rotem495cfa42013-03-23 06:43:35 +0000423 Dest.setScopeDepth(EHStack.stable_begin());
John McCallff8e1152010-07-23 21:56:41 +0000424 ResolveBranchFixups(Dest.getBlock());
John McCallf1549f62010-07-06 01:34:17 +0000425 }
426
Stephen Hines651f13c2014-04-23 16:59:28 -0700427 RegionCounter Cnt = getPGORegionCounter(D->getStmt());
John McCallff8e1152010-07-23 21:56:41 +0000428 EmitBlock(Dest.getBlock());
Stephen Hines651f13c2014-04-23 16:59:28 -0700429 Cnt.beginRegion(Builder);
Chris Lattner91d723d2008-07-26 20:23:23 +0000430}
431
Nadav Rotem495cfa42013-03-23 06:43:35 +0000432/// Change the cleanup scope of the labels in this lexical scope to
433/// match the scope of the enclosing context.
434void CodeGenFunction::LexicalScope::rescopeLabels() {
435 assert(!Labels.empty());
436 EHScopeStack::stable_iterator innermostScope
437 = CGF.EHStack.getInnermostNormalCleanup();
438
439 // Change the scope depth of all the labels.
440 for (SmallVectorImpl<const LabelDecl*>::const_iterator
441 i = Labels.begin(), e = Labels.end(); i != e; ++i) {
442 assert(CGF.LabelMap.count(*i));
443 JumpDest &dest = CGF.LabelMap.find(*i)->second;
444 assert(dest.getScopeDepth().isValid());
445 assert(innermostScope.encloses(dest.getScopeDepth()));
446 dest.setScopeDepth(innermostScope);
447 }
448
449 // Reparent the labels if the new scope also has cleanups.
450 if (innermostScope != EHScopeStack::stable_end() && ParentScope) {
451 ParentScope->Labels.append(Labels.begin(), Labels.end());
452 }
453}
454
Chris Lattner91d723d2008-07-26 20:23:23 +0000455
456void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000457 EmitLabel(S.getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +0000458 EmitStmt(S.getSubStmt());
459}
460
Richard Smith534986f2012-04-14 00:33:13 +0000461void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700462 const Stmt *SubStmt = S.getSubStmt();
463 switch (SubStmt->getStmtClass()) {
464 case Stmt::DoStmtClass:
465 EmitDoStmt(cast<DoStmt>(*SubStmt), S.getAttrs());
466 break;
467 case Stmt::ForStmtClass:
468 EmitForStmt(cast<ForStmt>(*SubStmt), S.getAttrs());
469 break;
470 case Stmt::WhileStmtClass:
471 EmitWhileStmt(cast<WhileStmt>(*SubStmt), S.getAttrs());
472 break;
473 case Stmt::CXXForRangeStmtClass:
474 EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*SubStmt), S.getAttrs());
475 break;
476 default:
477 EmitStmt(SubStmt);
478 }
Richard Smith534986f2012-04-14 00:33:13 +0000479}
480
Reid Spencer5f016e22007-07-11 17:01:13 +0000481void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
Daniel Dunbar09124252008-11-12 08:21:33 +0000482 // If this code is reachable then emit a stop point (if generating
483 // debug info). We have to do this ourselves because we are on the
484 // "simple" statement path.
485 if (HaveInsertPoint())
486 EmitStopPoint(&S);
Mike Stump36a2ada2009-02-07 12:52:26 +0000487
John McCallf1549f62010-07-06 01:34:17 +0000488 EmitBranchThroughCleanup(getJumpDestForLabel(S.getLabel()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000489}
490
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000491
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000492void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000493 if (const LabelDecl *Target = S.getConstantTarget()) {
John McCall95c225d2010-10-28 08:53:48 +0000494 EmitBranchThroughCleanup(getJumpDestForLabel(Target));
495 return;
496 }
497
Chris Lattner49c952f2009-11-06 18:10:47 +0000498 // Ensure that we have an i8* for our PHI node.
Chris Lattnerd9becd12009-10-28 23:59:40 +0000499 llvm::Value *V = Builder.CreateBitCast(EmitScalarExpr(S.getTarget()),
John McCalld16c2cf2011-02-08 08:22:06 +0000500 Int8PtrTy, "addr");
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000501 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000502
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000503 // Get the basic block for the indirect goto.
504 llvm::BasicBlock *IndGotoBB = GetIndirectGotoBlock();
Chad Rosier6f61ba22012-06-20 17:43:05 +0000505
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000506 // The first instruction in the block has to be the PHI for the switch dest,
507 // add an entry for this branch.
508 cast<llvm::PHINode>(IndGotoBB->begin())->addIncoming(V, CurBB);
Chad Rosier6f61ba22012-06-20 17:43:05 +0000509
Chris Lattner3d00fdc2009-10-13 06:55:33 +0000510 EmitBranch(IndGotoBB);
Daniel Dunbar0ffb1252008-08-04 16:51:22 +0000511}
512
Chris Lattner62b72f62008-11-11 07:24:28 +0000513void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000514 // C99 6.8.4.1: The first substatement is executed if the expression compares
515 // unequal to 0. The condition must be a scalar type.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700516 LexicalScope ConditionScope(*this, S.getCond()->getSourceRange());
Stephen Hines651f13c2014-04-23 16:59:28 -0700517 RegionCounter Cnt = getPGORegionCounter(&S);
Adrian Prantl8d378582013-06-08 00:16:55 +0000518
Douglas Gregor8cfe5a72009-11-23 23:44:04 +0000519 if (S.getConditionVariable())
John McCallb6bbcc92010-10-15 04:57:14 +0000520 EmitAutoVarDecl(*S.getConditionVariable());
Mike Stump1eb44332009-09-09 15:08:12 +0000521
Chris Lattner9bc47e22008-11-12 07:46:33 +0000522 // If the condition constant folds and can be elided, try to avoid emitting
523 // the condition and the dead arm of the if/else.
Chris Lattnerc2c90012011-02-27 23:02:32 +0000524 bool CondConstant;
525 if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant)) {
Chris Lattner62b72f62008-11-11 07:24:28 +0000526 // Figure out which block (then or else) is executed.
Chris Lattnerc2c90012011-02-27 23:02:32 +0000527 const Stmt *Executed = S.getThen();
528 const Stmt *Skipped = S.getElse();
529 if (!CondConstant) // Condition false?
Chris Lattner62b72f62008-11-11 07:24:28 +0000530 std::swap(Executed, Skipped);
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Chris Lattner62b72f62008-11-11 07:24:28 +0000532 // If the skipped block has no labels in it, just emit the executed block.
533 // This avoids emitting dead code and simplifies the CFG substantially.
Chris Lattner9bc47e22008-11-12 07:46:33 +0000534 if (!ContainsLabel(Skipped)) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700535 if (CondConstant)
536 Cnt.beginRegion(Builder);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000537 if (Executed) {
John McCallf1549f62010-07-06 01:34:17 +0000538 RunCleanupsScope ExecutedScope(*this);
Chris Lattner62b72f62008-11-11 07:24:28 +0000539 EmitStmt(Executed);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000540 }
Chris Lattner62b72f62008-11-11 07:24:28 +0000541 return;
542 }
543 }
Chris Lattner9bc47e22008-11-12 07:46:33 +0000544
545 // Otherwise, the condition did not fold, or we couldn't elide it. Just emit
546 // the conditional branch.
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000547 llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
548 llvm::BasicBlock *ContBlock = createBasicBlock("if.end");
549 llvm::BasicBlock *ElseBlock = ContBlock;
Reid Spencer5f016e22007-07-11 17:01:13 +0000550 if (S.getElse())
Daniel Dunbar781d7ca2008-11-13 00:47:57 +0000551 ElseBlock = createBasicBlock("if.else");
Stephen Hines651f13c2014-04-23 16:59:28 -0700552
553 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, Cnt.getCount());
Mike Stump1eb44332009-09-09 15:08:12 +0000554
Reid Spencer5f016e22007-07-11 17:01:13 +0000555 // Emit the 'then' code.
Stephen Hines651f13c2014-04-23 16:59:28 -0700556 EmitBlock(ThenBlock);
557 Cnt.beginRegion(Builder);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000558 {
John McCallf1549f62010-07-06 01:34:17 +0000559 RunCleanupsScope ThenScope(*this);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000560 EmitStmt(S.getThen());
561 }
Daniel Dunbard57a8712008-11-11 09:41:28 +0000562 EmitBranch(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Reid Spencer5f016e22007-07-11 17:01:13 +0000564 // Emit the 'else' code if present.
565 if (const Stmt *Else = S.getElse()) {
Stephen Hines176edba2014-12-01 14:53:08 -0800566 {
567 // There is no need to emit line number for unconditional branch.
568 SuppressDebugLocation S(Builder);
569 EmitBlock(ElseBlock);
570 }
Douglas Gregor01234bb2009-11-24 16:43:22 +0000571 {
John McCallf1549f62010-07-06 01:34:17 +0000572 RunCleanupsScope ElseScope(*this);
Douglas Gregor01234bb2009-11-24 16:43:22 +0000573 EmitStmt(Else);
574 }
Stephen Hines176edba2014-12-01 14:53:08 -0800575 {
576 // There is no need to emit line number for unconditional branch.
577 SuppressDebugLocation S(Builder);
578 EmitBranch(ContBlock);
579 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000580 }
Mike Stump1eb44332009-09-09 15:08:12 +0000581
Reid Spencer5f016e22007-07-11 17:01:13 +0000582 // Emit the continuation block for code after the if.
Daniel Dunbarc22d6652008-11-13 01:54:24 +0000583 EmitBlock(ContBlock, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000584}
585
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700586void CodeGenFunction::EmitCondBrHints(llvm::LLVMContext &Context,
587 llvm::BranchInst *CondBr,
Stephen Hines176edba2014-12-01 14:53:08 -0800588 ArrayRef<const Attr *> Attrs) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700589 // Return if there are no hints.
590 if (Attrs.empty())
591 return;
592
593 // Add vectorize and unroll hints to the metadata on the conditional branch.
594 SmallVector<llvm::Value *, 2> Metadata(1);
595 for (const auto *Attr : Attrs) {
596 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(Attr);
597
598 // Skip non loop hint attributes
599 if (!LH)
600 continue;
601
602 LoopHintAttr::OptionType Option = LH->getOption();
Stephen Hines176edba2014-12-01 14:53:08 -0800603 LoopHintAttr::LoopHintState State = LH->getState();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700604 const char *MetadataName;
605 switch (Option) {
606 case LoopHintAttr::Vectorize:
607 case LoopHintAttr::VectorizeWidth:
608 MetadataName = "llvm.loop.vectorize.width";
609 break;
610 case LoopHintAttr::Interleave:
611 case LoopHintAttr::InterleaveCount:
Stephen Hines176edba2014-12-01 14:53:08 -0800612 MetadataName = "llvm.loop.interleave.count";
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700613 break;
614 case LoopHintAttr::Unroll:
Stephen Hines176edba2014-12-01 14:53:08 -0800615 // With the unroll loop hint, a non-zero value indicates full unrolling.
616 MetadataName = State == LoopHintAttr::Disable ? "llvm.loop.unroll.disable"
617 : "llvm.loop.unroll.full";
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700618 break;
619 case LoopHintAttr::UnrollCount:
620 MetadataName = "llvm.loop.unroll.count";
621 break;
622 }
623
Stephen Hines176edba2014-12-01 14:53:08 -0800624 Expr *ValueExpr = LH->getValue();
625 int ValueInt = 1;
626 if (ValueExpr) {
627 llvm::APSInt ValueAPS =
628 ValueExpr->EvaluateKnownConstInt(CGM.getContext());
629 ValueInt = static_cast<int>(ValueAPS.getSExtValue());
630 }
631
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700632 llvm::Value *Value;
633 llvm::MDString *Name;
634 switch (Option) {
635 case LoopHintAttr::Vectorize:
636 case LoopHintAttr::Interleave:
Stephen Hines176edba2014-12-01 14:53:08 -0800637 if (State != LoopHintAttr::Disable) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700638 // FIXME: In the future I will modifiy the behavior of the metadata
639 // so we can enable/disable vectorization and interleaving separately.
640 Name = llvm::MDString::get(Context, "llvm.loop.vectorize.enable");
641 Value = Builder.getTrue();
642 break;
643 }
644 // Vectorization/interleaving is disabled, set width/count to 1.
645 ValueInt = 1;
646 // Fallthrough.
647 case LoopHintAttr::VectorizeWidth:
648 case LoopHintAttr::InterleaveCount:
Stephen Hines176edba2014-12-01 14:53:08 -0800649 case LoopHintAttr::UnrollCount:
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700650 Name = llvm::MDString::get(Context, MetadataName);
651 Value = llvm::ConstantInt::get(Int32Ty, ValueInt);
652 break;
653 case LoopHintAttr::Unroll:
654 Name = llvm::MDString::get(Context, MetadataName);
Stephen Hines176edba2014-12-01 14:53:08 -0800655 Value = nullptr;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700656 break;
657 }
658
659 SmallVector<llvm::Value *, 2> OpValues;
660 OpValues.push_back(Name);
Stephen Hines176edba2014-12-01 14:53:08 -0800661 if (Value)
662 OpValues.push_back(Value);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700663
664 // Set or overwrite metadata indicated by Name.
665 Metadata.push_back(llvm::MDNode::get(Context, OpValues));
666 }
667
668 if (!Metadata.empty()) {
669 // Add llvm.loop MDNode to CondBr.
670 llvm::MDNode *LoopID = llvm::MDNode::get(Context, Metadata);
671 LoopID->replaceOperandWith(0, LoopID); // First op points to itself.
672
673 CondBr->setMetadata("llvm.loop", LoopID);
674 }
675}
676
677void CodeGenFunction::EmitWhileStmt(const WhileStmt &S,
Stephen Hines176edba2014-12-01 14:53:08 -0800678 ArrayRef<const Attr *> WhileAttrs) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700679 RegionCounter Cnt = getPGORegionCounter(&S);
680
John McCallf1549f62010-07-06 01:34:17 +0000681 // Emit the header for the loop, which will also become
682 // the continue target.
683 JumpDest LoopHeader = getJumpDestInCurrentScope("while.cond");
John McCallff8e1152010-07-23 21:56:41 +0000684 EmitBlock(LoopHeader.getBlock());
Mike Stump72cac2c2009-02-07 18:08:12 +0000685
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700686 LoopStack.push(LoopHeader.getBlock());
687
John McCallf1549f62010-07-06 01:34:17 +0000688 // Create an exit block for when the condition fails, which will
689 // also become the break target.
690 JumpDest LoopExit = getJumpDestInCurrentScope("while.end");
Mike Stump72cac2c2009-02-07 18:08:12 +0000691
692 // Store the blocks to use for break and continue.
John McCallf1549f62010-07-06 01:34:17 +0000693 BreakContinueStack.push_back(BreakContinue(LoopExit, LoopHeader));
Mike Stump1eb44332009-09-09 15:08:12 +0000694
Douglas Gregor5656e142009-11-24 21:15:44 +0000695 // C++ [stmt.while]p2:
696 // When the condition of a while statement is a declaration, the
697 // scope of the variable that is declared extends from its point
698 // of declaration (3.3.2) to the end of the while statement.
699 // [...]
700 // The object created in a condition is destroyed and created
701 // with each iteration of the loop.
John McCallf1549f62010-07-06 01:34:17 +0000702 RunCleanupsScope ConditionScope(*this);
Douglas Gregor5656e142009-11-24 21:15:44 +0000703
John McCallf1549f62010-07-06 01:34:17 +0000704 if (S.getConditionVariable())
John McCallb6bbcc92010-10-15 04:57:14 +0000705 EmitAutoVarDecl(*S.getConditionVariable());
Chad Rosier6f61ba22012-06-20 17:43:05 +0000706
Mike Stump16b16202009-02-07 17:18:33 +0000707 // Evaluate the conditional in the while header. C99 6.8.5.1: The
708 // evaluation of the controlling expression takes place before each
709 // execution of the loop body.
Reid Spencer5f016e22007-07-11 17:01:13 +0000710 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Chad Rosier6f61ba22012-06-20 17:43:05 +0000711
Devang Patel2c30d8f2007-10-09 20:51:27 +0000712 // while(1) is common, avoid extra exit blocks. Be sure
Reid Spencer5f016e22007-07-11 17:01:13 +0000713 // to correctly handle break/continue though.
Devang Patel2c30d8f2007-10-09 20:51:27 +0000714 bool EmitBoolCondBranch = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000715 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
Devang Patel2c30d8f2007-10-09 20:51:27 +0000716 if (C->isOne())
717 EmitBoolCondBranch = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000718
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 // As long as the condition is true, go to the loop body.
John McCallf1549f62010-07-06 01:34:17 +0000720 llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
721 if (EmitBoolCondBranch) {
John McCallff8e1152010-07-23 21:56:41 +0000722 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
John McCallf1549f62010-07-06 01:34:17 +0000723 if (ConditionScope.requiresCleanups())
724 ExitBlock = createBasicBlock("while.exit");
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700725 llvm::BranchInst *CondBr =
726 Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock,
727 PGO.createLoopWeights(S.getCond(), Cnt));
John McCallf1549f62010-07-06 01:34:17 +0000728
John McCallff8e1152010-07-23 21:56:41 +0000729 if (ExitBlock != LoopExit.getBlock()) {
John McCallf1549f62010-07-06 01:34:17 +0000730 EmitBlock(ExitBlock);
731 EmitBranchThroughCleanup(LoopExit);
732 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700733
734 // Attach metadata to loop body conditional branch.
735 EmitCondBrHints(LoopBody->getContext(), CondBr, WhileAttrs);
John McCallf1549f62010-07-06 01:34:17 +0000736 }
Chad Rosier6f61ba22012-06-20 17:43:05 +0000737
John McCallf1549f62010-07-06 01:34:17 +0000738 // Emit the loop body. We have to emit this in a cleanup scope
739 // because it might be a singleton DeclStmt.
Douglas Gregor5656e142009-11-24 21:15:44 +0000740 {
John McCallf1549f62010-07-06 01:34:17 +0000741 RunCleanupsScope BodyScope(*this);
Douglas Gregor5656e142009-11-24 21:15:44 +0000742 EmitBlock(LoopBody);
Stephen Hines651f13c2014-04-23 16:59:28 -0700743 Cnt.beginRegion(Builder);
Douglas Gregor5656e142009-11-24 21:15:44 +0000744 EmitStmt(S.getBody());
745 }
Chris Lattnerda138702007-07-16 21:28:45 +0000746
Mike Stump1eb44332009-09-09 15:08:12 +0000747 BreakContinueStack.pop_back();
748
John McCallf1549f62010-07-06 01:34:17 +0000749 // Immediately force cleanup.
750 ConditionScope.ForceCleanup();
Douglas Gregor5656e142009-11-24 21:15:44 +0000751
Stephen Hines176edba2014-12-01 14:53:08 -0800752 EmitStopPoint(&S);
John McCallf1549f62010-07-06 01:34:17 +0000753 // Branch to the loop header again.
John McCallff8e1152010-07-23 21:56:41 +0000754 EmitBranch(LoopHeader.getBlock());
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700756 LoopStack.pop();
757
Reid Spencer5f016e22007-07-11 17:01:13 +0000758 // Emit the exit block.
John McCallff8e1152010-07-23 21:56:41 +0000759 EmitBlock(LoopExit.getBlock(), true);
Douglas Gregor5656e142009-11-24 21:15:44 +0000760
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000761 // The LoopHeader typically is just a branch if we skipped emitting
762 // a branch, try to erase it.
John McCallf1549f62010-07-06 01:34:17 +0000763 if (!EmitBoolCondBranch)
John McCallff8e1152010-07-23 21:56:41 +0000764 SimplifyForwardingBlocks(LoopHeader.getBlock());
Reid Spencer5f016e22007-07-11 17:01:13 +0000765}
766
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700767void CodeGenFunction::EmitDoStmt(const DoStmt &S,
Stephen Hines176edba2014-12-01 14:53:08 -0800768 ArrayRef<const Attr *> DoAttrs) {
John McCallf1549f62010-07-06 01:34:17 +0000769 JumpDest LoopExit = getJumpDestInCurrentScope("do.end");
770 JumpDest LoopCond = getJumpDestInCurrentScope("do.cond");
Mike Stump1eb44332009-09-09 15:08:12 +0000771
Stephen Hines651f13c2014-04-23 16:59:28 -0700772 RegionCounter Cnt = getPGORegionCounter(&S);
773
Chris Lattnerda138702007-07-16 21:28:45 +0000774 // Store the blocks to use for break and continue.
John McCallf1549f62010-07-06 01:34:17 +0000775 BreakContinueStack.push_back(BreakContinue(LoopExit, LoopCond));
Mike Stump1eb44332009-09-09 15:08:12 +0000776
John McCallf1549f62010-07-06 01:34:17 +0000777 // Emit the body of the loop.
778 llvm::BasicBlock *LoopBody = createBasicBlock("do.body");
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700779
780 LoopStack.push(LoopBody);
781
Stephen Hines651f13c2014-04-23 16:59:28 -0700782 EmitBlockWithFallThrough(LoopBody, Cnt);
John McCallf1549f62010-07-06 01:34:17 +0000783 {
784 RunCleanupsScope BodyScope(*this);
785 EmitStmt(S.getBody());
786 }
Mike Stump1eb44332009-09-09 15:08:12 +0000787
John McCallff8e1152010-07-23 21:56:41 +0000788 EmitBlock(LoopCond.getBlock());
Mike Stump1eb44332009-09-09 15:08:12 +0000789
Reid Spencer5f016e22007-07-11 17:01:13 +0000790 // C99 6.8.5.2: "The evaluation of the controlling expression takes place
791 // after each execution of the loop body."
Mike Stump1eb44332009-09-09 15:08:12 +0000792
Reid Spencer5f016e22007-07-11 17:01:13 +0000793 // Evaluate the conditional in the while header.
794 // C99 6.8.5p2/p4: The first substatement is executed if the expression
795 // compares unequal to 0. The condition must be a scalar type.
796 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000797
Stephen Hines651f13c2014-04-23 16:59:28 -0700798 BreakContinueStack.pop_back();
799
Devang Patel05f6e6b2007-10-09 20:33:39 +0000800 // "do {} while (0)" is common in macros, avoid extra blocks. Be sure
801 // to correctly handle break/continue though.
802 bool EmitBoolCondBranch = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000803 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
Devang Patel05f6e6b2007-10-09 20:33:39 +0000804 if (C->isZero())
805 EmitBoolCondBranch = false;
806
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 // As long as the condition is true, iterate the loop.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700808 if (EmitBoolCondBranch) {
809 llvm::BranchInst *CondBr =
810 Builder.CreateCondBr(BoolCondVal, LoopBody, LoopExit.getBlock(),
811 PGO.createLoopWeights(S.getCond(), Cnt));
812
813 // Attach metadata to loop body conditional branch.
814 EmitCondBrHints(LoopBody->getContext(), CondBr, DoAttrs);
815 }
Mike Stump1eb44332009-09-09 15:08:12 +0000816
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700817 LoopStack.pop();
818
Reid Spencer5f016e22007-07-11 17:01:13 +0000819 // Emit the exit block.
John McCallff8e1152010-07-23 21:56:41 +0000820 EmitBlock(LoopExit.getBlock());
Devang Patel05f6e6b2007-10-09 20:33:39 +0000821
Daniel Dunbaraa5bd872009-04-01 04:37:47 +0000822 // The DoCond block typically is just a branch if we skipped
823 // emitting a branch, try to erase it.
824 if (!EmitBoolCondBranch)
John McCallff8e1152010-07-23 21:56:41 +0000825 SimplifyForwardingBlocks(LoopCond.getBlock());
Reid Spencer5f016e22007-07-11 17:01:13 +0000826}
827
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700828void CodeGenFunction::EmitForStmt(const ForStmt &S,
Stephen Hines176edba2014-12-01 14:53:08 -0800829 ArrayRef<const Attr *> ForAttrs) {
John McCallf1549f62010-07-06 01:34:17 +0000830 JumpDest LoopExit = getJumpDestInCurrentScope("for.end");
831
Stephen Hines176edba2014-12-01 14:53:08 -0800832 LexicalScope ForScope(*this, S.getSourceRange());
Devang Patel0554e0e2010-08-25 00:28:56 +0000833
Reid Spencer5f016e22007-07-11 17:01:13 +0000834 // Evaluate the first part before the loop.
835 if (S.getInit())
836 EmitStmt(S.getInit());
837
Stephen Hines651f13c2014-04-23 16:59:28 -0700838 RegionCounter Cnt = getPGORegionCounter(&S);
839
Reid Spencer5f016e22007-07-11 17:01:13 +0000840 // Start the loop with a block that tests the condition.
John McCallf1549f62010-07-06 01:34:17 +0000841 // If there's an increment, the continue scope will be overwritten
842 // later.
843 JumpDest Continue = getJumpDestInCurrentScope("for.cond");
John McCallff8e1152010-07-23 21:56:41 +0000844 llvm::BasicBlock *CondBlock = Continue.getBlock();
Reid Spencer5f016e22007-07-11 17:01:13 +0000845 EmitBlock(CondBlock);
846
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700847 LoopStack.push(CondBlock);
848
Stephen Hines651f13c2014-04-23 16:59:28 -0700849 // If the for loop doesn't have an increment we can just use the
850 // condition as the continue block. Otherwise we'll need to create
851 // a block for it (in the current scope, i.e. in the scope of the
852 // condition), and that we will become our continue block.
853 if (S.getInc())
854 Continue = getJumpDestInCurrentScope("for.inc");
855
856 // Store the blocks to use for break and continue.
857 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
858
Douglas Gregord9752062009-11-25 01:51:31 +0000859 // Create a cleanup scope for the condition variable cleanups.
Stephen Hines176edba2014-12-01 14:53:08 -0800860 LexicalScope ConditionScope(*this, S.getSourceRange());
Chad Rosier6f61ba22012-06-20 17:43:05 +0000861
Reid Spencer5f016e22007-07-11 17:01:13 +0000862 if (S.getCond()) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000863 // If the for statement has a condition scope, emit the local variable
864 // declaration.
Douglas Gregord9752062009-11-25 01:51:31 +0000865 if (S.getConditionVariable()) {
John McCallb6bbcc92010-10-15 04:57:14 +0000866 EmitAutoVarDecl(*S.getConditionVariable());
Douglas Gregord9752062009-11-25 01:51:31 +0000867 }
John McCallf1549f62010-07-06 01:34:17 +0000868
Justin Bognerfd93e4a2013-11-04 16:13:18 +0000869 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
John McCallf1549f62010-07-06 01:34:17 +0000870 // If there are any cleanups between here and the loop-exit scope,
871 // create a block to stage a loop exit along.
872 if (ForScope.requiresCleanups())
873 ExitBlock = createBasicBlock("for.cond.cleanup");
Chad Rosier6f61ba22012-06-20 17:43:05 +0000874
Reid Spencer5f016e22007-07-11 17:01:13 +0000875 // As long as the condition is true, iterate the loop.
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000876 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Mike Stump1eb44332009-09-09 15:08:12 +0000877
Chris Lattner31a09842008-11-12 08:04:58 +0000878 // C99 6.8.5p2/p4: The first substatement is executed if the expression
879 // compares unequal to 0. The condition must be a scalar type.
Stephen Hines651f13c2014-04-23 16:59:28 -0700880 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700881 llvm::BranchInst *CondBr =
882 Builder.CreateCondBr(BoolCondVal, ForBody, ExitBlock,
883 PGO.createLoopWeights(S.getCond(), Cnt));
884
885 // Attach metadata to loop body conditional branch.
886 EmitCondBrHints(ForBody->getContext(), CondBr, ForAttrs);
John McCallf1549f62010-07-06 01:34:17 +0000887
John McCallff8e1152010-07-23 21:56:41 +0000888 if (ExitBlock != LoopExit.getBlock()) {
John McCallf1549f62010-07-06 01:34:17 +0000889 EmitBlock(ExitBlock);
890 EmitBranchThroughCleanup(LoopExit);
891 }
Mike Stump1eb44332009-09-09 15:08:12 +0000892
893 EmitBlock(ForBody);
Reid Spencer5f016e22007-07-11 17:01:13 +0000894 } else {
895 // Treat it as a non-zero constant. Don't even create a new block for the
896 // body, just fall into it.
897 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700898 Cnt.beginRegion(Builder);
Mike Stump3e9da662009-02-07 23:02:10 +0000899
Douglas Gregord9752062009-11-25 01:51:31 +0000900 {
901 // Create a separate cleanup scope for the body, in case it is not
902 // a compound statement.
John McCallf1549f62010-07-06 01:34:17 +0000903 RunCleanupsScope BodyScope(*this);
Douglas Gregord9752062009-11-25 01:51:31 +0000904 EmitStmt(S.getBody());
905 }
Chris Lattnerda138702007-07-16 21:28:45 +0000906
Reid Spencer5f016e22007-07-11 17:01:13 +0000907 // If there is an increment, emit it next.
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000908 if (S.getInc()) {
John McCallff8e1152010-07-23 21:56:41 +0000909 EmitBlock(Continue.getBlock());
Chris Lattner883f6a72007-08-11 00:04:45 +0000910 EmitStmt(S.getInc());
Daniel Dunbarad12b6d2008-09-28 00:19:22 +0000911 }
Mike Stump1eb44332009-09-09 15:08:12 +0000912
Douglas Gregor45d3fe12010-05-21 18:36:48 +0000913 BreakContinueStack.pop_back();
Douglas Gregord9752062009-11-25 01:51:31 +0000914
John McCallf1549f62010-07-06 01:34:17 +0000915 ConditionScope.ForceCleanup();
Stephen Hines176edba2014-12-01 14:53:08 -0800916
917 EmitStopPoint(&S);
John McCallf1549f62010-07-06 01:34:17 +0000918 EmitBranch(CondBlock);
919
920 ForScope.ForceCleanup();
921
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700922 LoopStack.pop();
923
Chris Lattnerda138702007-07-16 21:28:45 +0000924 // Emit the fall-through block.
John McCallff8e1152010-07-23 21:56:41 +0000925 EmitBlock(LoopExit.getBlock(), true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000926}
927
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700928void
929CodeGenFunction::EmitCXXForRangeStmt(const CXXForRangeStmt &S,
Stephen Hines176edba2014-12-01 14:53:08 -0800930 ArrayRef<const Attr *> ForAttrs) {
Richard Smithad762fc2011-04-14 22:09:26 +0000931 JumpDest LoopExit = getJumpDestInCurrentScope("for.end");
932
Stephen Hines176edba2014-12-01 14:53:08 -0800933 LexicalScope ForScope(*this, S.getSourceRange());
Richard Smithad762fc2011-04-14 22:09:26 +0000934
935 // Evaluate the first pieces before the loop.
936 EmitStmt(S.getRangeStmt());
937 EmitStmt(S.getBeginEndStmt());
938
Stephen Hines651f13c2014-04-23 16:59:28 -0700939 RegionCounter Cnt = getPGORegionCounter(&S);
940
Richard Smithad762fc2011-04-14 22:09:26 +0000941 // Start the loop with a block that tests the condition.
942 // If there's an increment, the continue scope will be overwritten
943 // later.
944 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
945 EmitBlock(CondBlock);
946
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700947 LoopStack.push(CondBlock);
948
Richard Smithad762fc2011-04-14 22:09:26 +0000949 // If there are any cleanups between here and the loop-exit scope,
950 // create a block to stage a loop exit along.
951 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
952 if (ForScope.requiresCleanups())
953 ExitBlock = createBasicBlock("for.cond.cleanup");
Chad Rosier6f61ba22012-06-20 17:43:05 +0000954
Richard Smithad762fc2011-04-14 22:09:26 +0000955 // The loop body, consisting of the specified body and the loop variable.
956 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
957
958 // The body is executed if the expression, contextually converted
959 // to bool, is true.
Stephen Hines651f13c2014-04-23 16:59:28 -0700960 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700961 llvm::BranchInst *CondBr = Builder.CreateCondBr(
962 BoolCondVal, ForBody, ExitBlock, PGO.createLoopWeights(S.getCond(), Cnt));
963
964 // Attach metadata to loop body conditional branch.
965 EmitCondBrHints(ForBody->getContext(), CondBr, ForAttrs);
Richard Smithad762fc2011-04-14 22:09:26 +0000966
967 if (ExitBlock != LoopExit.getBlock()) {
968 EmitBlock(ExitBlock);
969 EmitBranchThroughCleanup(LoopExit);
970 }
971
972 EmitBlock(ForBody);
Stephen Hines651f13c2014-04-23 16:59:28 -0700973 Cnt.beginRegion(Builder);
Richard Smithad762fc2011-04-14 22:09:26 +0000974
975 // Create a block for the increment. In case of a 'continue', we jump there.
976 JumpDest Continue = getJumpDestInCurrentScope("for.inc");
977
978 // Store the blocks to use for break and continue.
979 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
980
981 {
982 // Create a separate cleanup scope for the loop variable and body.
Stephen Hines176edba2014-12-01 14:53:08 -0800983 LexicalScope BodyScope(*this, S.getSourceRange());
Richard Smithad762fc2011-04-14 22:09:26 +0000984 EmitStmt(S.getLoopVarStmt());
985 EmitStmt(S.getBody());
986 }
987
Stephen Hines176edba2014-12-01 14:53:08 -0800988 EmitStopPoint(&S);
Richard Smithad762fc2011-04-14 22:09:26 +0000989 // If there is an increment, emit it next.
990 EmitBlock(Continue.getBlock());
991 EmitStmt(S.getInc());
992
993 BreakContinueStack.pop_back();
994
995 EmitBranch(CondBlock);
996
997 ForScope.ForceCleanup();
998
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700999 LoopStack.pop();
1000
Richard Smithad762fc2011-04-14 22:09:26 +00001001 // Emit the fall-through block.
1002 EmitBlock(LoopExit.getBlock(), true);
1003}
1004
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001005void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
1006 if (RV.isScalar()) {
1007 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
1008 } else if (RV.isAggregate()) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001009 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001010 } else {
John McCall9d232c82013-03-07 21:37:08 +00001011 EmitStoreOfComplex(RV.getComplexVal(),
1012 MakeNaturalAlignAddrLValue(ReturnValue, Ty),
1013 /*init*/ true);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001014 }
Anders Carlsson82d8ef02009-02-09 20:31:03 +00001015 EmitBranchThroughCleanup(ReturnBlock);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001016}
1017
Reid Spencer5f016e22007-07-11 17:01:13 +00001018/// EmitReturnStmt - Note that due to GCC extensions, this can have an operand
1019/// if the function returns void, or may be missing one if the function returns
1020/// non-void. Fun stuff :).
1021void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001022 // Emit the result value, even if unused, to evalute the side effects.
1023 const Expr *RV = S.getRetValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001024
John McCall9f357de2012-09-25 06:56:03 +00001025 // Treat block literals in a return expression as if they appeared
1026 // in their own scope. This permits a small, easily-implemented
1027 // exception to our over-conservative rules about not jumping to
1028 // statements following block literals with non-trivial cleanups.
1029 RunCleanupsScope cleanupScope(*this);
1030 if (const ExprWithCleanups *cleanups =
1031 dyn_cast_or_null<ExprWithCleanups>(RV)) {
1032 enterFullExpression(cleanups);
1033 RV = cleanups->getSubExpr();
1034 }
1035
Daniel Dunbar5ca20842008-09-09 21:00:17 +00001036 // FIXME: Clean this up by using an LValue for ReturnTemp,
1037 // EmitStoreThroughLValue, and EmitAnyExpr.
Stephen Hines651f13c2014-04-23 16:59:28 -07001038 if (getLangOpts().ElideConstructors &&
1039 S.getNRVOCandidate() && S.getNRVOCandidate()->isNRVOVariable()) {
Douglas Gregord86c4772010-05-15 06:46:45 +00001040 // Apply the named return value optimization for this return statement,
1041 // which means doing nothing: the appropriate result has already been
1042 // constructed into the NRVO variable.
Chad Rosier6f61ba22012-06-20 17:43:05 +00001043
Douglas Gregor3d91bbc2010-05-17 15:52:46 +00001044 // If there is an NRVO flag for this variable, set it to 1 into indicate
1045 // that the cleanup code should not destroy the variable.
John McCalld16c2cf2011-02-08 08:22:06 +00001046 if (llvm::Value *NRVOFlag = NRVOFlags[S.getNRVOCandidate()])
1047 Builder.CreateStore(Builder.getTrue(), NRVOFlag);
Stephen Hines651f13c2014-04-23 16:59:28 -07001048 } else if (!ReturnValue || (RV && RV->getType()->isVoidType())) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +00001049 // Make sure not to return anything, but evaluate the expression
1050 // for side effects.
1051 if (RV)
Eli Friedman144ac612008-05-22 01:22:33 +00001052 EmitAnyExpr(RV);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001053 } else if (!RV) {
Daniel Dunbar5ca20842008-09-09 21:00:17 +00001054 // Do nothing (return value is left uninitialized)
Eli Friedmand54b6ac2009-05-27 04:56:12 +00001055 } else if (FnRetTy->isReferenceType()) {
1056 // If this function returns a reference, take the address of the expression
1057 // rather than the value.
Richard Smithd4ec5622013-06-12 23:38:09 +00001058 RValue Result = EmitReferenceBindingToExpr(RV);
Douglas Gregor33fd1fc2010-03-24 23:14:04 +00001059 Builder.CreateStore(Result.getScalarVal(), ReturnValue);
Reid Spencer5f016e22007-07-11 17:01:13 +00001060 } else {
John McCall9d232c82013-03-07 21:37:08 +00001061 switch (getEvaluationKind(RV->getType())) {
1062 case TEK_Scalar:
1063 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
1064 break;
1065 case TEK_Complex:
1066 EmitComplexExprIntoLValue(RV,
1067 MakeNaturalAlignAddrLValue(ReturnValue, RV->getType()),
1068 /*isInit*/ true);
1069 break;
1070 case TEK_Aggregate: {
1071 CharUnits Alignment = getContext().getTypeAlignInChars(RV->getType());
1072 EmitAggExpr(RV, AggValueSlot::forAddr(ReturnValue, Alignment,
1073 Qualifiers(),
1074 AggValueSlot::IsDestructed,
1075 AggValueSlot::DoesNotNeedGCBarriers,
1076 AggValueSlot::IsNotAliased));
1077 break;
1078 }
1079 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001080 }
Eli Friedman144ac612008-05-22 01:22:33 +00001081
Adrian Prantlddb379e2013-05-07 22:41:09 +00001082 ++NumReturnExprs;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001083 if (!RV || RV->isEvaluatable(getContext()))
Adrian Prantlddb379e2013-05-07 22:41:09 +00001084 ++NumSimpleReturnExprs;
Adrian Prantlfa6b0792013-05-02 17:30:20 +00001085
John McCall9f357de2012-09-25 06:56:03 +00001086 cleanupScope.ForceCleanup();
Anders Carlsson82d8ef02009-02-09 20:31:03 +00001087 EmitBranchThroughCleanup(ReturnBlock);
Reid Spencer5f016e22007-07-11 17:01:13 +00001088}
1089
1090void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
Devang Patel91981262011-06-04 00:38:02 +00001091 // As long as debug info is modeled with instructions, we have to ensure we
1092 // have a place to insert here and write the stop point here.
Eric Christopher2b124ea2012-04-10 05:04:07 +00001093 if (HaveInsertPoint())
Devang Patel91981262011-06-04 00:38:02 +00001094 EmitStopPoint(&S);
1095
Stephen Hines651f13c2014-04-23 16:59:28 -07001096 for (const auto *I : S.decls())
1097 EmitDecl(*I);
Chris Lattner6fa5f092007-07-12 15:43:07 +00001098}
Chris Lattnerda138702007-07-16 21:28:45 +00001099
Daniel Dunbar09124252008-11-12 08:21:33 +00001100void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +00001101 assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
1102
Daniel Dunbar09124252008-11-12 08:21:33 +00001103 // If this code is reachable then emit a stop point (if generating
1104 // debug info). We have to do this ourselves because we are on the
1105 // "simple" statement path.
1106 if (HaveInsertPoint())
1107 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +00001108
Stephen Hines651f13c2014-04-23 16:59:28 -07001109 EmitBranchThroughCleanup(BreakContinueStack.back().BreakBlock);
Chris Lattnerda138702007-07-16 21:28:45 +00001110}
1111
Daniel Dunbar09124252008-11-12 08:21:33 +00001112void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
Chris Lattnerda138702007-07-16 21:28:45 +00001113 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
1114
Daniel Dunbar09124252008-11-12 08:21:33 +00001115 // If this code is reachable then emit a stop point (if generating
1116 // debug info). We have to do this ourselves because we are on the
1117 // "simple" statement path.
1118 if (HaveInsertPoint())
1119 EmitStopPoint(&S);
Mike Stumpec9771d2009-02-08 09:22:19 +00001120
Stephen Hines651f13c2014-04-23 16:59:28 -07001121 EmitBranchThroughCleanup(BreakContinueStack.back().ContinueBlock);
Chris Lattnerda138702007-07-16 21:28:45 +00001122}
Devang Patel51b09f22007-10-04 23:45:31 +00001123
Devang Patelc049e4f2007-10-08 20:57:48 +00001124/// EmitCaseStmtRange - If case statement range is not too big then
1125/// add multiple cases to switch instruction, one for each value within
1126/// the range. If range is too big then emit "if" condition check.
1127void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
Daniel Dunbar4efde8d2008-07-24 01:18:41 +00001128 assert(S.getRHS() && "Expected RHS value in CaseStmt");
Devang Patelc049e4f2007-10-08 20:57:48 +00001129
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001130 llvm::APSInt LHS = S.getLHS()->EvaluateKnownConstInt(getContext());
1131 llvm::APSInt RHS = S.getRHS()->EvaluateKnownConstInt(getContext());
Daniel Dunbar4efde8d2008-07-24 01:18:41 +00001132
Stephen Hines651f13c2014-04-23 16:59:28 -07001133 RegionCounter CaseCnt = getPGORegionCounter(&S);
1134
Daniel Dunbar16f23572008-07-25 01:11:38 +00001135 // Emit the code for this case. We do this first to make sure it is
1136 // properly chained from our predecessor before generating the
1137 // switch machinery to enter this block.
Stephen Hines651f13c2014-04-23 16:59:28 -07001138 llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb");
1139 EmitBlockWithFallThrough(CaseDest, CaseCnt);
Daniel Dunbar16f23572008-07-25 01:11:38 +00001140 EmitStmt(S.getSubStmt());
1141
Daniel Dunbar4efde8d2008-07-24 01:18:41 +00001142 // If range is empty, do nothing.
1143 if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))
1144 return;
Devang Patelc049e4f2007-10-08 20:57:48 +00001145
1146 llvm::APInt Range = RHS - LHS;
Daniel Dunbar16f23572008-07-25 01:11:38 +00001147 // FIXME: parameters such as this should not be hardcoded.
Devang Patelc049e4f2007-10-08 20:57:48 +00001148 if (Range.ult(llvm::APInt(Range.getBitWidth(), 64))) {
1149 // Range is small enough to add multiple switch instruction cases.
Stephen Hines651f13c2014-04-23 16:59:28 -07001150 uint64_t Total = CaseCnt.getCount();
1151 unsigned NCases = Range.getZExtValue() + 1;
1152 // We only have one region counter for the entire set of cases here, so we
1153 // need to divide the weights evenly between the generated cases, ensuring
1154 // that the total weight is preserved. E.g., a weight of 5 over three cases
1155 // will be distributed as weights of 2, 2, and 1.
1156 uint64_t Weight = Total / NCases, Rem = Total % NCases;
1157 for (unsigned I = 0; I != NCases; ++I) {
1158 if (SwitchWeights)
1159 SwitchWeights->push_back(Weight + (Rem ? 1 : 0));
1160 if (Rem)
1161 Rem--;
Chris Lattner97d54372011-04-19 20:53:45 +00001162 SwitchInsn->addCase(Builder.getInt(LHS), CaseDest);
Devang Patel2d79d0f2007-10-05 20:54:07 +00001163 LHS++;
1164 }
Devang Patelc049e4f2007-10-08 20:57:48 +00001165 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001166 }
1167
Daniel Dunbar16f23572008-07-25 01:11:38 +00001168 // The range is too big. Emit "if" condition into a new block,
1169 // making sure to save and restore the current insertion point.
1170 llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
Devang Patel2d79d0f2007-10-05 20:54:07 +00001171
Daniel Dunbar16f23572008-07-25 01:11:38 +00001172 // Push this test onto the chain of range checks (which terminates
1173 // in the default basic block). The switch's default will be changed
1174 // to the top of this chain after switch emission is complete.
1175 llvm::BasicBlock *FalseDest = CaseRangeBlock;
Daniel Dunbar55e87422008-11-11 02:29:29 +00001176 CaseRangeBlock = createBasicBlock("sw.caserange");
Devang Patelc049e4f2007-10-08 20:57:48 +00001177
Daniel Dunbar16f23572008-07-25 01:11:38 +00001178 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
1179 Builder.SetInsertPoint(CaseRangeBlock);
Devang Patelc049e4f2007-10-08 20:57:48 +00001180
1181 // Emit range check.
Mike Stump1eb44332009-09-09 15:08:12 +00001182 llvm::Value *Diff =
Benjamin Kramer578faa82011-09-27 21:06:10 +00001183 Builder.CreateSub(SwitchInsn->getCondition(), Builder.getInt(LHS));
Mike Stump1eb44332009-09-09 15:08:12 +00001184 llvm::Value *Cond =
Chris Lattner97d54372011-04-19 20:53:45 +00001185 Builder.CreateICmpULE(Diff, Builder.getInt(Range), "inbounds");
Stephen Hines651f13c2014-04-23 16:59:28 -07001186
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001187 llvm::MDNode *Weights = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07001188 if (SwitchWeights) {
1189 uint64_t ThisCount = CaseCnt.getCount();
1190 uint64_t DefaultCount = (*SwitchWeights)[0];
1191 Weights = PGO.createBranchWeights(ThisCount, DefaultCount);
1192
1193 // Since we're chaining the switch default through each large case range, we
1194 // need to update the weight for the default, ie, the first case, to include
1195 // this case.
1196 (*SwitchWeights)[0] += ThisCount;
1197 }
1198 Builder.CreateCondBr(Cond, CaseDest, FalseDest, Weights);
Devang Patelc049e4f2007-10-08 20:57:48 +00001199
Daniel Dunbar16f23572008-07-25 01:11:38 +00001200 // Restore the appropriate insertion point.
Daniel Dunbara448fb22008-11-11 23:11:34 +00001201 if (RestoreBB)
1202 Builder.SetInsertPoint(RestoreBB);
1203 else
1204 Builder.ClearInsertionPoint();
Devang Patelc049e4f2007-10-08 20:57:48 +00001205}
1206
1207void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
Fariborz Jahaniand66715d2012-01-16 17:35:57 +00001208 // If there is no enclosing switch instance that we're aware of, then this
1209 // case statement and its block can be elided. This situation only happens
1210 // when we've constant-folded the switch, are emitting the constant case,
Stephen Hines651f13c2014-04-23 16:59:28 -07001211 // and part of the constant case includes another case statement. For
Fariborz Jahaniand66715d2012-01-16 17:35:57 +00001212 // instance: switch (4) { case 4: do { case 5: } while (1); }
Fariborz Jahanian303b4f92012-01-17 23:55:19 +00001213 if (!SwitchInsn) {
1214 EmitStmt(S.getSubStmt());
Fariborz Jahaniand66715d2012-01-16 17:35:57 +00001215 return;
Fariborz Jahanian303b4f92012-01-17 23:55:19 +00001216 }
Fariborz Jahaniand66715d2012-01-16 17:35:57 +00001217
Chris Lattnerb11f9192011-04-17 00:54:30 +00001218 // Handle case ranges.
Devang Patelc049e4f2007-10-08 20:57:48 +00001219 if (S.getRHS()) {
1220 EmitCaseStmtRange(S);
1221 return;
1222 }
Mike Stump1eb44332009-09-09 15:08:12 +00001223
Stephen Hines651f13c2014-04-23 16:59:28 -07001224 RegionCounter CaseCnt = getPGORegionCounter(&S);
Chris Lattner97d54372011-04-19 20:53:45 +00001225 llvm::ConstantInt *CaseVal =
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001226 Builder.getInt(S.getLHS()->EvaluateKnownConstInt(getContext()));
Chris Lattner97d54372011-04-19 20:53:45 +00001227
Stephen Hines651f13c2014-04-23 16:59:28 -07001228 // If the body of the case is just a 'break', try to not emit an empty block.
1229 // If we're profiling or we're not optimizing, leave the block in for better
1230 // debug and coverage analysis.
1231 if (!CGM.getCodeGenOpts().ProfileInstrGenerate &&
1232 CGM.getCodeGenOpts().OptimizationLevel > 0 &&
Chad Rosier17083602012-08-24 18:31:16 +00001233 isa<BreakStmt>(S.getSubStmt())) {
Chris Lattnerb11f9192011-04-17 00:54:30 +00001234 JumpDest Block = BreakContinueStack.back().BreakBlock;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001235
Chris Lattnerb11f9192011-04-17 00:54:30 +00001236 // Only do this optimization if there are no cleanups that need emitting.
1237 if (isObviouslyBranchWithoutCleanups(Block)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001238 if (SwitchWeights)
1239 SwitchWeights->push_back(CaseCnt.getCount());
Chris Lattner97d54372011-04-19 20:53:45 +00001240 SwitchInsn->addCase(CaseVal, Block.getBlock());
Chris Lattner42104862011-04-17 23:21:26 +00001241
1242 // If there was a fallthrough into this case, make sure to redirect it to
1243 // the end of the switch as well.
1244 if (Builder.GetInsertBlock()) {
1245 Builder.CreateBr(Block.getBlock());
1246 Builder.ClearInsertionPoint();
1247 }
Chris Lattnerb11f9192011-04-17 00:54:30 +00001248 return;
1249 }
1250 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001251
Stephen Hines651f13c2014-04-23 16:59:28 -07001252 llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb");
1253 EmitBlockWithFallThrough(CaseDest, CaseCnt);
1254 if (SwitchWeights)
1255 SwitchWeights->push_back(CaseCnt.getCount());
Chris Lattner97d54372011-04-19 20:53:45 +00001256 SwitchInsn->addCase(CaseVal, CaseDest);
Mike Stump1eb44332009-09-09 15:08:12 +00001257
Chris Lattner5512f282009-03-04 04:46:18 +00001258 // Recursively emitting the statement is acceptable, but is not wonderful for
1259 // code where we have many case statements nested together, i.e.:
1260 // case 1:
1261 // case 2:
1262 // case 3: etc.
1263 // Handling this recursively will create a new block for each case statement
1264 // that falls through to the next case which is IR intensive. It also causes
1265 // deep recursion which can run into stack depth limitations. Handle
1266 // sequential non-range case statements specially.
1267 const CaseStmt *CurCase = &S;
1268 const CaseStmt *NextCase = dyn_cast<CaseStmt>(S.getSubStmt());
1269
Chris Lattner97d54372011-04-19 20:53:45 +00001270 // Otherwise, iteratively add consecutive cases to this switch stmt.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001271 while (NextCase && NextCase->getRHS() == nullptr) {
Chris Lattner5512f282009-03-04 04:46:18 +00001272 CurCase = NextCase;
Stephen Hines651f13c2014-04-23 16:59:28 -07001273 llvm::ConstantInt *CaseVal =
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001274 Builder.getInt(CurCase->getLHS()->EvaluateKnownConstInt(getContext()));
Stephen Hines651f13c2014-04-23 16:59:28 -07001275
1276 CaseCnt = getPGORegionCounter(NextCase);
1277 if (SwitchWeights)
1278 SwitchWeights->push_back(CaseCnt.getCount());
1279 if (CGM.getCodeGenOpts().ProfileInstrGenerate) {
1280 CaseDest = createBasicBlock("sw.bb");
1281 EmitBlockWithFallThrough(CaseDest, CaseCnt);
1282 }
1283
Chris Lattner97d54372011-04-19 20:53:45 +00001284 SwitchInsn->addCase(CaseVal, CaseDest);
Chris Lattner5512f282009-03-04 04:46:18 +00001285 NextCase = dyn_cast<CaseStmt>(CurCase->getSubStmt());
1286 }
Mike Stump1eb44332009-09-09 15:08:12 +00001287
Chris Lattner5512f282009-03-04 04:46:18 +00001288 // Normal default recursion for non-cases.
1289 EmitStmt(CurCase->getSubStmt());
Devang Patel51b09f22007-10-04 23:45:31 +00001290}
1291
1292void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
Daniel Dunbar16f23572008-07-25 01:11:38 +00001293 llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
Mike Stump1eb44332009-09-09 15:08:12 +00001294 assert(DefaultBlock->empty() &&
Daniel Dunbar55e87422008-11-11 02:29:29 +00001295 "EmitDefaultStmt: Default block already defined?");
Stephen Hines651f13c2014-04-23 16:59:28 -07001296
1297 RegionCounter Cnt = getPGORegionCounter(&S);
1298 EmitBlockWithFallThrough(DefaultBlock, Cnt);
1299
Devang Patel51b09f22007-10-04 23:45:31 +00001300 EmitStmt(S.getSubStmt());
1301}
1302
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001303/// CollectStatementsForCase - Given the body of a 'switch' statement and a
1304/// constant value that is being switched on, see if we can dead code eliminate
1305/// the body of the switch to a simple series of statements to emit. Basically,
1306/// on a switch (5) we want to find these statements:
1307/// case 5:
1308/// printf(...); <--
1309/// ++i; <--
1310/// break;
1311///
1312/// and add them to the ResultStmts vector. If it is unsafe to do this
1313/// transformation (for example, one of the elided statements contains a label
1314/// that might be jumped to), return CSFC_Failure. If we handled it and 'S'
1315/// should include statements after it (e.g. the printf() line is a substmt of
1316/// the case) then return CSFC_FallThrough. If we handled it and found a break
1317/// statement, then return CSFC_Success.
1318///
1319/// If Case is non-null, then we are looking for the specified case, checking
1320/// that nothing we jump over contains labels. If Case is null, then we found
1321/// the case and are looking for the break.
1322///
1323/// If the recursive walk actually finds our Case, then we set FoundCase to
1324/// true.
1325///
1326enum CSFC_Result { CSFC_Failure, CSFC_FallThrough, CSFC_Success };
1327static CSFC_Result CollectStatementsForCase(const Stmt *S,
1328 const SwitchCase *Case,
1329 bool &FoundCase,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001330 SmallVectorImpl<const Stmt*> &ResultStmts) {
Chris Lattner38589382011-02-28 01:02:29 +00001331 // If this is a null statement, just succeed.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001332 if (!S)
Chris Lattner38589382011-02-28 01:02:29 +00001333 return Case ? CSFC_Success : CSFC_FallThrough;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001334
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001335 // If this is the switchcase (case 4: or default) that we're looking for, then
1336 // we're in business. Just add the substatement.
1337 if (const SwitchCase *SC = dyn_cast<SwitchCase>(S)) {
1338 if (S == Case) {
1339 FoundCase = true;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001340 return CollectStatementsForCase(SC->getSubStmt(), nullptr, FoundCase,
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001341 ResultStmts);
1342 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001343
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001344 // Otherwise, this is some other case or default statement, just ignore it.
1345 return CollectStatementsForCase(SC->getSubStmt(), Case, FoundCase,
1346 ResultStmts);
1347 }
Chris Lattner38589382011-02-28 01:02:29 +00001348
1349 // If we are in the live part of the code and we found our break statement,
1350 // return a success!
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001351 if (!Case && isa<BreakStmt>(S))
Chris Lattner38589382011-02-28 01:02:29 +00001352 return CSFC_Success;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001353
Chris Lattner38589382011-02-28 01:02:29 +00001354 // If this is a switch statement, then it might contain the SwitchCase, the
1355 // break, or neither.
1356 if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
1357 // Handle this as two cases: we might be looking for the SwitchCase (if so
1358 // the skipped statements must be skippable) or we might already have it.
1359 CompoundStmt::const_body_iterator I = CS->body_begin(), E = CS->body_end();
1360 if (Case) {
Chris Lattner3f06e272011-02-28 07:22:44 +00001361 // Keep track of whether we see a skipped declaration. The code could be
1362 // using the declaration even if it is skipped, so we can't optimize out
1363 // the decl if the kept statements might refer to it.
1364 bool HadSkippedDecl = false;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001365
Chris Lattner38589382011-02-28 01:02:29 +00001366 // If we're looking for the case, just see if we can skip each of the
1367 // substatements.
1368 for (; Case && I != E; ++I) {
Eli Friedman4d509342011-05-21 19:15:39 +00001369 HadSkippedDecl |= isa<DeclStmt>(*I);
Chad Rosier6f61ba22012-06-20 17:43:05 +00001370
Chris Lattner38589382011-02-28 01:02:29 +00001371 switch (CollectStatementsForCase(*I, Case, FoundCase, ResultStmts)) {
1372 case CSFC_Failure: return CSFC_Failure;
1373 case CSFC_Success:
1374 // A successful result means that either 1) that the statement doesn't
1375 // have the case and is skippable, or 2) does contain the case value
Chris Lattner94671102011-02-28 07:16:14 +00001376 // and also contains the break to exit the switch. In the later case,
1377 // we just verify the rest of the statements are elidable.
1378 if (FoundCase) {
Chris Lattner3f06e272011-02-28 07:22:44 +00001379 // If we found the case and skipped declarations, we can't do the
1380 // optimization.
1381 if (HadSkippedDecl)
1382 return CSFC_Failure;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001383
Chris Lattner94671102011-02-28 07:16:14 +00001384 for (++I; I != E; ++I)
1385 if (CodeGenFunction::ContainsLabel(*I, true))
1386 return CSFC_Failure;
1387 return CSFC_Success;
1388 }
Chris Lattner38589382011-02-28 01:02:29 +00001389 break;
1390 case CSFC_FallThrough:
1391 // If we have a fallthrough condition, then we must have found the
1392 // case started to include statements. Consider the rest of the
1393 // statements in the compound statement as candidates for inclusion.
1394 assert(FoundCase && "Didn't find case but returned fallthrough?");
1395 // We recursively found Case, so we're not looking for it anymore.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001396 Case = nullptr;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001397
Chris Lattner3f06e272011-02-28 07:22:44 +00001398 // If we found the case and skipped declarations, we can't do the
1399 // optimization.
1400 if (HadSkippedDecl)
1401 return CSFC_Failure;
Chris Lattner38589382011-02-28 01:02:29 +00001402 break;
1403 }
1404 }
1405 }
1406
1407 // If we have statements in our range, then we know that the statements are
1408 // live and need to be added to the set of statements we're tracking.
1409 for (; I != E; ++I) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001410 switch (CollectStatementsForCase(*I, nullptr, FoundCase, ResultStmts)) {
Chris Lattner38589382011-02-28 01:02:29 +00001411 case CSFC_Failure: return CSFC_Failure;
1412 case CSFC_FallThrough:
1413 // A fallthrough result means that the statement was simple and just
1414 // included in ResultStmt, keep adding them afterwards.
1415 break;
1416 case CSFC_Success:
1417 // A successful result means that we found the break statement and
1418 // stopped statement inclusion. We just ensure that any leftover stmts
1419 // are skippable and return success ourselves.
1420 for (++I; I != E; ++I)
1421 if (CodeGenFunction::ContainsLabel(*I, true))
1422 return CSFC_Failure;
1423 return CSFC_Success;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001424 }
Chris Lattner38589382011-02-28 01:02:29 +00001425 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001426
Chris Lattner38589382011-02-28 01:02:29 +00001427 return Case ? CSFC_Success : CSFC_FallThrough;
1428 }
1429
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001430 // Okay, this is some other statement that we don't handle explicitly, like a
1431 // for statement or increment etc. If we are skipping over this statement,
1432 // just verify it doesn't have labels, which would make it invalid to elide.
1433 if (Case) {
Chris Lattner3f06e272011-02-28 07:22:44 +00001434 if (CodeGenFunction::ContainsLabel(S, true))
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001435 return CSFC_Failure;
1436 return CSFC_Success;
1437 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001438
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001439 // Otherwise, we want to include this statement. Everything is cool with that
1440 // so long as it doesn't contain a break out of the switch we're in.
1441 if (CodeGenFunction::containsBreak(S)) return CSFC_Failure;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001442
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001443 // Otherwise, everything is great. Include the statement and tell the caller
1444 // that we fall through and include the next statement as well.
1445 ResultStmts.push_back(S);
1446 return CSFC_FallThrough;
1447}
1448
1449/// FindCaseStatementsForValue - Find the case statement being jumped to and
1450/// then invoke CollectStatementsForCase to find the list of statements to emit
1451/// for a switch on constant. See the comment above CollectStatementsForCase
1452/// for more details.
1453static bool FindCaseStatementsForValue(const SwitchStmt &S,
Richard Trieue1ecdc12012-07-23 20:21:35 +00001454 const llvm::APSInt &ConstantCondValue,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001455 SmallVectorImpl<const Stmt*> &ResultStmts,
Stephen Hines651f13c2014-04-23 16:59:28 -07001456 ASTContext &C,
1457 const SwitchCase *&ResultCase) {
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001458 // First step, find the switch case that is being branched to. We can do this
1459 // efficiently by scanning the SwitchCase list.
1460 const SwitchCase *Case = S.getSwitchCaseList();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001461 const DefaultStmt *DefaultCase = nullptr;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001462
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001463 for (; Case; Case = Case->getNextSwitchCase()) {
1464 // It's either a default or case. Just remember the default statement in
1465 // case we're not jumping to any numbered cases.
1466 if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) {
1467 DefaultCase = DS;
1468 continue;
1469 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001470
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001471 // Check to see if this case is the one we're looking for.
1472 const CaseStmt *CS = cast<CaseStmt>(Case);
1473 // Don't handle case ranges yet.
1474 if (CS->getRHS()) return false;
Chad Rosier6f61ba22012-06-20 17:43:05 +00001475
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001476 // If we found our case, remember it as 'case'.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001477 if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue)
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001478 break;
1479 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001480
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001481 // If we didn't find a matching case, we use a default if it exists, or we
1482 // elide the whole switch body!
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001483 if (!Case) {
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001484 // It is safe to elide the body of the switch if it doesn't contain labels
1485 // etc. If it is safe, return successfully with an empty ResultStmts list.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001486 if (!DefaultCase)
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001487 return !CodeGenFunction::ContainsLabel(&S);
1488 Case = DefaultCase;
1489 }
1490
1491 // Ok, we know which case is being jumped to, try to collect all the
1492 // statements that follow it. This can fail for a variety of reasons. Also,
1493 // check to see that the recursive walk actually found our case statement.
1494 // Insane cases like this can fail to find it in the recursive walk since we
1495 // don't handle every stmt kind:
1496 // switch (4) {
1497 // while (1) {
1498 // case 4: ...
1499 bool FoundCase = false;
Stephen Hines651f13c2014-04-23 16:59:28 -07001500 ResultCase = Case;
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001501 return CollectStatementsForCase(S.getBody(), Case, FoundCase,
1502 ResultStmts) != CSFC_Failure &&
1503 FoundCase;
1504}
1505
Devang Patel51b09f22007-10-04 23:45:31 +00001506void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001507 // Handle nested switch statements.
1508 llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
Stephen Hines651f13c2014-04-23 16:59:28 -07001509 SmallVector<uint64_t, 16> *SavedSwitchWeights = SwitchWeights;
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001510 llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
1511
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001512 // See if we can constant fold the condition of the switch and therefore only
1513 // emit the live case statement (if any) of the switch.
Richard Trieue1ecdc12012-07-23 20:21:35 +00001514 llvm::APSInt ConstantCondValue;
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001515 if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001516 SmallVector<const Stmt*, 4> CaseStmts;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001517 const SwitchCase *Case = nullptr;
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001518 if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts,
Stephen Hines651f13c2014-04-23 16:59:28 -07001519 getContext(), Case)) {
1520 if (Case) {
1521 RegionCounter CaseCnt = getPGORegionCounter(Case);
1522 CaseCnt.beginRegion(Builder);
1523 }
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001524 RunCleanupsScope ExecutedScope(*this);
1525
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001526 // Emit the condition variable if needed inside the entire cleanup scope
1527 // used by this special case for constant folded switches.
1528 if (S.getConditionVariable())
1529 EmitAutoVarDecl(*S.getConditionVariable());
1530
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001531 // At this point, we are no longer "within" a switch instance, so
1532 // we can temporarily enforce this to ensure that any embedded case
1533 // statements are not emitted.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001534 SwitchInsn = nullptr;
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001535
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001536 // Okay, we can dead code eliminate everything except this case. Emit the
1537 // specified series of statements and we're good.
1538 for (unsigned i = 0, e = CaseStmts.size(); i != e; ++i)
1539 EmitStmt(CaseStmts[i]);
Stephen Hines651f13c2014-04-23 16:59:28 -07001540 RegionCounter ExitCnt = getPGORegionCounter(&S);
1541 ExitCnt.beginRegion(Builder);
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001542
Eric Christopherfc65ec82012-04-10 05:04:04 +00001543 // Now we want to restore the saved switch instance so that nested
1544 // switches continue to function properly
Fariborz Jahanian985df1c2012-01-17 23:39:50 +00001545 SwitchInsn = SavedSwitchInsn;
1546
Chris Lattnerfda0f1f2011-02-28 00:22:07 +00001547 return;
1548 }
1549 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001550
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001551 JumpDest SwitchExit = getJumpDestInCurrentScope("sw.epilog");
1552
1553 RunCleanupsScope ConditionScope(*this);
1554 if (S.getConditionVariable())
1555 EmitAutoVarDecl(*S.getConditionVariable());
Devang Patel51b09f22007-10-04 23:45:31 +00001556 llvm::Value *CondV = EmitScalarExpr(S.getCond());
1557
Daniel Dunbar16f23572008-07-25 01:11:38 +00001558 // Create basic block to hold stuff that comes after switch
1559 // statement. We also need to create a default block now so that
1560 // explicit case ranges tests can have a place to jump to on
1561 // failure.
Daniel Dunbar55e87422008-11-11 02:29:29 +00001562 llvm::BasicBlock *DefaultBlock = createBasicBlock("sw.default");
Daniel Dunbar16f23572008-07-25 01:11:38 +00001563 SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
Stephen Hines651f13c2014-04-23 16:59:28 -07001564 if (PGO.haveRegionCounts()) {
1565 // Walk the SwitchCase list to find how many there are.
1566 uint64_t DefaultCount = 0;
1567 unsigned NumCases = 0;
1568 for (const SwitchCase *Case = S.getSwitchCaseList();
1569 Case;
1570 Case = Case->getNextSwitchCase()) {
1571 if (isa<DefaultStmt>(Case))
1572 DefaultCount = getPGORegionCounter(Case).getCount();
1573 NumCases += 1;
1574 }
1575 SwitchWeights = new SmallVector<uint64_t, 16>();
1576 SwitchWeights->reserve(NumCases);
1577 // The default needs to be first. We store the edge count, so we already
1578 // know the right weight.
1579 SwitchWeights->push_back(DefaultCount);
1580 }
Daniel Dunbar16f23572008-07-25 01:11:38 +00001581 CaseRangeBlock = DefaultBlock;
Devang Patel51b09f22007-10-04 23:45:31 +00001582
Daniel Dunbar09124252008-11-12 08:21:33 +00001583 // Clear the insertion point to indicate we are in unreachable code.
1584 Builder.ClearInsertionPoint();
Eli Friedmand28a80d2008-05-12 16:08:04 +00001585
Stephen Hines651f13c2014-04-23 16:59:28 -07001586 // All break statements jump to NextBlock. If BreakContinueStack is non-empty
Devang Patele9b8c0a2007-10-30 20:59:40 +00001587 // then reuse last ContinueBlock.
John McCallf1549f62010-07-06 01:34:17 +00001588 JumpDest OuterContinue;
Anders Carlssone4b6d342009-02-10 05:52:02 +00001589 if (!BreakContinueStack.empty())
John McCallf1549f62010-07-06 01:34:17 +00001590 OuterContinue = BreakContinueStack.back().ContinueBlock;
Anders Carlssone4b6d342009-02-10 05:52:02 +00001591
John McCallf1549f62010-07-06 01:34:17 +00001592 BreakContinueStack.push_back(BreakContinue(SwitchExit, OuterContinue));
Devang Patel51b09f22007-10-04 23:45:31 +00001593
1594 // Emit switch body.
1595 EmitStmt(S.getBody());
Mike Stump1eb44332009-09-09 15:08:12 +00001596
Anders Carlssone4b6d342009-02-10 05:52:02 +00001597 BreakContinueStack.pop_back();
Devang Patel51b09f22007-10-04 23:45:31 +00001598
Daniel Dunbar16f23572008-07-25 01:11:38 +00001599 // Update the default block in case explicit case range tests have
1600 // been chained on top.
Stepan Dyatkovskiyab14ae22012-02-01 07:50:21 +00001601 SwitchInsn->setDefaultDest(CaseRangeBlock);
Mike Stump1eb44332009-09-09 15:08:12 +00001602
John McCallf1549f62010-07-06 01:34:17 +00001603 // If a default was never emitted:
Daniel Dunbar16f23572008-07-25 01:11:38 +00001604 if (!DefaultBlock->getParent()) {
John McCallf1549f62010-07-06 01:34:17 +00001605 // If we have cleanups, emit the default block so that there's a
1606 // place to jump through the cleanups from.
1607 if (ConditionScope.requiresCleanups()) {
1608 EmitBlock(DefaultBlock);
1609
1610 // Otherwise, just forward the default block to the switch end.
1611 } else {
John McCallff8e1152010-07-23 21:56:41 +00001612 DefaultBlock->replaceAllUsesWith(SwitchExit.getBlock());
John McCallf1549f62010-07-06 01:34:17 +00001613 delete DefaultBlock;
1614 }
Daniel Dunbar16f23572008-07-25 01:11:38 +00001615 }
Devang Patel51b09f22007-10-04 23:45:31 +00001616
John McCallff8e1152010-07-23 21:56:41 +00001617 ConditionScope.ForceCleanup();
1618
Daniel Dunbar16f23572008-07-25 01:11:38 +00001619 // Emit continuation.
John McCallff8e1152010-07-23 21:56:41 +00001620 EmitBlock(SwitchExit.getBlock(), true);
Stephen Hines651f13c2014-04-23 16:59:28 -07001621 RegionCounter ExitCnt = getPGORegionCounter(&S);
1622 ExitCnt.beginRegion(Builder);
Daniel Dunbar16f23572008-07-25 01:11:38 +00001623
Stephen Hines651f13c2014-04-23 16:59:28 -07001624 if (SwitchWeights) {
1625 assert(SwitchWeights->size() == 1 + SwitchInsn->getNumCases() &&
1626 "switch weights do not match switch cases");
1627 // If there's only one jump destination there's no sense weighting it.
1628 if (SwitchWeights->size() > 1)
1629 SwitchInsn->setMetadata(llvm::LLVMContext::MD_prof,
1630 PGO.createBranchWeights(*SwitchWeights));
1631 delete SwitchWeights;
1632 }
Devang Patel51b09f22007-10-04 23:45:31 +00001633 SwitchInsn = SavedSwitchInsn;
Stephen Hines651f13c2014-04-23 16:59:28 -07001634 SwitchWeights = SavedSwitchWeights;
Devang Patelc049e4f2007-10-08 20:57:48 +00001635 CaseRangeBlock = SavedCRBlock;
Devang Patel51b09f22007-10-04 23:45:31 +00001636}
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001637
Chris Lattner2819fa82009-04-26 17:57:12 +00001638static std::string
Daniel Dunbar444be732009-11-13 05:51:54 +00001639SimplifyConstraint(const char *Constraint, const TargetInfo &Target,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001640 SmallVectorImpl<TargetInfo::ConstraintInfo> *OutCons=nullptr) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001641 std::string Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001642
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001643 while (*Constraint) {
1644 switch (*Constraint) {
1645 default:
Stuart Hastings002333f2011-06-07 23:45:05 +00001646 Result += Target.convertConstraint(Constraint);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001647 break;
1648 // Ignore these
1649 case '*':
1650 case '?':
1651 case '!':
John Thompsonef44e112010-08-10 19:20:14 +00001652 case '=': // Will see this and the following in mult-alt constraints.
1653 case '+':
1654 break;
Ulrich Weigande6b3dba2012-10-29 12:20:54 +00001655 case '#': // Ignore the rest of the constraint alternative.
1656 while (Constraint[1] && Constraint[1] != ',')
Eric Christopher7b309b02013-07-10 20:14:36 +00001657 Constraint++;
Ulrich Weigande6b3dba2012-10-29 12:20:54 +00001658 break;
John Thompson2f474ea2010-09-18 01:15:13 +00001659 case ',':
1660 Result += "|";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001661 break;
1662 case 'g':
1663 Result += "imr";
1664 break;
Anders Carlsson300fb5d2009-01-18 02:06:20 +00001665 case '[': {
Chris Lattner2819fa82009-04-26 17:57:12 +00001666 assert(OutCons &&
Anders Carlsson300fb5d2009-01-18 02:06:20 +00001667 "Must pass output names to constraints with a symbolic name");
1668 unsigned Index;
Mike Stump1eb44332009-09-09 15:08:12 +00001669 bool result = Target.resolveSymbolicName(Constraint,
Chris Lattner2819fa82009-04-26 17:57:12 +00001670 &(*OutCons)[0],
1671 OutCons->size(), Index);
Chris Lattnercbf40f92011-01-05 18:41:53 +00001672 assert(result && "Could not resolve symbolic name"); (void)result;
Anders Carlsson300fb5d2009-01-18 02:06:20 +00001673 Result += llvm::utostr(Index);
1674 break;
1675 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001676 }
Mike Stump1eb44332009-09-09 15:08:12 +00001677
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001678 Constraint++;
1679 }
Mike Stump1eb44332009-09-09 15:08:12 +00001680
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001681 return Result;
1682}
1683
Rafael Espindola03117d12011-01-01 21:12:33 +00001684/// AddVariableConstraints - Look at AsmExpr and if it is a variable declared
1685/// as using a particular register add that as a constraint that will be used
1686/// in this asm stmt.
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001687static std::string
Rafael Espindola03117d12011-01-01 21:12:33 +00001688AddVariableConstraints(const std::string &Constraint, const Expr &AsmExpr,
1689 const TargetInfo &Target, CodeGenModule &CGM,
Chad Rosiera23b91d2012-08-28 18:54:39 +00001690 const AsmStmt &Stmt) {
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001691 const DeclRefExpr *AsmDeclRef = dyn_cast<DeclRefExpr>(&AsmExpr);
1692 if (!AsmDeclRef)
1693 return Constraint;
1694 const ValueDecl &Value = *AsmDeclRef->getDecl();
1695 const VarDecl *Variable = dyn_cast<VarDecl>(&Value);
1696 if (!Variable)
1697 return Constraint;
Eli Friedmana43ef3e2012-03-15 23:12:51 +00001698 if (Variable->getStorageClass() != SC_Register)
1699 return Constraint;
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001700 AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>();
1701 if (!Attr)
1702 return Constraint;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001703 StringRef Register = Attr->getLabel();
Rafael Espindolabaf86952011-01-01 21:47:03 +00001704 assert(Target.isValidGCCRegisterName(Register));
Eric Christophere3e07a52011-06-17 01:53:34 +00001705 // We're using validateOutputConstraint here because we only care if
1706 // this is a register constraint.
1707 TargetInfo::ConstraintInfo Info(Constraint, "");
1708 if (Target.validateOutputConstraint(Info) &&
1709 !Info.allowsRegister()) {
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001710 CGM.ErrorUnsupported(&Stmt, "__asm__");
1711 return Constraint;
1712 }
Eric Christopher43fec872011-06-21 00:07:10 +00001713 // Canonicalize the register here before returning it.
1714 Register = Target.getNormalizedGCCRegisterName(Register);
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001715 return "{" + Register.str() + "}";
1716}
1717
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001718llvm::Value*
Chad Rosier42b60552012-08-23 20:00:18 +00001719CodeGenFunction::EmitAsmInputLValue(const TargetInfo::ConstraintInfo &Info,
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001720 LValue InputValue, QualType InputType,
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001721 std::string &ConstraintStr,
1722 SourceLocation Loc) {
Anders Carlsson63471722009-01-11 19:32:54 +00001723 llvm::Value *Arg;
Mike Stump1eb44332009-09-09 15:08:12 +00001724 if (Info.allowsRegister() || !Info.allowsMemory()) {
John McCall9d232c82013-03-07 21:37:08 +00001725 if (CodeGenFunction::hasScalarEvaluationKind(InputType)) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001726 Arg = EmitLoadOfLValue(InputValue, Loc).getScalarVal();
Anders Carlsson63471722009-01-11 19:32:54 +00001727 } else {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001728 llvm::Type *Ty = ConvertType(InputType);
Micah Villmow25a6a842012-10-08 16:25:52 +00001729 uint64_t Size = CGM.getDataLayout().getTypeSizeInBits(Ty);
Anders Carlssonebaae2a2009-01-12 02:22:13 +00001730 if (Size <= 64 && llvm::isPowerOf2_64(Size)) {
John McCalld16c2cf2011-02-08 08:22:06 +00001731 Ty = llvm::IntegerType::get(getLLVMContext(), Size);
Anders Carlssonebaae2a2009-01-12 02:22:13 +00001732 Ty = llvm::PointerType::getUnqual(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001733
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001734 Arg = Builder.CreateLoad(Builder.CreateBitCast(InputValue.getAddress(),
1735 Ty));
Anders Carlssonebaae2a2009-01-12 02:22:13 +00001736 } else {
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001737 Arg = InputValue.getAddress();
Anders Carlssonebaae2a2009-01-12 02:22:13 +00001738 ConstraintStr += '*';
1739 }
Anders Carlsson63471722009-01-11 19:32:54 +00001740 }
1741 } else {
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001742 Arg = InputValue.getAddress();
Anders Carlsson63471722009-01-11 19:32:54 +00001743 ConstraintStr += '*';
1744 }
Mike Stump1eb44332009-09-09 15:08:12 +00001745
Anders Carlsson63471722009-01-11 19:32:54 +00001746 return Arg;
1747}
1748
Chad Rosier42b60552012-08-23 20:00:18 +00001749llvm::Value* CodeGenFunction::EmitAsmInput(
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001750 const TargetInfo::ConstraintInfo &Info,
1751 const Expr *InputExpr,
1752 std::string &ConstraintStr) {
1753 if (Info.allowsRegister() || !Info.allowsMemory())
John McCall9d232c82013-03-07 21:37:08 +00001754 if (CodeGenFunction::hasScalarEvaluationKind(InputExpr->getType()))
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001755 return EmitScalarExpr(InputExpr);
1756
1757 InputExpr = InputExpr->IgnoreParenNoopCasts(getContext());
1758 LValue Dest = EmitLValue(InputExpr);
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001759 return EmitAsmInputLValue(Info, Dest, InputExpr->getType(), ConstraintStr,
1760 InputExpr->getExprLoc());
Eli Friedman6d7cfd72010-07-16 00:55:21 +00001761}
1762
Chris Lattner47fc7e92010-11-17 05:58:54 +00001763/// getAsmSrcLocInfo - Return the !srcloc metadata node to attach to an inline
Chris Lattner5d936532010-11-17 08:25:26 +00001764/// asm call instruction. The !srcloc MDNode contains a list of constant
1765/// integers which are the source locations of the start of each line in the
1766/// asm.
Chris Lattner47fc7e92010-11-17 05:58:54 +00001767static llvm::MDNode *getAsmSrcLocInfo(const StringLiteral *Str,
1768 CodeGenFunction &CGF) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001769 SmallVector<llvm::Value *, 8> Locs;
Chris Lattner5d936532010-11-17 08:25:26 +00001770 // Add the location of the first line to the MDNode.
1771 Locs.push_back(llvm::ConstantInt::get(CGF.Int32Ty,
1772 Str->getLocStart().getRawEncoding()));
Chris Lattner5f9e2722011-07-23 10:55:15 +00001773 StringRef StrVal = Str->getString();
Chris Lattner5d936532010-11-17 08:25:26 +00001774 if (!StrVal.empty()) {
1775 const SourceManager &SM = CGF.CGM.getContext().getSourceManager();
David Blaikie4e4d0842012-03-11 07:00:24 +00001776 const LangOptions &LangOpts = CGF.CGM.getLangOpts();
Chad Rosier6f61ba22012-06-20 17:43:05 +00001777
Chris Lattner5d936532010-11-17 08:25:26 +00001778 // Add the location of the start of each subsequent line of the asm to the
1779 // MDNode.
1780 for (unsigned i = 0, e = StrVal.size()-1; i != e; ++i) {
1781 if (StrVal[i] != '\n') continue;
1782 SourceLocation LineLoc = Str->getLocationOfByte(i+1, SM, LangOpts,
John McCall64aa4b32013-04-16 22:48:15 +00001783 CGF.getTarget());
Chris Lattner5d936532010-11-17 08:25:26 +00001784 Locs.push_back(llvm::ConstantInt::get(CGF.Int32Ty,
1785 LineLoc.getRawEncoding()));
1786 }
Chad Rosier6f61ba22012-06-20 17:43:05 +00001787 }
1788
Jay Foad6f141652011-04-21 19:59:12 +00001789 return llvm::MDNode::get(CGF.getLLVMContext(), Locs);
Chris Lattner47fc7e92010-11-17 05:58:54 +00001790}
1791
Chad Rosiera23b91d2012-08-28 18:54:39 +00001792void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
Chad Rosierbe3ace82012-08-24 17:05:45 +00001793 // Assemble the final asm string.
Chad Rosierda083b22012-08-27 20:23:31 +00001794 std::string AsmString = S.generateAsmString(getContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001795
Chris Lattner481fef92009-05-03 07:05:00 +00001796 // Get all the output and input constraints together.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001797 SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
1798 SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
Chris Lattner481fef92009-05-03 07:05:00 +00001799
Mike Stump1eb44332009-09-09 15:08:12 +00001800 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
John McCallaeeacf72013-05-03 00:10:13 +00001801 StringRef Name;
1802 if (const GCCAsmStmt *GAS = dyn_cast<GCCAsmStmt>(&S))
1803 Name = GAS->getOutputName(i);
1804 TargetInfo::ConstraintInfo Info(S.getOutputConstraint(i), Name);
John McCall64aa4b32013-04-16 22:48:15 +00001805 bool IsValid = getTarget().validateOutputConstraint(Info); (void)IsValid;
Stephen Hines651f13c2014-04-23 16:59:28 -07001806 assert(IsValid && "Failed to parse output constraint");
Chris Lattner481fef92009-05-03 07:05:00 +00001807 OutputConstraintInfos.push_back(Info);
Mike Stump1eb44332009-09-09 15:08:12 +00001808 }
1809
Chris Lattner481fef92009-05-03 07:05:00 +00001810 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
John McCallaeeacf72013-05-03 00:10:13 +00001811 StringRef Name;
1812 if (const GCCAsmStmt *GAS = dyn_cast<GCCAsmStmt>(&S))
1813 Name = GAS->getInputName(i);
1814 TargetInfo::ConstraintInfo Info(S.getInputConstraint(i), Name);
John McCall64aa4b32013-04-16 22:48:15 +00001815 bool IsValid =
1816 getTarget().validateInputConstraint(OutputConstraintInfos.data(),
1817 S.getNumOutputs(), Info);
Chris Lattnerb9922592010-03-03 21:52:23 +00001818 assert(IsValid && "Failed to parse input constraint"); (void)IsValid;
Chris Lattner481fef92009-05-03 07:05:00 +00001819 InputConstraintInfos.push_back(Info);
1820 }
Mike Stump1eb44332009-09-09 15:08:12 +00001821
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001822 std::string Constraints;
Mike Stump1eb44332009-09-09 15:08:12 +00001823
Chris Lattnerede9d902009-05-03 07:53:25 +00001824 std::vector<LValue> ResultRegDests;
1825 std::vector<QualType> ResultRegQualTys;
Jay Foadef6de3d2011-07-11 09:56:20 +00001826 std::vector<llvm::Type *> ResultRegTypes;
1827 std::vector<llvm::Type *> ResultTruncRegTypes;
Chad Rosierd1c0c942012-05-01 19:53:37 +00001828 std::vector<llvm::Type *> ArgTypes;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001829 std::vector<llvm::Value*> Args;
Anders Carlssonf39a4212008-02-05 20:01:53 +00001830
1831 // Keep track of inout constraints.
1832 std::string InOutConstraints;
1833 std::vector<llvm::Value*> InOutArgs;
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001834 std::vector<llvm::Type*> InOutArgTypes;
Anders Carlsson03eb5432009-01-27 20:38:24 +00001835
Mike Stump1eb44332009-09-09 15:08:12 +00001836 for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
Chris Lattner481fef92009-05-03 07:05:00 +00001837 TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i];
Anders Carlsson03eb5432009-01-27 20:38:24 +00001838
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001839 // Simplify the output constraint.
Chris Lattner481fef92009-05-03 07:05:00 +00001840 std::string OutputConstraint(S.getOutputConstraint(i));
John McCall64aa4b32013-04-16 22:48:15 +00001841 OutputConstraint = SimplifyConstraint(OutputConstraint.c_str() + 1,
1842 getTarget());
Mike Stump1eb44332009-09-09 15:08:12 +00001843
Chris Lattner810f6d52009-03-13 17:38:01 +00001844 const Expr *OutExpr = S.getOutputExpr(i);
1845 OutExpr = OutExpr->IgnoreParenNoopCasts(getContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001846
Eric Christophera18f5392011-06-03 14:52:25 +00001847 OutputConstraint = AddVariableConstraints(OutputConstraint, *OutExpr,
John McCall64aa4b32013-04-16 22:48:15 +00001848 getTarget(), CGM, S);
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001849
Chris Lattner810f6d52009-03-13 17:38:01 +00001850 LValue Dest = EmitLValue(OutExpr);
Chris Lattnerede9d902009-05-03 07:53:25 +00001851 if (!Constraints.empty())
Anders Carlssonbad3a942009-05-01 00:16:04 +00001852 Constraints += ',';
1853
Chris Lattnera077b5c2009-05-03 08:21:20 +00001854 // If this is a register output, then make the inline asm return it
1855 // by-value. If this is a memory result, return the value by-reference.
John McCall9d232c82013-03-07 21:37:08 +00001856 if (!Info.allowsMemory() && hasScalarEvaluationKind(OutExpr->getType())) {
Chris Lattnera077b5c2009-05-03 08:21:20 +00001857 Constraints += "=" + OutputConstraint;
Chris Lattnerede9d902009-05-03 07:53:25 +00001858 ResultRegQualTys.push_back(OutExpr->getType());
1859 ResultRegDests.push_back(Dest);
Chris Lattnera077b5c2009-05-03 08:21:20 +00001860 ResultRegTypes.push_back(ConvertTypeForMem(OutExpr->getType()));
1861 ResultTruncRegTypes.push_back(ResultRegTypes.back());
Mike Stump1eb44332009-09-09 15:08:12 +00001862
Chris Lattnera077b5c2009-05-03 08:21:20 +00001863 // If this output is tied to an input, and if the input is larger, then
1864 // we need to set the actual result type of the inline asm node to be the
1865 // same as the input type.
1866 if (Info.hasMatchingInput()) {
Chris Lattnerebfc9852009-05-03 08:38:58 +00001867 unsigned InputNo;
1868 for (InputNo = 0; InputNo != S.getNumInputs(); ++InputNo) {
1869 TargetInfo::ConstraintInfo &Input = InputConstraintInfos[InputNo];
Chris Lattneraab64d02010-04-23 17:27:29 +00001870 if (Input.hasTiedOperand() && Input.getTiedOperand() == i)
Chris Lattnera077b5c2009-05-03 08:21:20 +00001871 break;
Chris Lattnerebfc9852009-05-03 08:38:58 +00001872 }
1873 assert(InputNo != S.getNumInputs() && "Didn't find matching input!");
Mike Stump1eb44332009-09-09 15:08:12 +00001874
Chris Lattnera077b5c2009-05-03 08:21:20 +00001875 QualType InputTy = S.getInputExpr(InputNo)->getType();
Chris Lattneraab64d02010-04-23 17:27:29 +00001876 QualType OutputType = OutExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001877
Chris Lattnera077b5c2009-05-03 08:21:20 +00001878 uint64_t InputSize = getContext().getTypeSize(InputTy);
Chris Lattneraab64d02010-04-23 17:27:29 +00001879 if (getContext().getTypeSize(OutputType) < InputSize) {
1880 // Form the asm to return the value as a larger integer or fp type.
1881 ResultRegTypes.back() = ConvertType(InputTy);
Chris Lattnera077b5c2009-05-03 08:21:20 +00001882 }
1883 }
Tim Northover1bea6532013-06-07 00:04:50 +00001884 if (llvm::Type* AdjTy =
Peter Collingbourne4b93d662011-02-19 23:03:58 +00001885 getTargetHooks().adjustInlineAsmType(*this, OutputConstraint,
1886 ResultRegTypes.back()))
Dale Johannesenf6e2c202010-10-29 23:12:32 +00001887 ResultRegTypes.back() = AdjTy;
Tim Northover1bea6532013-06-07 00:04:50 +00001888 else {
1889 CGM.getDiags().Report(S.getAsmLoc(),
1890 diag::err_asm_invalid_type_in_input)
1891 << OutExpr->getType() << OutputConstraint;
1892 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001893 } else {
1894 ArgTypes.push_back(Dest.getAddress()->getType());
Anders Carlssoncad3ab62008-02-05 16:57:38 +00001895 Args.push_back(Dest.getAddress());
Anders Carlssonf39a4212008-02-05 20:01:53 +00001896 Constraints += "=*";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001897 Constraints += OutputConstraint;
Anders Carlssonf39a4212008-02-05 20:01:53 +00001898 }
Mike Stump1eb44332009-09-09 15:08:12 +00001899
Chris Lattner44def072009-04-26 07:16:29 +00001900 if (Info.isReadWrite()) {
Anders Carlssonf39a4212008-02-05 20:01:53 +00001901 InOutConstraints += ',';
Anders Carlsson63471722009-01-11 19:32:54 +00001902
Anders Carlssonfca93612009-08-04 18:18:36 +00001903 const Expr *InputExpr = S.getOutputExpr(i);
Chad Rosier42b60552012-08-23 20:00:18 +00001904 llvm::Value *Arg = EmitAsmInputLValue(Info, Dest, InputExpr->getType(),
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001905 InOutConstraints,
1906 InputExpr->getExprLoc());
Mike Stump1eb44332009-09-09 15:08:12 +00001907
Bill Wendlingacb53102012-03-22 23:25:07 +00001908 if (llvm::Type* AdjTy =
Tim Northover1bea6532013-06-07 00:04:50 +00001909 getTargetHooks().adjustInlineAsmType(*this, OutputConstraint,
1910 Arg->getType()))
Bill Wendlingacb53102012-03-22 23:25:07 +00001911 Arg = Builder.CreateBitCast(Arg, AdjTy);
1912
Chris Lattner44def072009-04-26 07:16:29 +00001913 if (Info.allowsRegister())
Anders Carlsson9f2505b2009-01-11 21:23:27 +00001914 InOutConstraints += llvm::utostr(i);
1915 else
1916 InOutConstraints += OutputConstraint;
Anders Carlsson2763b3a2009-01-11 19:46:50 +00001917
Anders Carlssonfca93612009-08-04 18:18:36 +00001918 InOutArgTypes.push_back(Arg->getType());
1919 InOutArgs.push_back(Arg);
Anders Carlssonf39a4212008-02-05 20:01:53 +00001920 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001921 }
Mike Stump1eb44332009-09-09 15:08:12 +00001922
Stephen Hines176edba2014-12-01 14:53:08 -08001923 // If this is a Microsoft-style asm blob, store the return registers (EAX:EDX)
1924 // to the return value slot. Only do this when returning in registers.
1925 if (isa<MSAsmStmt>(&S)) {
1926 const ABIArgInfo &RetAI = CurFnInfo->getReturnInfo();
1927 if (RetAI.isDirect() || RetAI.isExtend()) {
1928 // Make a fake lvalue for the return value slot.
1929 LValue ReturnSlot = MakeAddrLValue(ReturnValue, FnRetTy);
1930 CGM.getTargetCodeGenInfo().addReturnRegisterOutputs(
1931 *this, ReturnSlot, Constraints, ResultRegTypes, ResultTruncRegTypes,
1932 ResultRegDests, AsmString, S.getNumOutputs());
1933 SawAsmBlock = true;
1934 }
1935 }
Mike Stump1eb44332009-09-09 15:08:12 +00001936
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001937 for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
1938 const Expr *InputExpr = S.getInputExpr(i);
1939
Chris Lattner481fef92009-05-03 07:05:00 +00001940 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
1941
Chris Lattnerede9d902009-05-03 07:53:25 +00001942 if (!Constraints.empty())
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001943 Constraints += ',';
Mike Stump1eb44332009-09-09 15:08:12 +00001944
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001945 // Simplify the input constraint.
Chris Lattner481fef92009-05-03 07:05:00 +00001946 std::string InputConstraint(S.getInputConstraint(i));
John McCall64aa4b32013-04-16 22:48:15 +00001947 InputConstraint = SimplifyConstraint(InputConstraint.c_str(), getTarget(),
Chris Lattner2819fa82009-04-26 17:57:12 +00001948 &OutputConstraintInfos);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001949
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001950 InputConstraint =
Rafael Espindola03117d12011-01-01 21:12:33 +00001951 AddVariableConstraints(InputConstraint,
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001952 *InputExpr->IgnoreParenNoopCasts(getContext()),
John McCall64aa4b32013-04-16 22:48:15 +00001953 getTarget(), CGM, S);
Rafael Espindola0ec89f92010-12-30 22:59:32 +00001954
Chad Rosier42b60552012-08-23 20:00:18 +00001955 llvm::Value *Arg = EmitAsmInput(Info, InputExpr, Constraints);
Mike Stump1eb44332009-09-09 15:08:12 +00001956
Chris Lattner4df4ee02009-05-03 07:27:51 +00001957 // If this input argument is tied to a larger output result, extend the
1958 // input to be the same size as the output. The LLVM backend wants to see
1959 // the input and output of a matching constraint be the same size. Note
1960 // that GCC does not define what the top bits are here. We use zext because
1961 // that is usually cheaper, but LLVM IR should really get an anyext someday.
1962 if (Info.hasTiedOperand()) {
1963 unsigned Output = Info.getTiedOperand();
Chris Lattneraab64d02010-04-23 17:27:29 +00001964 QualType OutputType = S.getOutputExpr(Output)->getType();
Chris Lattner4df4ee02009-05-03 07:27:51 +00001965 QualType InputTy = InputExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001966
Chris Lattneraab64d02010-04-23 17:27:29 +00001967 if (getContext().getTypeSize(OutputType) >
Chris Lattner4df4ee02009-05-03 07:27:51 +00001968 getContext().getTypeSize(InputTy)) {
1969 // Use ptrtoint as appropriate so that we can do our extension.
1970 if (isa<llvm::PointerType>(Arg->getType()))
Chris Lattner77b89b82010-06-27 07:15:29 +00001971 Arg = Builder.CreatePtrToInt(Arg, IntPtrTy);
Chris Lattner2acc6e32011-07-18 04:24:23 +00001972 llvm::Type *OutputTy = ConvertType(OutputType);
Chris Lattneraab64d02010-04-23 17:27:29 +00001973 if (isa<llvm::IntegerType>(OutputTy))
1974 Arg = Builder.CreateZExt(Arg, OutputTy);
Peter Collingbourne93f13222011-07-29 00:24:50 +00001975 else if (isa<llvm::PointerType>(OutputTy))
1976 Arg = Builder.CreateZExt(Arg, IntPtrTy);
1977 else {
1978 assert(OutputTy->isFloatingPointTy() && "Unexpected output type");
Chris Lattneraab64d02010-04-23 17:27:29 +00001979 Arg = Builder.CreateFPExt(Arg, OutputTy);
Peter Collingbourne93f13222011-07-29 00:24:50 +00001980 }
Chris Lattner4df4ee02009-05-03 07:27:51 +00001981 }
1982 }
Bill Wendlingacb53102012-03-22 23:25:07 +00001983 if (llvm::Type* AdjTy =
Peter Collingbourne4b93d662011-02-19 23:03:58 +00001984 getTargetHooks().adjustInlineAsmType(*this, InputConstraint,
1985 Arg->getType()))
Dale Johannesenf6e2c202010-10-29 23:12:32 +00001986 Arg = Builder.CreateBitCast(Arg, AdjTy);
Tim Northover1bea6532013-06-07 00:04:50 +00001987 else
1988 CGM.getDiags().Report(S.getAsmLoc(), diag::err_asm_invalid_type_in_input)
1989 << InputExpr->getType() << InputConstraint;
Mike Stump1eb44332009-09-09 15:08:12 +00001990
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00001991 ArgTypes.push_back(Arg->getType());
1992 Args.push_back(Arg);
1993 Constraints += InputConstraint;
1994 }
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Anders Carlssonf39a4212008-02-05 20:01:53 +00001996 // Append the "input" part of inout constraints last.
1997 for (unsigned i = 0, e = InOutArgs.size(); i != e; i++) {
1998 ArgTypes.push_back(InOutArgTypes[i]);
1999 Args.push_back(InOutArgs[i]);
2000 }
2001 Constraints += InOutConstraints;
Mike Stump1eb44332009-09-09 15:08:12 +00002002
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002003 // Clobbers
2004 for (unsigned i = 0, e = S.getNumClobbers(); i != e; i++) {
Chad Rosier33f05582012-08-27 23:47:56 +00002005 StringRef Clobber = S.getClobber(i);
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002006
Eric Christopherde31fd72011-06-28 18:20:53 +00002007 if (Clobber != "memory" && Clobber != "cc")
Stephen Hines176edba2014-12-01 14:53:08 -08002008 Clobber = getTarget().getNormalizedGCCRegisterName(Clobber);
Mike Stump1eb44332009-09-09 15:08:12 +00002009
Stephen Hines176edba2014-12-01 14:53:08 -08002010 if (!Constraints.empty())
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002011 Constraints += ',';
Mike Stump1eb44332009-09-09 15:08:12 +00002012
Anders Carlssonea041752008-02-06 00:11:32 +00002013 Constraints += "~{";
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002014 Constraints += Clobber;
Anders Carlssonea041752008-02-06 00:11:32 +00002015 Constraints += '}';
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002016 }
Mike Stump1eb44332009-09-09 15:08:12 +00002017
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002018 // Add machine specific clobbers
John McCall64aa4b32013-04-16 22:48:15 +00002019 std::string MachineClobbers = getTarget().getClobbers();
Eli Friedmanccf614c2008-12-21 01:15:32 +00002020 if (!MachineClobbers.empty()) {
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002021 if (!Constraints.empty())
2022 Constraints += ',';
Eli Friedmanccf614c2008-12-21 01:15:32 +00002023 Constraints += MachineClobbers;
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002024 }
Anders Carlssonbad3a942009-05-01 00:16:04 +00002025
Chris Lattner2acc6e32011-07-18 04:24:23 +00002026 llvm::Type *ResultType;
Chris Lattnera077b5c2009-05-03 08:21:20 +00002027 if (ResultRegTypes.empty())
Chris Lattner8b418682012-02-07 00:39:47 +00002028 ResultType = VoidTy;
Chris Lattnera077b5c2009-05-03 08:21:20 +00002029 else if (ResultRegTypes.size() == 1)
2030 ResultType = ResultRegTypes[0];
Anders Carlssonbad3a942009-05-01 00:16:04 +00002031 else
John McCalld16c2cf2011-02-08 08:22:06 +00002032 ResultType = llvm::StructType::get(getLLVMContext(), ResultRegTypes);
Mike Stump1eb44332009-09-09 15:08:12 +00002033
Chris Lattner2acc6e32011-07-18 04:24:23 +00002034 llvm::FunctionType *FTy =
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002035 llvm::FunctionType::get(ResultType, ArgTypes, false);
Mike Stump1eb44332009-09-09 15:08:12 +00002036
Chad Rosier2ab7d432012-09-04 19:50:17 +00002037 bool HasSideEffect = S.isVolatile() || S.getNumOutputs() == 0;
Chad Rosierfcf75a32012-09-05 19:01:07 +00002038 llvm::InlineAsm::AsmDialect AsmDialect = isa<MSAsmStmt>(&S) ?
2039 llvm::InlineAsm::AD_Intel : llvm::InlineAsm::AD_ATT;
Mike Stump1eb44332009-09-09 15:08:12 +00002040 llvm::InlineAsm *IA =
Chad Rosier790cbd82012-09-04 23:08:24 +00002041 llvm::InlineAsm::get(FTy, AsmString, Constraints, HasSideEffect,
Chad Rosierfcf75a32012-09-05 19:01:07 +00002042 /* IsAlignStack */ false, AsmDialect);
Jay Foad4c7d9f12011-07-15 08:37:34 +00002043 llvm::CallInst *Result = Builder.CreateCall(IA, Args);
Bill Wendling785b7782012-12-07 23:17:26 +00002044 Result->addAttribute(llvm::AttributeSet::FunctionIndex,
Peter Collingbourne15e05e92013-03-02 01:20:22 +00002045 llvm::Attribute::NoUnwind);
Mike Stump1eb44332009-09-09 15:08:12 +00002046
Chris Lattnerfc1a9c32010-04-07 05:46:54 +00002047 // Slap the source location of the inline asm into a !srcloc metadata on the
Stephen Hines176edba2014-12-01 14:53:08 -08002048 // call.
2049 if (const GCCAsmStmt *gccAsmStmt = dyn_cast<GCCAsmStmt>(&S)) {
Chad Rosiera23b91d2012-08-28 18:54:39 +00002050 Result->setMetadata("srcloc", getAsmSrcLocInfo(gccAsmStmt->getAsmString(),
2051 *this));
Stephen Hines176edba2014-12-01 14:53:08 -08002052 } else {
2053 // At least put the line number on MS inline asm blobs.
2054 auto Loc = llvm::ConstantInt::get(Int32Ty, S.getAsmLoc().getRawEncoding());
2055 Result->setMetadata("srcloc", llvm::MDNode::get(getLLVMContext(), Loc));
2056 }
Mike Stump1eb44332009-09-09 15:08:12 +00002057
Chris Lattnera077b5c2009-05-03 08:21:20 +00002058 // Extract all of the register value results from the asm.
2059 std::vector<llvm::Value*> RegResults;
2060 if (ResultRegTypes.size() == 1) {
2061 RegResults.push_back(Result);
Anders Carlssonbad3a942009-05-01 00:16:04 +00002062 } else {
Chris Lattnera077b5c2009-05-03 08:21:20 +00002063 for (unsigned i = 0, e = ResultRegTypes.size(); i != e; ++i) {
Anders Carlssonbad3a942009-05-01 00:16:04 +00002064 llvm::Value *Tmp = Builder.CreateExtractValue(Result, i, "asmresult");
Chris Lattnera077b5c2009-05-03 08:21:20 +00002065 RegResults.push_back(Tmp);
Anders Carlssonbad3a942009-05-01 00:16:04 +00002066 }
2067 }
Mike Stump1eb44332009-09-09 15:08:12 +00002068
Stephen Hines176edba2014-12-01 14:53:08 -08002069 assert(RegResults.size() == ResultRegTypes.size());
2070 assert(RegResults.size() == ResultTruncRegTypes.size());
2071 assert(RegResults.size() == ResultRegDests.size());
Chris Lattnera077b5c2009-05-03 08:21:20 +00002072 for (unsigned i = 0, e = RegResults.size(); i != e; ++i) {
2073 llvm::Value *Tmp = RegResults[i];
Mike Stump1eb44332009-09-09 15:08:12 +00002074
Chris Lattnera077b5c2009-05-03 08:21:20 +00002075 // If the result type of the LLVM IR asm doesn't match the result type of
2076 // the expression, do the conversion.
2077 if (ResultRegTypes[i] != ResultTruncRegTypes[i]) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00002078 llvm::Type *TruncTy = ResultTruncRegTypes[i];
Chad Rosier6f61ba22012-06-20 17:43:05 +00002079
Chris Lattneraab64d02010-04-23 17:27:29 +00002080 // Truncate the integer result to the right size, note that TruncTy can be
2081 // a pointer.
2082 if (TruncTy->isFloatingPointTy())
2083 Tmp = Builder.CreateFPTrunc(Tmp, TruncTy);
Dan Gohman2dca88f2010-04-24 04:55:02 +00002084 else if (TruncTy->isPointerTy() && Tmp->getType()->isIntegerTy()) {
Micah Villmow25a6a842012-10-08 16:25:52 +00002085 uint64_t ResSize = CGM.getDataLayout().getTypeSizeInBits(TruncTy);
John McCalld16c2cf2011-02-08 08:22:06 +00002086 Tmp = Builder.CreateTrunc(Tmp,
2087 llvm::IntegerType::get(getLLVMContext(), (unsigned)ResSize));
Chris Lattnera077b5c2009-05-03 08:21:20 +00002088 Tmp = Builder.CreateIntToPtr(Tmp, TruncTy);
Dan Gohman2dca88f2010-04-24 04:55:02 +00002089 } else if (Tmp->getType()->isPointerTy() && TruncTy->isIntegerTy()) {
Micah Villmow25a6a842012-10-08 16:25:52 +00002090 uint64_t TmpSize =CGM.getDataLayout().getTypeSizeInBits(Tmp->getType());
John McCalld16c2cf2011-02-08 08:22:06 +00002091 Tmp = Builder.CreatePtrToInt(Tmp,
2092 llvm::IntegerType::get(getLLVMContext(), (unsigned)TmpSize));
Dan Gohman2dca88f2010-04-24 04:55:02 +00002093 Tmp = Builder.CreateTrunc(Tmp, TruncTy);
2094 } else if (TruncTy->isIntegerTy()) {
2095 Tmp = Builder.CreateTrunc(Tmp, TruncTy);
Dale Johannesenf6e2c202010-10-29 23:12:32 +00002096 } else if (TruncTy->isVectorTy()) {
2097 Tmp = Builder.CreateBitCast(Tmp, TruncTy);
Chris Lattnera077b5c2009-05-03 08:21:20 +00002098 }
2099 }
Mike Stump1eb44332009-09-09 15:08:12 +00002100
John McCall545d9962011-06-25 02:11:03 +00002101 EmitStoreThroughLValue(RValue::get(Tmp), ResultRegDests[i]);
Chris Lattnera077b5c2009-05-03 08:21:20 +00002102 }
Anders Carlssonfb1aeb82008-02-05 16:35:33 +00002103}
Tareq A. Siraj051303c2013-04-16 18:53:08 +00002104
Stephen Hines176edba2014-12-01 14:53:08 -08002105LValue CodeGenFunction::InitCapturedStruct(const CapturedStmt &S) {
Ben Langmuir524387a2013-05-09 19:17:11 +00002106 const RecordDecl *RD = S.getCapturedRecordDecl();
Stephen Hines176edba2014-12-01 14:53:08 -08002107 QualType RecordTy = getContext().getRecordType(RD);
Ben Langmuir524387a2013-05-09 19:17:11 +00002108
2109 // Initialize the captured struct.
Stephen Hines176edba2014-12-01 14:53:08 -08002110 LValue SlotLV = MakeNaturalAlignAddrLValue(
2111 CreateMemTemp(RecordTy, "agg.captured"), RecordTy);
Ben Langmuir524387a2013-05-09 19:17:11 +00002112
2113 RecordDecl::field_iterator CurField = RD->field_begin();
2114 for (CapturedStmt::capture_init_iterator I = S.capture_init_begin(),
2115 E = S.capture_init_end();
2116 I != E; ++I, ++CurField) {
Stephen Hines176edba2014-12-01 14:53:08 -08002117 LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
2118 if (CurField->hasCapturedVLAType()) {
2119 auto VAT = CurField->getCapturedVLAType();
2120 EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
2121 } else {
2122 EmitInitializerForField(*CurField, LV, *I, None);
2123 }
Ben Langmuir524387a2013-05-09 19:17:11 +00002124 }
2125
2126 return SlotLV;
2127}
2128
2129/// Generate an outlined function for the body of a CapturedStmt, store any
2130/// captured variables into the captured struct, and call the outlined function.
2131llvm::Function *
2132CodeGenFunction::EmitCapturedStmt(const CapturedStmt &S, CapturedRegionKind K) {
Stephen Hines176edba2014-12-01 14:53:08 -08002133 LValue CapStruct = InitCapturedStruct(S);
Ben Langmuir524387a2013-05-09 19:17:11 +00002134
2135 // Emit the CapturedDecl
2136 CodeGenFunction CGF(CGM, true);
2137 CGF.CapturedStmtInfo = new CGCapturedStmtInfo(S, K);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002138 llvm::Function *F = CGF.GenerateCapturedStmtFunction(S);
Ben Langmuir524387a2013-05-09 19:17:11 +00002139 delete CGF.CapturedStmtInfo;
2140
2141 // Emit call to the helper function.
2142 EmitCallOrInvoke(F, CapStruct.getAddress());
2143
2144 return F;
2145}
2146
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002147llvm::Value *
2148CodeGenFunction::GenerateCapturedStmtArgument(const CapturedStmt &S) {
Stephen Hines176edba2014-12-01 14:53:08 -08002149 LValue CapStruct = InitCapturedStruct(S);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002150 return CapStruct.getAddress();
2151}
2152
Ben Langmuir524387a2013-05-09 19:17:11 +00002153/// Creates the outlined function for a CapturedStmt.
2154llvm::Function *
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002155CodeGenFunction::GenerateCapturedStmtFunction(const CapturedStmt &S) {
Ben Langmuir524387a2013-05-09 19:17:11 +00002156 assert(CapturedStmtInfo &&
2157 "CapturedStmtInfo should be set when generating the captured function");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002158 const CapturedDecl *CD = S.getCapturedDecl();
2159 const RecordDecl *RD = S.getCapturedRecordDecl();
2160 SourceLocation Loc = S.getLocStart();
2161 assert(CD->hasBody() && "missing CapturedDecl body");
Ben Langmuir524387a2013-05-09 19:17:11 +00002162
Ben Langmuir524387a2013-05-09 19:17:11 +00002163 // Build the argument list.
2164 ASTContext &Ctx = CGM.getContext();
2165 FunctionArgList Args;
2166 Args.append(CD->param_begin(), CD->param_end());
2167
2168 // Create the function declaration.
2169 FunctionType::ExtInfo ExtInfo;
2170 const CGFunctionInfo &FuncInfo =
Stephen Hines651f13c2014-04-23 16:59:28 -07002171 CGM.getTypes().arrangeFreeFunctionDeclaration(Ctx.VoidTy, Args, ExtInfo,
2172 /*IsVariadic=*/false);
Ben Langmuir524387a2013-05-09 19:17:11 +00002173 llvm::FunctionType *FuncLLVMTy = CGM.getTypes().GetFunctionType(FuncInfo);
2174
2175 llvm::Function *F =
2176 llvm::Function::Create(FuncLLVMTy, llvm::GlobalValue::InternalLinkage,
2177 CapturedStmtInfo->getHelperName(), &CGM.getModule());
2178 CGM.SetInternalFunctionAttributes(CD, F, FuncInfo);
2179
2180 // Generate the function.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002181 StartFunction(CD, Ctx.VoidTy, F, FuncInfo, Args,
2182 CD->getLocation(),
2183 CD->getBody()->getLocStart());
Ben Langmuir524387a2013-05-09 19:17:11 +00002184 // Set the context parameter in CapturedStmtInfo.
2185 llvm::Value *DeclPtr = LocalDeclMap[CD->getContextParam()];
2186 assert(DeclPtr && "missing context parameter for CapturedStmt");
2187 CapturedStmtInfo->setContextValue(Builder.CreateLoad(DeclPtr));
2188
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002189 // Initialize variable-length arrays.
Stephen Hines176edba2014-12-01 14:53:08 -08002190 LValue Base = MakeNaturalAlignAddrLValue(CapturedStmtInfo->getContextValue(),
2191 Ctx.getTagDeclType(RD));
2192 for (auto *FD : RD->fields()) {
2193 if (FD->hasCapturedVLAType()) {
2194 auto *ExprArg = EmitLoadOfLValue(EmitLValueForField(Base, FD),
2195 S.getLocStart()).getScalarVal();
2196 auto VAT = FD->getCapturedVLAType();
2197 VLASizeMap[VAT->getSizeExpr()] = ExprArg;
2198 }
2199 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002200
Ben Langmuir524387a2013-05-09 19:17:11 +00002201 // If 'this' is captured, load it into CXXThisValue.
2202 if (CapturedStmtInfo->isCXXThisExprCaptured()) {
2203 FieldDecl *FD = CapturedStmtInfo->getThisFieldDecl();
Stephen Hines176edba2014-12-01 14:53:08 -08002204 LValue ThisLValue = EmitLValueForField(Base, FD);
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002205 CXXThisValue = EmitLoadOfLValue(ThisLValue, Loc).getScalarVal();
Ben Langmuir524387a2013-05-09 19:17:11 +00002206 }
2207
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002208 PGO.assignRegionCounters(CD, F);
Ben Langmuir524387a2013-05-09 19:17:11 +00002209 CapturedStmtInfo->EmitBody(*this, CD->getBody());
2210 FinishFunction(CD->getBodyRBrace());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002211 PGO.emitInstrumentationData();
2212 PGO.destroyRegionCounters();
Ben Langmuir524387a2013-05-09 19:17:11 +00002213
2214 return F;
Tareq A. Siraj051303c2013-04-16 18:53:08 +00002215}