-
-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathstatements.cpp
1720 lines (1377 loc) · 54.4 KB
/
statements.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//===-- statements.cpp ----------------------------------------------------===//
//
// LDC – the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
#include "dmd/errors.h"
#include "dmd/expression.h"
#include "dmd/hdrgen.h"
#include "dmd/id.h"
#include "dmd/identifier.h"
#include "dmd/import.h"
#include "dmd/init.h"
#include "dmd/mangle.h"
#include "dmd/module.h"
#include "dmd/mtype.h"
#include "dmd/root/port.h"
#include "gen/abi.h"
#include "gen/arrays.h"
#include "gen/classes.h"
#include "gen/coverage.h"
#include "gen/dcompute/target.h"
#include "gen/dvalue.h"
#include "gen/funcgenstate.h"
#include "gen/functions.h"
#include "gen/irstate.h"
#include "gen/llvm.h"
#include "gen/llvmhelpers.h"
#include "gen/logger.h"
#include "gen/recursivevisitor.h"
#include "gen/runtime.h"
#include "gen/tollvm.h"
#include "ir/irfunction.h"
#include "ir/irmodule.h"
#include "llvm/IR/CFG.h"
#include "llvm/IR/InlineAsm.h"
#include <fstream>
#include <math.h>
#include <stdio.h>
//////////////////////////////////////////////////////////////////////////////
// FIXME: Integrate these functions
void GccAsmStatement_toIR(GccAsmStatement *stmt, IRState *irs);
void AsmStatement_toIR(InlineAsmStatement *stmt, IRState *irs);
void CompoundAsmStatement_toIR(CompoundAsmStatement *stmt, IRState *p);
//////////////////////////////////////////////////////////////////////////////
/// Used to check if a control-flow stmt body contains any label. A label
/// is considered anything that lets us jump inside the body _apart from_
/// the stmt. That includes case / default statements.
/// It is a StoppableVisitor that stops when a label is found.
/// It's to be passed in a ContainsLabelWalker which recursively
/// walks the tree and updates our `inside_switch` flag accordingly.
struct ContainsLabelVisitor : public StoppableVisitor {
// If RecursiveWalker finds a SwitchStatement,
// `insideSwitch` points to that statement.
SwitchStatement *insideSwitch = nullptr;
using StoppableVisitor::visit;
void visit(Statement *stmt) override {}
void visit(LabelStatement *stmt) override { stop = true; }
void visit(CaseStatement *stmt) override {
if (insideSwitch == nullptr)
stop = true;
}
void visit(DefaultStatement *stmt) override {
if (insideSwitch == nullptr)
stop = true;
}
bool foundLabel() { return stop; }
void visit(Declaration *) override {}
void visit(Initializer *) override {}
void visit(Dsymbol *) override {}
void visit(Expression *) override {}
};
/// As the RecursiveWalker, but it gets a ContainsLabelVisitor
/// and updates its `insideSwitch` field accordingly.
class ContainsLabelWalker : public RecursiveWalker {
public:
using RecursiveWalker::visit;
explicit ContainsLabelWalker(ContainsLabelVisitor *visitor,
bool _continueAfterStop = true)
: RecursiveWalker(visitor, _continueAfterStop) {}
void visit(SwitchStatement *stmt) override {
ContainsLabelVisitor *ev = static_cast<ContainsLabelVisitor *>(v);
SwitchStatement *save = ev->insideSwitch;
ev->insideSwitch = stmt;
RecursiveWalker::visit(stmt);
ev->insideSwitch = save;
}
void visit(Expression *) override {}
};
class ToIRVisitor : public Visitor {
IRState *irs;
public:
explicit ToIRVisitor(IRState *irs) : irs(irs) {}
//////////////////////////////////////////////////////////////////////////
// Import all functions from class Visitor
using Visitor::visit;
//////////////////////////////////////////////////////////////////////////
void visit(CompoundStatement *stmt) override {
IF_LOG Logger::println("CompoundStatement::toIR(): %s",
stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
for (auto s : *stmt->statements) {
if (s) {
s->accept(this);
}
}
}
//////////////////////////////////////////////////////////////////////////
void visit(ReturnStatement *stmt) override {
IF_LOG Logger::println("ReturnStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
// emit dwarf stop point
irs->DBuilder.EmitStopPoint(stmt->loc);
emitCoverageLinecountInc(stmt->loc);
// The LLVM value to return, or null for void returns.
LLValue *returnValue = nullptr;
auto &funcGen = irs->funcGen();
IrFunction *const f = &funcGen.irFunc;
FuncDeclaration *const fd = f->decl;
llvm::FunctionType *funcType = f->getLLVMFuncType();
emitInstrumentationFnLeave(fd);
const auto cleanupScopeBeforeExpression =
funcGen.scopes.currentCleanupScope();
// is there a return value expression?
const bool isMainFunc = isAnyMainFunction(fd);
if (stmt->exp || isMainFunc) {
// We clean up manually (*not* using toElemDtor) as the expression might
// be an lvalue pointing into a temporary, and we may need a load. So we
// need to make sure to destruct any temporaries after all of that.
if (!stmt->exp) {
// implicitly return 0 for the main function
returnValue = LLConstant::getNullValue(funcType->getReturnType());
} else if (f->type->next->toBasetype()->ty == Tvoid && !isMainFunc) {
// evaluate expression for side effects
assert(stmt->exp->type->toBasetype()->ty == Tvoid);
toElem(stmt->exp);
} else if (funcType->getReturnType()->isVoidTy()) {
// if the IR function's return type is void (but not the D one), it uses
// sret
assert(!f->type->isref);
LLValue *sretPointer = f->sretArg;
assert(sretPointer);
assert(!f->irFty.arg_sret->rewrite &&
"ABI shouldn't have to rewrite sret returns");
DLValue returnValue(f->type->next, sretPointer);
// try to construct the return value in-place
const bool constructed = toInPlaceConstruction(&returnValue, stmt->exp);
if (!constructed) {
DValue *e = toElem(stmt->exp);
// store the return value unless NRVO already used the sret pointer
if (!e->isLVal() || DtoLVal(e) != sretPointer) {
// call postblit if the expression is a D lvalue
// exceptions: NRVO and special __result variable (out contracts)
bool doPostblit = !(fd->nrvo_can && fd->nrvo_var);
if (doPostblit) {
if (auto ve = stmt->exp->isVarExp())
if (ve->var->isResult())
doPostblit = false;
}
DtoAssign(stmt->loc, &returnValue, e, TOKblit);
if (doPostblit)
callPostblit(stmt->loc, stmt->exp, sretPointer);
}
}
} else {
// the return type is not void, so this is a normal "register" return
if (stmt->exp->op == TOKnull) {
stmt->exp->type = f->type->next;
}
DValue *dval = nullptr;
// call postblit if necessary
if (!f->type->isref) {
dval = toElem(stmt->exp);
LLValue *vthis =
(DtoIsInMemoryOnly(dval->type) ? DtoLVal(dval) : DtoRVal(dval));
callPostblit(stmt->loc, stmt->exp, vthis);
} else {
Expression *ae = stmt->exp;
dval = toElem(ae);
}
// do abi specific transformations on the return value
returnValue = getIrFunc(fd)->irFty.putRet(dval);
// Hack around LDC assuming structs and static arrays are in memory:
// If the function returns a struct or a static array, and the return
// value is a pointer to a struct or a static array, load from it
// before returning.
if (returnValue->getType() != funcType->getReturnType() &&
DtoIsInMemoryOnly(f->type->next) &&
isaPointer(returnValue->getType())) {
Logger::println("Loading value for return");
returnValue = DtoLoad(returnValue);
}
// can happen for classes
if (returnValue->getType() != funcType->getReturnType()) {
returnValue =
irs->ir->CreateBitCast(returnValue, funcType->getReturnType());
IF_LOG Logger::cout()
<< "return value after cast: " << *returnValue << '\n';
}
}
} else {
// no return value expression means it's a void function.
assert(funcType->getReturnType()->isVoidTy());
}
// If there are no cleanups to run, we try to keep the IR simple and
// just directly emit the return instruction. If there are cleanups to run
// first, we need to store the return value to a stack slot, in which case
// we can use a shared return bb for all these cases.
const bool useRetValSlot = funcGen.scopes.currentCleanupScope() != 0;
const bool sharedRetBlockExists = !!funcGen.retBlock;
if (useRetValSlot) {
if (!sharedRetBlockExists) {
funcGen.retBlock = irs->insertBB("return");
if (returnValue) {
funcGen.retValSlot =
DtoRawAlloca(returnValue->getType(), 0, "return.slot");
}
}
// Create the store to the slot at the end of our current basic
// block, before we run the cleanups.
if (returnValue) {
irs->ir->CreateStore(returnValue, funcGen.retValSlot);
}
// Now run the cleanups.
funcGen.scopes.runCleanups(0, funcGen.retBlock);
// Pop the cleanups pushed during evaluation of the return expression.
funcGen.scopes.popCleanups(cleanupScopeBeforeExpression);
irs->scope() = IRScope(funcGen.retBlock);
}
// If we need to emit the actual return instruction, do so.
if (!useRetValSlot || !sharedRetBlockExists) {
if (returnValue) {
// Hack: the frontend generates 'return 0;' as last statement of
// 'void main()'. But the debug location is missing. Use the end
// of function as debug location.
if (isAnyMainFunction(fd) && !stmt->loc.linnum) {
irs->DBuilder.EmitStopPoint(fd->endloc);
}
irs->ir->CreateRet(useRetValSlot ? DtoLoad(funcGen.retValSlot)
: returnValue);
} else {
irs->ir->CreateRetVoid();
}
}
// Finally, create a new predecessor-less dummy bb as the current IRScope
// to make sure we do not emit any extra instructions after the terminating
// instruction (ret or branch to return bb), which would be illegal IR.
irs->scope() = IRScope(irs->insertBB("dummy.afterreturn"));
}
//////////////////////////////////////////////////////////////////////////
void visit(ExpStatement *stmt) override {
IF_LOG Logger::println("ExpStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
// emit dwarf stop point
irs->DBuilder.EmitStopPoint(stmt->loc);
if (auto e = stmt->exp) {
if (e->hasCode())
emitCoverageLinecountInc(stmt->loc);
DValue *elem;
// a cast(void) around the expression is allowed, but doesn't require any
// code
if (e->op == TOKcast && e->type == Type::tvoid) {
elem = toElemDtor(static_cast<CastExp *>(e)->e1);
} else {
elem = toElemDtor(e);
}
delete elem;
}
}
//////////////////////////////////////////////////////////////////////////
bool dcomputeReflectMatches(CallExp *ce) {
auto arg1 = (DComputeTarget::ID)(*ce->arguments)[0]->toInteger();
auto arg2 = (*ce->arguments)[1]->toInteger();
auto dct = irs->dcomputetarget;
if (!dct) {
return arg1 == DComputeTarget::Host;
} else {
return arg1 == dct->target &&
(!arg2 || arg2 == static_cast<dinteger_t>(dct->tversion));
}
}
//////////////////////////////////////////////////////////////////////////
bool containsLabel(Statement *stmt) {
if (!stmt)
return false;
ContainsLabelVisitor labelChecker;
ContainsLabelWalker walker(&labelChecker, false);
stmt->accept(&walker);
return labelChecker.foundLabel();
}
//////////////////////////////////////////////////////////////////////////
void visit(IfStatement *stmt) override {
IF_LOG Logger::println("IfStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
auto truecount = PGO.getRegionCount(stmt);
auto elsecount = PGO.getCurrentRegionCount() - truecount;
auto brweights = PGO.createProfileWeights(truecount, elsecount);
// start a dwarf lexical block
irs->DBuilder.EmitBlockStart(stmt->loc);
emitCoverageLinecountInc(stmt->loc);
// This is a (dirty) hack to get codegen time conditional
// compilation, on account of the fact that we are trying
// to target multiple backends "simultaneously" with one
// pass through the front end, to have a single "static"
// context.
if (auto ce = stmt->condition->isCallExp()) {
if (ce->f && ce->f->ident == Id::dcReflect) {
if (dcomputeReflectMatches(ce))
stmt->ifbody->accept(this);
else if (stmt->elsebody)
stmt->elsebody->accept(this);
return;
}
}
DValue *cond_e = toElemDtor(stmt->condition);
LLValue *cond_val = DtoRVal(cond_e);
// Is it constant?
if (LLConstant *const_val = llvm::dyn_cast<LLConstant>(cond_val)) {
Statement *executed = stmt->ifbody;
Statement *skipped = stmt->elsebody;
if (const_val->isZeroValue()) {
std::swap(executed, skipped);
}
if (!containsLabel(skipped)) {
IF_LOG Logger::println("Constant true/false condition - elide.");
if (executed) {
irs->DBuilder.EmitBlockStart(executed->loc);
}
// True condition, the branch is taken so emit counter increment.
if (!const_val->isZeroValue()) {
PGO.emitCounterIncrement(stmt);
}
if (executed) {
executed->accept(this);
irs->DBuilder.EmitBlockEnd();
}
// end the dwarf lexical block
irs->DBuilder.EmitBlockEnd();
return;
}
}
llvm::BasicBlock *ifbb = irs->insertBB("if");
llvm::BasicBlock *endbb = irs->insertBBAfter(ifbb, "endif");
llvm::BasicBlock *elsebb =
stmt->elsebody ? irs->insertBBAfter(ifbb, "else") : endbb;
if (cond_val->getType() != LLType::getInt1Ty(irs->context())) {
IF_LOG Logger::cout() << "if conditional: " << *cond_val << '\n';
cond_val = DtoRVal(DtoCast(stmt->loc, cond_e, Type::tbool));
}
auto brinstr =
llvm::BranchInst::Create(ifbb, elsebb, cond_val, irs->scopebb());
PGO.addBranchWeights(brinstr, brweights);
// replace current scope
irs->scope() = IRScope(ifbb);
// do scoped statements
if (stmt->ifbody) {
irs->DBuilder.EmitBlockStart(stmt->ifbody->loc);
PGO.emitCounterIncrement(stmt);
stmt->ifbody->accept(this);
irs->DBuilder.EmitBlockEnd();
}
if (!irs->scopereturned()) {
llvm::BranchInst::Create(endbb, irs->scopebb());
}
if (stmt->elsebody) {
irs->scope() = IRScope(elsebb);
irs->DBuilder.EmitBlockStart(stmt->elsebody->loc);
stmt->elsebody->accept(this);
if (!irs->scopereturned()) {
llvm::BranchInst::Create(endbb, irs->scopebb());
}
irs->DBuilder.EmitBlockEnd();
}
// end the dwarf lexical block
irs->DBuilder.EmitBlockEnd();
// rewrite the scope
irs->scope() = IRScope(endbb);
}
//////////////////////////////////////////////////////////////////////////
void visit(ScopeStatement *stmt) override {
IF_LOG Logger::println("ScopeStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
if (stmt->statement) {
irs->DBuilder.EmitBlockStart(stmt->statement->loc);
stmt->statement->accept(this);
irs->DBuilder.EmitBlockEnd();
}
}
//////////////////////////////////////////////////////////////////////////
void visit(WhileStatement *stmt) override {
IF_LOG Logger::println("WhileStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
// start a dwarf lexical block
irs->DBuilder.EmitBlockStart(stmt->loc);
// create while blocks
llvm::BasicBlock *whilebb = irs->insertBB("whilecond");
llvm::BasicBlock *whilebodybb = irs->insertBBAfter(whilebb, "whilebody");
llvm::BasicBlock *endbb = irs->insertBBAfter(whilebodybb, "endwhile");
// move into the while block
irs->ir->CreateBr(whilebb);
// replace current scope
irs->scope() = IRScope(whilebb);
// create the condition
emitCoverageLinecountInc(stmt->condition->loc);
DValue *cond_e = toElemDtor(stmt->condition);
LLValue *cond_val = DtoRVal(DtoCast(stmt->loc, cond_e, Type::tbool));
delete cond_e;
// conditional branch
auto branchinst =
llvm::BranchInst::Create(whilebodybb, endbb, cond_val, irs->scopebb());
{
auto loopcount = PGO.getRegionCount(stmt);
auto brweights =
PGO.createProfileWeightsWhileLoop(stmt->condition, loopcount);
PGO.addBranchWeights(branchinst, brweights);
}
// rewrite scope
irs->scope() = IRScope(whilebodybb);
// while body code
irs->funcGen().jumpTargets.pushLoopTarget(stmt, whilebb, endbb);
PGO.emitCounterIncrement(stmt);
if (stmt->_body) {
stmt->_body->accept(this);
}
irs->funcGen().jumpTargets.popLoopTarget();
// loop
if (!irs->scopereturned()) {
llvm::BranchInst::Create(whilebb, irs->scopebb());
}
// rewrite the scope
irs->scope() = IRScope(endbb);
// end the dwarf lexical block
irs->DBuilder.EmitBlockEnd();
}
//////////////////////////////////////////////////////////////////////////
void visit(DoStatement *stmt) override {
IF_LOG Logger::println("DoStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
auto entryCount = PGO.setCurrentStmt(stmt);
// start a dwarf lexical block
irs->DBuilder.EmitBlockStart(stmt->loc);
// create while blocks
llvm::BasicBlock *dowhilebb = irs->insertBB("dowhile");
llvm::BasicBlock *condbb = irs->insertBBAfter(dowhilebb, "dowhilecond");
llvm::BasicBlock *endbb = irs->insertBBAfter(condbb, "enddowhile");
// move into the while block
assert(!irs->scopereturned());
llvm::BranchInst::Create(dowhilebb, irs->scopebb());
// replace current scope
irs->scope() = IRScope(dowhilebb);
// do-while body code
irs->funcGen().jumpTargets.pushLoopTarget(stmt, condbb, endbb);
PGO.emitCounterIncrement(stmt);
if (stmt->_body) {
stmt->_body->accept(this);
}
irs->funcGen().jumpTargets.popLoopTarget();
// branch to condition block
llvm::BranchInst::Create(condbb, irs->scopebb());
irs->scope() = IRScope(condbb);
// create the condition
emitCoverageLinecountInc(stmt->condition->loc);
DValue *cond_e = toElemDtor(stmt->condition);
LLValue *cond_val = DtoRVal(DtoCast(stmt->loc, cond_e, Type::tbool));
delete cond_e;
// conditional branch
auto branchinst =
llvm::BranchInst::Create(dowhilebb, endbb, cond_val, irs->scopebb());
{
// The region counter includes fallthrough from the previous statement.
// Subtract parent count to get the true branch count of the loop
// conditional.
auto loopcount = PGO.getRegionCount(stmt) - entryCount;
auto brweights =
PGO.createProfileWeightsWhileLoop(stmt->condition, loopcount);
PGO.addBranchWeights(branchinst, brweights);
}
// rewrite the scope
irs->scope() = IRScope(endbb);
// end the dwarf lexical block
irs->DBuilder.EmitBlockEnd();
}
//////////////////////////////////////////////////////////////////////////
void visit(ForStatement *stmt) override {
IF_LOG Logger::println("ForStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
// start new dwarf lexical block
irs->DBuilder.EmitBlockStart(stmt->loc);
// create for blocks
llvm::BasicBlock *forbb = irs->insertBB("forcond");
llvm::BasicBlock *forbodybb = irs->insertBBAfter(forbb, "forbody");
llvm::BasicBlock *forincbb = irs->insertBBAfter(forbodybb, "forinc");
llvm::BasicBlock *endbb = irs->insertBBAfter(forincbb, "endfor");
// init
if (stmt->_init != nullptr) {
stmt->_init->accept(this);
}
// move into the for condition block, ie. start the loop
assert(!irs->scopereturned());
llvm::BranchInst::Create(forbb, irs->scopebb());
// In case of loops that have been rewritten to a composite statement
// containing the initializers and then the actual loop, we need to
// register the former as target scope start.
Statement *scopeStart = stmt->getRelatedLabeled();
while (ScopeStatement *scope = scopeStart->isScopeStatement()) {
scopeStart = scope->statement;
}
irs->funcGen().jumpTargets.pushLoopTarget(scopeStart, forincbb, endbb);
// replace current scope
irs->scope() = IRScope(forbb);
// create the condition
llvm::Value *cond_val;
if (stmt->condition) {
emitCoverageLinecountInc(stmt->condition->loc);
DValue *cond_e = toElemDtor(stmt->condition);
cond_val = DtoRVal(DtoCast(stmt->loc, cond_e, Type::tbool));
delete cond_e;
} else {
cond_val = DtoConstBool(true);
}
// conditional branch
assert(!irs->scopereturned());
auto branchinst =
llvm::BranchInst::Create(forbodybb, endbb, cond_val, irs->scopebb());
{
auto brweights = PGO.createProfileWeightsForLoop(stmt);
PGO.addBranchWeights(branchinst, brweights);
}
// rewrite scope
irs->scope() = IRScope(forbodybb);
// do for body code
PGO.emitCounterIncrement(stmt);
if (stmt->_body) {
stmt->_body->accept(this);
}
// move into the for increment block
if (!irs->scopereturned()) {
llvm::BranchInst::Create(forincbb, irs->scopebb());
}
irs->scope() = IRScope(forincbb);
// increment
if (stmt->increment) {
emitCoverageLinecountInc(stmt->increment->loc);
DValue *inc = toElemDtor(stmt->increment);
delete inc;
}
// loop
if (!irs->scopereturned()) {
llvm::BranchInst::Create(forbb, irs->scopebb());
}
irs->funcGen().jumpTargets.popLoopTarget();
// rewrite the scope
irs->scope() = IRScope(endbb);
// end the dwarf lexical block
irs->DBuilder.EmitBlockEnd();
}
//////////////////////////////////////////////////////////////////////////
void visit(BreakStatement *stmt) override {
IF_LOG Logger::println("BreakStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
// don't emit two terminators in a row
// happens just before DMD generated default statements if the last case
// terminates
if (irs->scopereturned()) {
return;
}
// emit dwarf stop point
irs->DBuilder.EmitStopPoint(stmt->loc);
emitCoverageLinecountInc(stmt->loc);
if (stmt->ident) {
IF_LOG Logger::println("ident = %s", stmt->ident->toChars());
// Get the loop or break statement the label refers to
Statement *targetStatement = stmt->target->statement;
ScopeStatement *tmp;
while ((tmp = targetStatement->isScopeStatement())) {
targetStatement = tmp->statement;
}
irs->funcGen().jumpTargets.breakToStatement(targetStatement);
} else {
irs->funcGen().jumpTargets.breakToClosest();
}
// the break terminated this basicblock, start a new one
llvm::BasicBlock *bb = irs->insertBB("afterbreak");
irs->scope() = IRScope(bb);
}
//////////////////////////////////////////////////////////////////////////
void visit(ContinueStatement *stmt) override {
IF_LOG Logger::println("ContinueStatement::toIR(): %s",
stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
// emit dwarf stop point
irs->DBuilder.EmitStopPoint(stmt->loc);
emitCoverageLinecountInc(stmt->loc);
if (stmt->ident) {
IF_LOG Logger::println("ident = %s", stmt->ident->toChars());
// get the loop statement the label refers to
Statement *targetLoopStatement = stmt->target->statement;
ScopeStatement *tmp;
while ((tmp = targetLoopStatement->isScopeStatement())) {
targetLoopStatement = tmp->statement;
}
irs->funcGen().jumpTargets.continueWithLoop(targetLoopStatement);
} else {
irs->funcGen().jumpTargets.continueWithClosest();
}
// the continue terminated this basicblock, start a new one
llvm::BasicBlock *bb = irs->insertBB("aftercontinue");
irs->scope() = IRScope(bb);
}
//////////////////////////////////////////////////////////////////////////
void visit(ScopeGuardStatement *stmt) override {
stmt->error("Internal Compiler Error: ScopeGuardStatement should have been "
"lowered by frontend.");
fatal();
}
//////////////////////////////////////////////////////////////////////////
void visit(TryFinallyStatement *stmt) override {
IF_LOG Logger::println("TryFinallyStatement::toIR(): %s",
stmt->loc.toChars());
LOG_SCOPE;
auto &PGO = irs->funcGen().pgo;
/*auto entryCount = */ PGO.setCurrentStmt(stmt);
// emit dwarf stop point
irs->DBuilder.EmitStopPoint(stmt->loc);
// We only need to consider exception handling/cleanup issues if there
// is both a try and a finally block. If not, just directly emit what
// is present.
if (!stmt->_body || !stmt->finalbody) {
if (stmt->_body) {
irs->DBuilder.EmitBlockStart(stmt->_body->loc);
stmt->_body->accept(this);
irs->DBuilder.EmitBlockEnd();
} else if (stmt->finalbody) {
irs->DBuilder.EmitBlockStart(stmt->finalbody->loc);
stmt->finalbody->accept(this);
irs->DBuilder.EmitBlockEnd();
}
return;
}
// We'll append the "try" part to the current basic block later. No need
// for an extra one (we'd need to branch to it unconditionally anyway).
llvm::BasicBlock *trybb = irs->scopebb();
llvm::BasicBlock *finallybb = irs->insertBB("finally");
// Create a block to branch to after successfully running the try block
// and any cleanups.
llvm::BasicBlock *successbb =
irs->scopereturned() ? nullptr
: irs->insertBBAfter(finallybb, "try.success");
// Emit the finally block and set up the cleanup scope for it.
irs->scope() = IRScope(finallybb);
irs->DBuilder.EmitBlockStart(stmt->finalbody->loc);
stmt->finalbody->accept(this);
irs->DBuilder.EmitBlockEnd();
CleanupCursor cleanupBefore;
// For @compute code, don't emit any exception handling as there are no
// exceptions anyway.
const bool computeCode = !!irs->dcomputetarget;
if (!computeCode) {
cleanupBefore = irs->funcGen().scopes.currentCleanupScope();
irs->funcGen().scopes.pushCleanup(finallybb, irs->scopebb());
}
// Emit the try block.
irs->scope() = IRScope(trybb);
assert(stmt->_body);
irs->DBuilder.EmitBlockStart(stmt->_body->loc);
stmt->_body->accept(this);
irs->DBuilder.EmitBlockEnd();
if (successbb) {
if (!computeCode)
irs->funcGen().scopes.runCleanups(cleanupBefore, successbb);
irs->scope() = IRScope(successbb);
// PGO counter tracks the continuation of the try-finally statement
PGO.emitCounterIncrement(stmt);
}
if (!computeCode)
irs->funcGen().scopes.popCleanups(cleanupBefore);
}
//////////////////////////////////////////////////////////////////////////
void visit(TryCatchStatement *stmt) override {
IF_LOG Logger::println("TryCatchStatement::toIR(): %s",
stmt->loc.toChars());
LOG_SCOPE;
assert(!irs->dcomputetarget);
auto &PGO = irs->funcGen().pgo;
// Emit dwarf stop point
irs->DBuilder.EmitStopPoint(stmt->loc);
// We'll append the "try" part to the current basic block later. No need
// for an extra one (we'd need to branch to it unconditionally anyway).
llvm::BasicBlock *trybb = irs->scopebb();
// Create a basic block to branch to after leaving the try or an
// associated catch block successfully.
llvm::BasicBlock *endbb = irs->insertBB("try.success.or.caught");
irs->funcGen().scopes.pushTryCatch(stmt, endbb);
// Emit the try block.
irs->scope() = IRScope(trybb);
assert(stmt->_body);
irs->DBuilder.EmitBlockStart(stmt->_body->loc);
stmt->_body->accept(this);
irs->DBuilder.EmitBlockEnd();
if (!irs->scopereturned())
llvm::BranchInst::Create(endbb, irs->scopebb());
irs->funcGen().scopes.popTryCatch();
irs->scope() = IRScope(endbb);
// PGO counter tracks the continuation of the try statement
PGO.emitCounterIncrement(stmt);
}
//////////////////////////////////////////////////////////////////////////
void visit(ThrowStatement *stmt) override {
IF_LOG Logger::println("ThrowStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
assert(!irs->dcomputetarget);
auto &PGO = irs->funcGen().pgo;
PGO.setCurrentStmt(stmt);
// emit dwarf stop point
irs->DBuilder.EmitStopPoint(stmt->loc);
emitCoverageLinecountInc(stmt->loc);
assert(stmt->exp);
DValue *e = toElemDtor(stmt->exp);
llvm::Function *fn =
getRuntimeFunction(stmt->loc, irs->module, "_d_throw_exception");
LLValue *arg =
DtoBitCast(DtoRVal(e), fn->getFunctionType()->getParamType(0));
irs->CreateCallOrInvoke(fn, arg);
irs->ir->CreateUnreachable();
// TODO: Should not be needed.
llvm::BasicBlock *bb = irs->insertBB("afterthrow");
irs->scope() = IRScope(bb);
}
//////////////////////////////////////////////////////////////////////////
void visit(SwitchStatement *stmt) override {
IF_LOG Logger::println("SwitchStatement::toIR(): %s", stmt->loc.toChars());
LOG_SCOPE;
auto &funcGen = irs->funcGen();
auto &PGO = funcGen.pgo;
PGO.setCurrentStmt(stmt);
const auto incomingPGORegionCount = PGO.getCurrentRegionCount();
irs->DBuilder.EmitStopPoint(stmt->loc);
emitCoverageLinecountInc(stmt->loc);
llvm::BasicBlock *const oldbb = irs->scopebb();
// The cases of the switch statement, in codegen order.
auto cases = stmt->cases;
const auto caseCount = cases->length;
// llvm::Values for the case indices. Might not be llvm::Constants for
// runtime-initialised immutable globals as case indices, in which case we
// need to emit a `br` chain instead of `switch`.
llvm::SmallVector<llvm::Value *, 16> indices;
indices.reserve(caseCount);
bool useSwitchInst = true;
for (auto cs : *cases) {
// skip over casts
auto ce = cs->exp;
while (auto next = ce->isCastExp())
ce = next->e1;
if (auto ve = ce->isVarExp()) {
const auto vd = ve->var->isVarDeclaration();
if (vd && (!vd->_init || !vd->isConst())) {
indices.push_back(DtoRVal(toElemDtor(cs->exp)));
useSwitchInst = false;
continue;
}
}
indices.push_back(toConstElem(cs->exp, irs));
}
assert(indices.size() == caseCount);
// body block.
// FIXME: that block is never used
llvm::BasicBlock *bodybb = irs->insertBB("switchbody");
// end (break point)
llvm::BasicBlock *endbb = irs->insertBBAfter(bodybb, "switchend");
// default
auto defaultTargetBB = endbb;
if (stmt->sdefault) {
Logger::println("has default");
defaultTargetBB =
funcGen.switchTargets.getOrCreate(stmt->sdefault, "default", *irs);
}
// do switch body
assert(stmt->_body);
irs->scope() = IRScope(bodybb);
funcGen.jumpTargets.pushBreakTarget(stmt, endbb);
stmt->_body->accept(this);
funcGen.jumpTargets.popBreakTarget();
if (!irs->scopereturned()) {
llvm::BranchInst::Create(endbb, irs->scopebb());
}
irs->scope() = IRScope(oldbb);
if (useSwitchInst) {
// The case index value.
LLValue *condVal = DtoRVal(toElemDtor(stmt->condition));