forked from llvm/clangir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCIRGenExprScalar.cpp
2468 lines (2160 loc) · 93.5 KB
/
CIRGenExprScalar.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
//===--- CIRGenExprScalar.cpp - Emit CIR Code for Scalar Exprs ------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This contains code to emit Expr nodes with scalar CIR types as CIR code.
//
//===----------------------------------------------------------------------===//
#include "Address.h"
#include "CIRDataLayout.h"
#include "CIRGenFunction.h"
#include "CIRGenModule.h"
#include "CIRGenOpenMPRuntime.h"
#include "UnimplementedFeatureGuarding.h"
#include "clang/AST/StmtVisitor.h"
#include "clang/CIR/Dialect/IR/CIRAttrs.h"
#include "clang/CIR/Dialect/IR/CIRDialect.h"
#include "clang/CIR/Dialect/IR/CIROpsEnums.h"
#include "clang/CIR/Dialect/IR/CIRTypes.h"
#include "llvm/Support/ErrorHandling.h"
#include <cstdint>
#include "mlir/IR/BuiltinTypes.h"
#include "mlir/IR/Value.h"
using namespace cir;
using namespace clang;
namespace {
struct BinOpInfo {
mlir::Value LHS;
mlir::Value RHS;
SourceRange Loc;
QualType FullType; // Type of operands and result
QualType CompType; // Type used for computations. Element type
// for vectors, otherwise same as FullType.
BinaryOperator::Opcode Opcode; // Opcode of BinOp to perform
FPOptions FPFeatures;
const Expr *E; // Entire expr, for error unsupported. May not be binop.
/// Check if the binop computes a division or a remainder.
bool isDivremOp() const {
return Opcode == BO_Div || Opcode == BO_Rem || Opcode == BO_DivAssign ||
Opcode == BO_RemAssign;
}
/// Check if the binop can result in integer overflow.
bool mayHaveIntegerOverflow() const {
// Without constant input, we can't rule out overflow.
auto LHSCI = dyn_cast<mlir::cir::ConstantOp>(LHS.getDefiningOp());
auto RHSCI = dyn_cast<mlir::cir::ConstantOp>(RHS.getDefiningOp());
if (!LHSCI || !RHSCI)
return true;
llvm::APInt Result;
assert(!UnimplementedFeature::mayHaveIntegerOverflow());
llvm_unreachable("NYI");
return false;
}
/// Check if at least one operand is a fixed point type. In such cases,
/// this operation did not follow usual arithmetic conversion and both
/// operands might not be of the same type.
bool isFixedPointOp() const {
// We cannot simply check the result type since comparison operations
// return an int.
if (const auto *BinOp = llvm::dyn_cast<BinaryOperator>(E)) {
QualType LHSType = BinOp->getLHS()->getType();
QualType RHSType = BinOp->getRHS()->getType();
return LHSType->isFixedPointType() || RHSType->isFixedPointType();
}
if (const auto *UnOp = llvm::dyn_cast<UnaryOperator>(E))
return UnOp->getSubExpr()->getType()->isFixedPointType();
return false;
}
};
static bool PromotionIsPotentiallyEligibleForImplicitIntegerConversionCheck(
QualType SrcType, QualType DstType) {
return SrcType->isIntegerType() && DstType->isIntegerType();
}
class ScalarExprEmitter : public StmtVisitor<ScalarExprEmitter, mlir::Value> {
CIRGenFunction &CGF;
CIRGenBuilderTy &Builder;
bool IgnoreResultAssign;
public:
ScalarExprEmitter(CIRGenFunction &cgf, CIRGenBuilderTy &builder,
bool ira = false)
: CGF(cgf), Builder(builder), IgnoreResultAssign(ira) {}
//===--------------------------------------------------------------------===//
// Utilities
//===--------------------------------------------------------------------===//
bool TestAndClearIgnoreResultAssign() {
bool I = IgnoreResultAssign;
IgnoreResultAssign = false;
return I;
}
mlir::Type ConvertType(QualType T) { return CGF.ConvertType(T); }
LValue buildLValue(const Expr *E) { return CGF.buildLValue(E); }
LValue buildCheckedLValue(const Expr *E, CIRGenFunction::TypeCheckKind TCK) {
return CGF.buildCheckedLValue(E, TCK);
}
/// Emit a value that corresponds to null for the given type.
mlir::Value buildNullValue(QualType Ty, mlir::Location loc);
//===--------------------------------------------------------------------===//
// Visitor Methods
//===--------------------------------------------------------------------===//
mlir::Value Visit(Expr *E) {
return StmtVisitor<ScalarExprEmitter, mlir::Value>::Visit(E);
}
mlir::Value VisitStmt(Stmt *S) {
S->dump(llvm::errs(), CGF.getContext());
llvm_unreachable("Stmt can't have complex result type!");
}
mlir::Value VisitExpr(Expr *E) {
// Crashing here for "ScalarExprClassName"? Please implement
// VisitScalarExprClassName(...) to get this working.
emitError(CGF.getLoc(E->getExprLoc()), "scalar exp no implemented: '")
<< E->getStmtClassName() << "'";
llvm_unreachable("NYI");
return {};
}
mlir::Value VisitConstantExpr(ConstantExpr *E) { llvm_unreachable("NYI"); }
mlir::Value VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr()); }
mlir::Value
VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
return Visit(E->getReplacement());
}
mlir::Value VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
llvm_unreachable("NYI");
}
mlir::Value VisitCoawaitExpr(CoawaitExpr *S) {
return CGF.buildCoawaitExpr(*S).getScalarVal();
}
mlir::Value VisitCoyieldExpr(CoyieldExpr *S) { llvm_unreachable("NYI"); }
mlir::Value VisitUnaryCoawait(const UnaryOperator *E) {
llvm_unreachable("NYI");
}
// Leaves.
mlir::Value VisitIntegerLiteral(const IntegerLiteral *E) {
mlir::Type Ty = CGF.getCIRType(E->getType());
return Builder.create<mlir::cir::ConstantOp>(
CGF.getLoc(E->getExprLoc()), Ty,
Builder.getAttr<mlir::cir::IntAttr>(Ty, E->getValue()));
}
mlir::Value VisitFixedPointLiteral(const FixedPointLiteral *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitFloatingLiteral(const FloatingLiteral *E) {
mlir::Type Ty = CGF.getCIRType(E->getType());
assert(Ty.isa<mlir::cir::CIRFPTypeInterface>() &&
"expect floating-point type");
return Builder.create<mlir::cir::ConstantOp>(
CGF.getLoc(E->getExprLoc()), Ty,
Builder.getAttr<mlir::cir::FPAttr>(Ty, E->getValue()));
}
mlir::Value VisitCharacterLiteral(const CharacterLiteral *E) {
mlir::Type Ty = CGF.getCIRType(E->getType());
auto loc = CGF.getLoc(E->getExprLoc());
auto init = mlir::cir::IntAttr::get(Ty, E->getValue());
return Builder.create<mlir::cir::ConstantOp>(loc, Ty, init);
}
mlir::Value VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
mlir::Type Ty = CGF.getCIRType(E->getType());
return Builder.create<mlir::cir::ConstantOp>(
CGF.getLoc(E->getExprLoc()), Ty, Builder.getCIRBoolAttr(E->getValue()));
}
mlir::Value VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) {
if (E->getType()->isVoidType())
return nullptr;
return buildNullValue(E->getType(), CGF.getLoc(E->getSourceRange()));
}
mlir::Value VisitGNUNullExpr(const GNUNullExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitOffsetOfExpr(OffsetOfExpr *E) {
// Try folding the offsetof to a constant.
Expr::EvalResult EVResult;
if (E->EvaluateAsInt(EVResult, CGF.getContext())) {
llvm::APSInt Value = EVResult.Val.getInt();
return Builder.getConstInt(CGF.getLoc(E->getExprLoc()), Value);
}
llvm_unreachable("NYI");
}
mlir::Value VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
mlir::Value VisitAddrLabelExpr(const AddrLabelExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitSizeOfPackExpr(SizeOfPackExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitPseudoObjectExpr(PseudoObjectExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitSYCLUniqueStableNameExpr(SYCLUniqueStableNameExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitOpaqueValueExpr(OpaqueValueExpr *E) {
if (E->isGLValue())
llvm_unreachable("NYI");
// Otherwise, assume the mapping is the scalar directly.
return CGF.getOrCreateOpaqueRValueMapping(E).getScalarVal();
}
/// Emits the address of the l-value, then loads and returns the result.
mlir::Value buildLoadOfLValue(const Expr *E) {
LValue LV = CGF.buildLValue(E);
// FIXME: add some akin to EmitLValueAlignmentAssumption(E, V);
return CGF.buildLoadOfLValue(LV, E->getExprLoc()).getScalarVal();
}
mlir::Value buildLoadOfLValue(LValue LV, SourceLocation Loc) {
return CGF.buildLoadOfLValue(LV, Loc).getScalarVal();
}
// l-values
mlir::Value VisitDeclRefExpr(DeclRefExpr *E) {
if (CIRGenFunction::ConstantEmission Constant = CGF.tryEmitAsConstant(E)) {
return CGF.buildScalarConstant(Constant, E);
}
return buildLoadOfLValue(E);
}
mlir::Value VisitObjCSelectorExpr(ObjCSelectorExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitObjCProtocolExpr(ObjCProtocolExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitObjCIVarRefExpr(ObjCIvarRefExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitObjCMessageExpr(ObjCMessageExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitObjCIsaExpr(ObjCIsaExpr *E) { llvm_unreachable("NYI"); }
mlir::Value VisitObjCAvailabilityCheckExpr(ObjCAvailabilityCheckExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
// Do we need anything like TestAndClearIgnoreResultAssign()?
if (E->getBase()->getType()->isVectorType()) {
assert(!UnimplementedFeature::scalableVectors() &&
"NYI: index into scalable vector");
// Subscript of vector type. This is handled differently, with a custom
// operation.
mlir::Value VecValue = Visit(E->getBase());
mlir::Value IndexValue = Visit(E->getIdx());
return CGF.builder.create<mlir::cir::VecExtractOp>(
CGF.getLoc(E->getSourceRange()), VecValue, IndexValue);
}
// Just load the lvalue formed by the subscript expression.
return buildLoadOfLValue(E);
}
mlir::Value VisitMatrixSubscriptExpr(MatrixSubscriptExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitShuffleVectorExpr(ShuffleVectorExpr *E) {
if (E->getNumSubExprs() == 2) {
// The undocumented form of __builtin_shufflevector.
mlir::Value InputVec = Visit(E->getExpr(0));
mlir::Value IndexVec = Visit(E->getExpr(1));
return CGF.builder.create<mlir::cir::VecShuffleDynamicOp>(
CGF.getLoc(E->getSourceRange()), InputVec, IndexVec);
} else {
// The documented form of __builtin_shufflevector, where the indices are
// a variable number of integer constants. The constants will be stored
// in an ArrayAttr.
mlir::Value Vec1 = Visit(E->getExpr(0));
mlir::Value Vec2 = Visit(E->getExpr(1));
SmallVector<mlir::Attribute, 8> Indices;
for (unsigned i = 2; i < E->getNumSubExprs(); ++i) {
Indices.push_back(mlir::cir::IntAttr::get(
CGF.builder.getSInt64Ty(),
E->getExpr(i)
->EvaluateKnownConstInt(CGF.getContext())
.getSExtValue()));
}
return CGF.builder.create<mlir::cir::VecShuffleOp>(
CGF.getLoc(E->getSourceRange()), CGF.getCIRType(E->getType()), Vec1,
Vec2, CGF.builder.getArrayAttr(Indices));
}
}
mlir::Value VisitConvertVectorExpr(ConvertVectorExpr *E) {
// __builtin_convertvector is an element-wise cast, and is implemented as a
// regular cast. The back end handles casts of vectors correctly.
return buildScalarConversion(Visit(E->getSrcExpr()),
E->getSrcExpr()->getType(), E->getType(),
E->getSourceRange().getBegin());
}
mlir::Value VisitMemberExpr(MemberExpr *E);
mlir::Value VisitExtVectorelementExpr(Expr *E) { llvm_unreachable("NYI"); }
mlir::Value VisitCompoundLiteralEpxr(CompoundLiteralExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitInitListExpr(InitListExpr *E);
mlir::Value VisitArrayInitIndexExpr(ArrayInitIndexExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
return buildNullValue(E->getType(), CGF.getLoc(E->getSourceRange()));
}
mlir::Value VisitExplicitCastExpr(ExplicitCastExpr *E) {
return VisitCastExpr(E);
}
mlir::Value VisitCastExpr(CastExpr *E);
mlir::Value VisitCallExpr(const CallExpr *E);
mlir::Value VisitStmtExpr(StmtExpr *E) {
assert(!UnimplementedFeature::stmtExprEvaluation() && "NYI");
Address retAlloca =
CGF.buildCompoundStmt(*E->getSubStmt(), !E->getType()->isVoidType());
if (!retAlloca.isValid())
return {};
// FIXME(cir): This is a work around the ScopeOp builder. If we build the
// ScopeOp before its body, we would be able to create the retAlloca
// direclty in the parent scope removing the need to hoist it.
assert(retAlloca.getDefiningOp() && "expected a alloca op");
CGF.getBuilder().hoistAllocaToParentRegion(
cast<mlir::cir::AllocaOp>(retAlloca.getDefiningOp()));
return CGF.buildLoadOfScalar(CGF.makeAddrLValue(retAlloca, E->getType()),
E->getExprLoc());
}
// Unary Operators.
mlir::Value VisitUnaryPostDec(const UnaryOperator *E) {
LValue LV = buildLValue(E->getSubExpr());
return buildScalarPrePostIncDec(E, LV, false, false);
}
mlir::Value VisitUnaryPostInc(const UnaryOperator *E) {
LValue LV = buildLValue(E->getSubExpr());
return buildScalarPrePostIncDec(E, LV, true, false);
}
mlir::Value VisitUnaryPreDec(const UnaryOperator *E) {
LValue LV = buildLValue(E->getSubExpr());
return buildScalarPrePostIncDec(E, LV, false, true);
}
mlir::Value VisitUnaryPreInc(const UnaryOperator *E) {
LValue LV = buildLValue(E->getSubExpr());
return buildScalarPrePostIncDec(E, LV, true, true);
}
mlir::Value buildScalarPrePostIncDec(const UnaryOperator *E, LValue LV,
bool isInc, bool isPre) {
assert(!CGF.getLangOpts().OpenMP && "Not implemented");
QualType type = E->getSubExpr()->getType();
int amount = (isInc ? 1 : -1);
bool atomicPHI = false;
mlir::Value value{};
mlir::Value input{};
if (const AtomicType *atomicTy = type->getAs<AtomicType>()) {
llvm_unreachable("no atomics inc/dec yet");
} else {
value = buildLoadOfLValue(LV, E->getExprLoc());
input = value;
}
// NOTE: When possible, more frequent cases are handled first.
// Special case of integer increment that we have to check first: bool++.
// Due to promotion rules, we get:
// bool++ -> bool = bool + 1
// -> bool = (int)bool + 1
// -> bool = ((int)bool + 1 != 0)
// An interesting aspect of this is that increment is always true.
// Decrement does not have this property.
if (isInc && type->isBooleanType()) {
value = Builder.create<mlir::cir::ConstantOp>(
CGF.getLoc(E->getExprLoc()), CGF.getCIRType(type),
Builder.getCIRBoolAttr(true));
} else if (type->isIntegerType()) {
QualType promotedType;
bool canPerformLossyDemotionCheck = false;
if (CGF.getContext().isPromotableIntegerType(type)) {
promotedType = CGF.getContext().getPromotedIntegerType(type);
assert(promotedType != type && "Shouldn't promote to the same type.");
canPerformLossyDemotionCheck = true;
canPerformLossyDemotionCheck &=
CGF.getContext().getCanonicalType(type) !=
CGF.getContext().getCanonicalType(promotedType);
canPerformLossyDemotionCheck &=
PromotionIsPotentiallyEligibleForImplicitIntegerConversionCheck(
type, promotedType);
// TODO(cir): Currently, we store bitwidths in CIR types only for
// integers. This might also be required for other types.
auto srcCirTy = ConvertType(type).dyn_cast<mlir::cir::IntType>();
auto promotedCirTy = ConvertType(type).dyn_cast<mlir::cir::IntType>();
assert(srcCirTy && promotedCirTy && "Expected integer type");
assert(
(!canPerformLossyDemotionCheck ||
type->isSignedIntegerOrEnumerationType() ||
promotedType->isSignedIntegerOrEnumerationType() ||
srcCirTy.getWidth() == promotedCirTy.getWidth()) &&
"The following check expects that if we do promotion to different "
"underlying canonical type, at least one of the types (either "
"base or promoted) will be signed, or the bitwidths will match.");
}
if (CGF.SanOpts.hasOneOf(
SanitizerKind::ImplicitIntegerArithmeticValueChange) &&
canPerformLossyDemotionCheck) {
llvm_unreachable(
"perform lossy demotion case for inc/dec not implemented yet");
} else if (E->canOverflow() && type->isSignedIntegerOrEnumerationType()) {
value = buildIncDecConsiderOverflowBehavior(E, value, isInc);
} else if (E->canOverflow() && type->isUnsignedIntegerType() &&
CGF.SanOpts.has(SanitizerKind::UnsignedIntegerOverflow)) {
llvm_unreachable(
"unsigned integer overflow sanitized inc/dec not implemented");
} else {
auto Kind = E->isIncrementOp() ? mlir::cir::UnaryOpKind::Inc
: mlir::cir::UnaryOpKind::Dec;
// NOTE(CIR): clang calls CreateAdd but folds this to a unary op
value = buildUnaryOp(E, Kind, input);
}
// Next most common: pointer increment.
} else if (const PointerType *ptr = type->getAs<PointerType>()) {
QualType type = ptr->getPointeeType();
if (const VariableArrayType *vla =
CGF.getContext().getAsVariableArrayType(type)) {
// VLA types don't have constant size.
llvm_unreachable("NYI");
} else if (type->isFunctionType()) {
// Arithmetic on function pointers (!) is just +-1.
llvm_unreachable("NYI");
} else {
// For everything else, we can just do a simple increment.
auto loc = CGF.getLoc(E->getSourceRange());
auto &builder = CGF.getBuilder();
auto amt = builder.getSInt32(amount, loc);
if (CGF.getLangOpts().isSignedOverflowDefined()) {
value = builder.create<mlir::cir::PtrStrideOp>(loc, value.getType(),
value, amt);
} else {
value = builder.create<mlir::cir::PtrStrideOp>(loc, value.getType(),
value, amt);
assert(!UnimplementedFeature::emitCheckedInBoundsGEP());
}
}
} else if (type->isVectorType()) {
llvm_unreachable("no vector inc/dec yet");
} else if (type->isRealFloatingType()) {
auto isFloatOrDouble = type->isSpecificBuiltinType(BuiltinType::Float) ||
type->isSpecificBuiltinType(BuiltinType::Double);
assert(isFloatOrDouble && "Non-float/double NYI");
// Create the inc/dec operation.
auto kind =
(isInc ? mlir::cir::UnaryOpKind::Inc : mlir::cir::UnaryOpKind::Dec);
value = buildUnaryOp(E, kind, input);
} else if (type->isFixedPointType()) {
llvm_unreachable("no fixed point inc/dec yet");
} else {
assert(type->castAs<ObjCObjectPointerType>());
llvm_unreachable("no objc pointer type inc/dec yet");
}
if (atomicPHI) {
llvm_unreachable("NYI");
}
CIRGenFunction::SourceLocRAIIObject sourceloc{
CGF, CGF.getLoc(E->getSourceRange())};
// Store the updated result through the lvalue
if (LV.isBitField())
CGF.buildStoreThroughBitfieldLValue(RValue::get(value), LV, value);
else
CGF.buildStoreThroughLValue(RValue::get(value), LV);
// If this is a postinc, return the value read from memory, otherwise use
// the updated value.
return isPre ? value : input;
}
mlir::Value buildIncDecConsiderOverflowBehavior(const UnaryOperator *E,
mlir::Value InVal,
bool IsInc) {
// NOTE(CIR): The SignedOverflowBehavior is attached to the global ModuleOp
// and the nsw behavior is handled during lowering.
auto Kind = E->isIncrementOp() ? mlir::cir::UnaryOpKind::Inc
: mlir::cir::UnaryOpKind::Dec;
switch (CGF.getLangOpts().getSignedOverflowBehavior()) {
case LangOptions::SOB_Defined:
return buildUnaryOp(E, Kind, InVal);
case LangOptions::SOB_Undefined:
if (!CGF.SanOpts.has(SanitizerKind::SignedIntegerOverflow))
return buildUnaryOp(E, Kind, InVal);
llvm_unreachable(
"inc/dec overflow behavior SOB_Undefined not implemented yet");
break;
case LangOptions::SOB_Trapping:
if (!E->canOverflow())
return buildUnaryOp(E, Kind, InVal);
llvm_unreachable(
"inc/dec overflow behavior SOB_Trapping not implemented yet");
break;
}
}
mlir::Value VisitUnaryAddrOf(const UnaryOperator *E) {
if (llvm::isa<MemberPointerType>(E->getType()))
return CGF.CGM.buildMemberPointerConstant(E);
return CGF.buildLValue(E->getSubExpr()).getPointer();
}
mlir::Value VisitUnaryDeref(const UnaryOperator *E) {
if (E->getType()->isVoidType())
return Visit(E->getSubExpr()); // the actual value should be unused
return buildLoadOfLValue(E);
}
mlir::Value VisitUnaryPlus(const UnaryOperator *E) {
// NOTE(cir): QualType function parameter still not used, so don´t replicate
// it here yet.
QualType promotionTy = getPromotionType(E->getSubExpr()->getType());
auto result = VisitPlus(E, promotionTy);
if (result && !promotionTy.isNull())
assert(0 && "not implemented yet");
return buildUnaryOp(E, mlir::cir::UnaryOpKind::Plus, result);
}
mlir::Value VisitPlus(const UnaryOperator *E, QualType PromotionType) {
// This differs from gcc, though, most likely due to a bug in gcc.
TestAndClearIgnoreResultAssign();
if (!PromotionType.isNull())
assert(0 && "scalar promotion not implemented yet");
return Visit(E->getSubExpr());
}
mlir::Value VisitUnaryMinus(const UnaryOperator *E) {
// NOTE(cir): QualType function parameter still not used, so don´t replicate
// it here yet.
QualType promotionTy = getPromotionType(E->getSubExpr()->getType());
auto result = VisitMinus(E, promotionTy);
if (result && !promotionTy.isNull())
assert(0 && "not implemented yet");
return buildUnaryOp(E, mlir::cir::UnaryOpKind::Minus, result);
}
mlir::Value VisitMinus(const UnaryOperator *E, QualType PromotionType) {
TestAndClearIgnoreResultAssign();
if (!PromotionType.isNull())
assert(0 && "scalar promotion not implemented yet");
// NOTE: LLVM codegen will lower this directly to either a FNeg
// or a Sub instruction. In CIR this will be handled later in LowerToLLVM.
return Visit(E->getSubExpr());
}
mlir::Value VisitUnaryNot(const UnaryOperator *E) {
TestAndClearIgnoreResultAssign();
mlir::Value op = Visit(E->getSubExpr());
return buildUnaryOp(E, mlir::cir::UnaryOpKind::Not, op);
}
mlir::Value VisitUnaryLNot(const UnaryOperator *E);
mlir::Value VisitUnaryReal(const UnaryOperator *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitUnaryImag(const UnaryOperator *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitUnaryExtension(const UnaryOperator *E) {
// __extension__ doesn't requred any codegen
// just forward the value
return Visit(E->getSubExpr());
}
mlir::Value buildUnaryOp(const UnaryOperator *E, mlir::cir::UnaryOpKind kind,
mlir::Value input) {
return Builder.create<mlir::cir::UnaryOp>(
CGF.getLoc(E->getSourceRange().getBegin()),
CGF.getCIRType(E->getType()), kind, input);
}
// C++
mlir::Value VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitSourceLocExpr(SourceLocExpr *E) { llvm_unreachable("NYI"); }
mlir::Value VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
CIRGenFunction::CXXDefaultArgExprScope Scope(CGF, DAE);
return Visit(DAE->getExpr());
}
mlir::Value VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
CIRGenFunction::CXXDefaultInitExprScope Scope(CGF, DIE);
return Visit(DIE->getExpr());
}
mlir::Value VisitCXXThisExpr(CXXThisExpr *TE) { return CGF.LoadCXXThis(); }
mlir::Value VisitExprWithCleanups(ExprWithCleanups *E);
mlir::Value VisitCXXNewExpr(const CXXNewExpr *E) {
return CGF.buildCXXNewExpr(E);
}
mlir::Value VisitCXXDeleteExpr(const CXXDeleteExpr *E) {
CGF.buildCXXDeleteExpr(E);
return {};
}
mlir::Value VisitTypeTraitExpr(const TypeTraitExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value
VisitConceptSpecializationExpr(const ConceptSpecializationExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitRequiresExpr(const RequiresExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitExpressionTraitExpr(const ExpressionTraitExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitCXXPseudoDestructorExpr(const CXXPseudoDestructorExpr *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E) {
return buildNullValue(E->getType(), CGF.getLoc(E->getSourceRange()));
}
mlir::Value VisitCXXThrowExpr(CXXThrowExpr *E) {
CGF.buildCXXThrowExpr(E);
return nullptr;
}
mlir::Value VisitCXXNoexceptExpr(CXXNoexceptExpr *E) {
llvm_unreachable("NYI");
}
/// Perform a pointer to boolean conversion.
mlir::Value buildPointerToBoolConversion(mlir::Value V, QualType QT) {
// TODO(cir): comparing the ptr to null is done when lowering CIR to LLVM.
// We might want to have a separate pass for these types of conversions.
return CGF.getBuilder().createPtrToBoolCast(V);
}
// Comparisons.
#define VISITCOMP(CODE) \
mlir::Value VisitBin##CODE(const BinaryOperator *E) { return buildCmp(E); }
VISITCOMP(LT)
VISITCOMP(GT)
VISITCOMP(LE)
VISITCOMP(GE)
VISITCOMP(EQ)
VISITCOMP(NE)
#undef VISITCOMP
mlir::Value VisitBinAssign(const BinaryOperator *E);
mlir::Value VisitBinLAnd(const BinaryOperator *B);
mlir::Value VisitBinLOr(const BinaryOperator *B);
mlir::Value VisitBinComma(const BinaryOperator *E) {
CGF.buildIgnoredExpr(E->getLHS());
// NOTE: We don't need to EnsureInsertPoint() like LLVM codegen.
return Visit(E->getRHS());
}
mlir::Value VisitBinPtrMemD(const BinaryOperator *E) {
return buildLoadOfLValue(E);
}
mlir::Value VisitBinPtrMemI(const BinaryOperator *E) {
return buildLoadOfLValue(E);
}
mlir::Value VisitCXXRewrittenBinaryOperator(CXXRewrittenBinaryOperator *E) {
llvm_unreachable("NYI");
}
// Other Operators.
mlir::Value VisitBlockExpr(const BlockExpr *E) { llvm_unreachable("NYI"); }
mlir::Value
VisitAbstractConditionalOperator(const AbstractConditionalOperator *E);
mlir::Value VisitChooseExpr(ChooseExpr *E) { llvm_unreachable("NYI"); }
mlir::Value VisitVAArgExpr(VAArgExpr *VE);
mlir::Value VisitObjCStringLiteral(const ObjCStringLiteral *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitObjCBoxedExpr(ObjCBoxedExpr *E) { llvm_unreachable("NYI"); }
mlir::Value VisitObjCArrayLiteral(ObjCArrayLiteral *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
llvm_unreachable("NYI");
}
mlir::Value VisitAsTypeExpr(AsTypeExpr *E) { llvm_unreachable("NYI"); }
mlir::Value VisitAtomicExpr(AtomicExpr *E) {
return CGF.buildAtomicExpr(E).getScalarVal();
}
// Emit a conversion from the specified type to the specified destination
// type, both of which are CIR scalar types.
struct ScalarConversionOpts {
bool TreatBooleanAsSigned;
bool EmitImplicitIntegerTruncationChecks;
bool EmitImplicitIntegerSignChangeChecks;
ScalarConversionOpts()
: TreatBooleanAsSigned(false),
EmitImplicitIntegerTruncationChecks(false),
EmitImplicitIntegerSignChangeChecks(false) {}
ScalarConversionOpts(clang::SanitizerSet SanOpts)
: TreatBooleanAsSigned(false),
EmitImplicitIntegerTruncationChecks(
SanOpts.hasOneOf(SanitizerKind::ImplicitIntegerTruncation)),
EmitImplicitIntegerSignChangeChecks(
SanOpts.has(SanitizerKind::ImplicitIntegerSignChange)) {}
};
mlir::Value buildScalarCast(mlir::Value Src, QualType SrcType,
QualType DstType, mlir::Type SrcTy,
mlir::Type DstTy, ScalarConversionOpts Opts);
BinOpInfo buildBinOps(const BinaryOperator *E) {
BinOpInfo Result;
Result.LHS = Visit(E->getLHS());
Result.RHS = Visit(E->getRHS());
Result.FullType = E->getType();
Result.CompType = E->getType();
if (auto VecType = dyn_cast_or_null<VectorType>(E->getType())) {
Result.CompType = VecType->getElementType();
}
Result.Opcode = E->getOpcode();
Result.Loc = E->getSourceRange();
// TODO: Result.FPFeatures
Result.E = E;
return Result;
}
mlir::Value buildMul(const BinOpInfo &Ops);
mlir::Value buildDiv(const BinOpInfo &Ops);
mlir::Value buildRem(const BinOpInfo &Ops);
mlir::Value buildAdd(const BinOpInfo &Ops);
mlir::Value buildSub(const BinOpInfo &Ops);
mlir::Value buildShl(const BinOpInfo &Ops);
mlir::Value buildShr(const BinOpInfo &Ops);
mlir::Value buildAnd(const BinOpInfo &Ops);
mlir::Value buildXor(const BinOpInfo &Ops);
mlir::Value buildOr(const BinOpInfo &Ops);
LValue buildCompoundAssignLValue(
const CompoundAssignOperator *E,
mlir::Value (ScalarExprEmitter::*F)(const BinOpInfo &),
mlir::Value &Result);
mlir::Value
buildCompoundAssign(const CompoundAssignOperator *E,
mlir::Value (ScalarExprEmitter::*F)(const BinOpInfo &));
// TODO(cir): Candidate to be in a common AST helper between CIR and LLVM
// codegen.
QualType getPromotionType(QualType Ty) {
if (auto *CT = Ty->getAs<ComplexType>()) {
llvm_unreachable("NYI");
}
if (Ty.UseExcessPrecision(CGF.getContext()))
llvm_unreachable("NYI");
return QualType();
}
// Binary operators and binary compound assignment operators.
#define HANDLEBINOP(OP) \
mlir::Value VisitBin##OP(const BinaryOperator *E) { \
return build##OP(buildBinOps(E)); \
} \
mlir::Value VisitBin##OP##Assign(const CompoundAssignOperator *E) { \
return buildCompoundAssign(E, &ScalarExprEmitter::build##OP); \
}
HANDLEBINOP(Mul)
HANDLEBINOP(Div)
HANDLEBINOP(Rem)
HANDLEBINOP(Add)
HANDLEBINOP(Sub)
HANDLEBINOP(Shl)
HANDLEBINOP(Shr)
HANDLEBINOP(And)
HANDLEBINOP(Xor)
HANDLEBINOP(Or)
#undef HANDLEBINOP
mlir::Value buildCmp(const BinaryOperator *E) {
mlir::Value Result;
QualType LHSTy = E->getLHS()->getType();
QualType RHSTy = E->getRHS()->getType();
auto ClangCmpToCIRCmp = [](auto ClangCmp) -> mlir::cir::CmpOpKind {
switch (ClangCmp) {
case BO_LT:
return mlir::cir::CmpOpKind::lt;
case BO_GT:
return mlir::cir::CmpOpKind::gt;
case BO_LE:
return mlir::cir::CmpOpKind::le;
case BO_GE:
return mlir::cir::CmpOpKind::ge;
case BO_EQ:
return mlir::cir::CmpOpKind::eq;
case BO_NE:
return mlir::cir::CmpOpKind::ne;
default:
llvm_unreachable("unsupported comparison kind");
return mlir::cir::CmpOpKind(-1);
}
};
if (const MemberPointerType *MPT = LHSTy->getAs<MemberPointerType>()) {
assert(0 && "not implemented");
} else if (!LHSTy->isAnyComplexType() && !RHSTy->isAnyComplexType()) {
BinOpInfo BOInfo = buildBinOps(E);
mlir::Value LHS = BOInfo.LHS;
mlir::Value RHS = BOInfo.RHS;
if (LHSTy->isVectorType()) {
if (!E->getType()->isVectorType()) {
// If AltiVec, the comparison results in a numeric type, so we use
// intrinsics comparing vectors and giving 0 or 1 as a result
llvm_unreachable("NYI: AltiVec comparison");
} else {
// Other kinds of vectors. Element-wise comparison returning
// a vector.
mlir::cir::CmpOpKind Kind = ClangCmpToCIRCmp(E->getOpcode());
return Builder.create<mlir::cir::VecCmpOp>(
CGF.getLoc(BOInfo.Loc), CGF.getCIRType(BOInfo.FullType), Kind,
BOInfo.LHS, BOInfo.RHS);
}
}
if (BOInfo.isFixedPointOp()) {
assert(0 && "not implemented");
} else {
// FIXME(cir): handle another if above for CIR equivalent on
// LHSTy->hasSignedIntegerRepresentation()
// Unsigned integers and pointers.
if (CGF.CGM.getCodeGenOpts().StrictVTablePointers &&
LHS.getType().isa<mlir::cir::PointerType>() &&
RHS.getType().isa<mlir::cir::PointerType>()) {
llvm_unreachable("NYI");
}
mlir::cir::CmpOpKind Kind = ClangCmpToCIRCmp(E->getOpcode());
return Builder.create<mlir::cir::CmpOp>(CGF.getLoc(BOInfo.Loc),
CGF.getCIRType(BOInfo.FullType),
Kind, BOInfo.LHS, BOInfo.RHS);
}
} else { // Complex Comparison: can only be an equality comparison.
assert(0 && "not implemented");
}
return buildScalarConversion(Result, CGF.getContext().BoolTy, E->getType(),
E->getExprLoc());
}
mlir::Value buildFloatToBoolConversion(mlir::Value src, mlir::Location loc) {
auto boolTy = Builder.getBoolTy();
return Builder.create<mlir::cir::CastOp>(
loc, boolTy, mlir::cir::CastKind::float_to_bool, src);
}
mlir::Value buildIntToBoolConversion(mlir::Value srcVal, mlir::Location loc) {
// Because of the type rules of C, we often end up computing a
// logical value, then zero extending it to int, then wanting it
// as a logical value again.
// TODO: optimize this common case here or leave it for later
// CIR passes?
mlir::Type boolTy = CGF.getCIRType(CGF.getContext().BoolTy);
return Builder.create<mlir::cir::CastOp>(
loc, boolTy, mlir::cir::CastKind::int_to_bool, srcVal);
}
/// Convert the specified expression value to a boolean (!cir.bool) truth
/// value. This is equivalent to "Val != 0".
mlir::Value buildConversionToBool(mlir::Value Src, QualType SrcType,
mlir::Location loc) {
assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs");
if (SrcType->isRealFloatingType())
return buildFloatToBoolConversion(Src, loc);
if (auto *MPT = llvm::dyn_cast<MemberPointerType>(SrcType))
assert(0 && "not implemented");
if (SrcType->isIntegerType())
return buildIntToBoolConversion(Src, loc);
assert(Src.getType().isa<::mlir::cir::PointerType>());
return buildPointerToBoolConversion(Src, SrcType);
}
/// Emit a conversion from the specified type to the specified destination
/// type, both of which are CIR scalar types.
/// TODO: do we need ScalarConversionOpts here? Should be done in another
/// pass.
mlir::Value
buildScalarConversion(mlir::Value Src, QualType SrcType, QualType DstType,
SourceLocation Loc,
ScalarConversionOpts Opts = ScalarConversionOpts()) {
// All conversions involving fixed point types should be handled by the
// buildFixedPoint family functions. This is done to prevent bloating up
// this function more, and although fixed point numbers are represented by
// integers, we do not want to follow any logic that assumes they should be
// treated as integers.
// TODO(leonardchan): When necessary, add another if statement checking for
// conversions to fixed point types from other types.
if (SrcType->isFixedPointType()) {
llvm_unreachable("not implemented");
} else if (DstType->isFixedPointType()) {
llvm_unreachable("not implemented");
}
SrcType = CGF.getContext().getCanonicalType(SrcType);
DstType = CGF.getContext().getCanonicalType(DstType);
if (SrcType == DstType)
return Src;
if (DstType->isVoidType())
return nullptr;
mlir::Type SrcTy = Src.getType();
// Handle conversions to bool first, they are special: comparisons against
// 0.
if (DstType->isBooleanType())
return buildConversionToBool(Src, SrcType, CGF.getLoc(Loc));
mlir::Type DstTy = ConvertType(DstType);
// Cast from half through float if half isn't a native type.
if (SrcType->isHalfType() &&
!CGF.getContext().getLangOpts().NativeHalfType) {
llvm_unreachable("not implemented");
}
// TODO(cir): LLVM codegen ignore conversions like int -> uint,
// is there anything to be done for CIR here?
if (SrcTy == DstTy) {
if (Opts.EmitImplicitIntegerSignChangeChecks)
llvm_unreachable("not implemented");
return Src;
}
// Handle pointer conversions next: pointers can only be converted to/from
// other pointers and integers. Check for pointer types in terms of LLVM, as
// some native types (like Obj-C id) may map to a pointer type.
if (auto DstPT = dyn_cast<mlir::cir::PointerType>(DstTy)) {
llvm_unreachable("NYI");
}
if (isa<mlir::cir::PointerType>(SrcTy)) {
// Must be an ptr to int cast.
assert(isa<mlir::cir::IntType>(DstTy) && "not ptr->int?");
return Builder.createPtrToInt(Src, DstTy);
}
// A scalar can be splatted to an extended vector of the same element type
if (DstType->isExtVectorType() && !SrcType->isVectorType()) {
// Sema should add casts to make sure that the source expression's type
// is the same as the vector's element type (sans qualifiers)
assert(DstType->castAs<ExtVectorType>()->getElementType().getTypePtr() ==
SrcType.getTypePtr() &&