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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
// `#![no_std]`: these arrive with the standard prelude and name no path, so a `std::`
// search cannot see them - and a `#[derive]` can use them without the name appearing
// in this file at all, which is why they are not trimmed by inspection.
use alloc::borrow::ToOwned;
use alloc::boxed::Box;
use alloc::format;
use alloc::string::{String, ToString};
use alloc::vec;
use alloc::vec::Vec;
use core::any::Any;
use eko::path::PathBuf;
use core::str::FromStr;
use alloc::sync::Arc;
use core::sync::atomic::{AtomicBool, AtomicUsize};
// `JsonEmitter`'s sink is now `core::fmt::Write` rather than `std::io::Write`, and it
// serialises each record into one `String` and writes it in a single call. A `BufWriter` in
// front of stderr would therefore buy nothing, and would cost something: `eko`'s
// flushes only at 64 KiB and on drop, and the compiler leaves through `exit(2)`, so a run
// whose diagnostics fit in the buffer would print none of them. Stderr goes straight to fd 2.
use eko::file::stderr;
use crate::rustc_data_structures::flock;
use crate::rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexSet};
use crate::rustc_data_structures::profiling::SelfProfilerRef;
use crate::rustc_data_structures::sync::{AppendOnlyVec, DynSend, DynSync, Lock};
use crate::rustc_errors::plain_emitter::PlainEmitter;
use crate::rustc_errors::codes::*;
use crate::rustc_errors::emitter::{DynEmitter, HumanReadableErrorType};
use crate::rustc_errors::json::JsonEmitter;
use crate::rustc_errors::timings::TimingSectionHandler;
use crate::rustc_errors::{
Diag, DiagCtxt, DiagCtxtHandle, DiagMessage, Diagnostic, ErrorGuaranteed, FatalAbort, PResult,
TerminalUrl,
};
use crate::rustc_feature::UnstableFeatures;
use rustc_macros::StableHash;
pub use crate::rustc_span::def_id::StableCrateId;
use crate::rustc_span::edition::Edition;
use crate::rustc_span::source_map::{FilePathMapping, SourceMap};
use crate::rustc_span::{RealFileName, Span, Symbol};
use crate::rustc_structures::{CrateType, Limit};
use crate::rustc_target::asm::InlineAsmArch;
use crate::rustc_target::spec::{
Arch, CfgAbi, CodeModel, DebuginfoKind, Os, PanicStrategy, RelocModel, RelroLevel,
SanitizerSet, SmallDataThresholdSupport, SplitDebuginfo, StackProtector, SymbolVisibility,
Target, TargetTuple, TlsModel, apple,
};
use crate::rustc_session::config::{
self, BranchProtection, Cfg, CheckCfg, CoverageLevel, CoverageOptions, DebugInfo,
ErrorOutputType, FunctionReturn, Input, InstrumentCoverage, InstrumentMcount, NATIVE_CPU,
OptLevel, OutFileName, OutputType, PAuthKey, PointerAuthOption, SwitchWithOptPath,
};
use crate::rustc_session::filesearch::FileSearch;
use crate::rustc_session::lint::LintId;
use crate::rustc_session::parse::ParseSess;
use crate::rustc_session::search_paths::SearchPath;
use crate::rustc_session::{diagnostics, filesearch, lint};
/// The behavior of the CTFE engine when an error occurs with regards to backtraces.
#[derive(Clone, Copy)]
pub enum CtfeBacktrace {
/// Do nothing special, return the error as usual without a backtrace.
Disabled,
/// Capture a backtrace at the point the error is created and return it in the error
/// (to be printed later if/when the error ever actually gets shown to the user).
Capture,
/// Capture a backtrace at the point the error is created and immediately print it out.
Immediate,
}
#[derive(Clone, Copy, Debug, StableHash)]
pub struct Limits {
/// The maximum recursion limit for potentially infinitely recursive
/// operations such as auto-dereference and monomorphization.
pub recursion_limit: Limit,
/// The size at which the `large_assignments` lint starts
/// being emitted.
pub move_size_limit: Limit,
/// The maximum length of types during monomorphization.
pub type_length_limit: Limit,
/// The maximum pattern complexity allowed (internal only).
pub pattern_complexity_limit: Limit,
}
pub struct CompilerIO {
pub input: Input,
pub output_dir: Option<PathBuf>,
pub output_file: Option<OutFileName>,
pub temps_dir: Option<PathBuf>,
}
pub trait DynLintStore: Any + DynSync + DynSend {
/// Provides a way to access lint groups without depending on `rustc_lint`
fn lint_groups_iter(&self) -> Box<dyn Iterator<Item = LintGroup> + '_>;
}
/// Hardware pointer-signing keys in ARM8.3.
/// These values are the same as used in ptrauth.h.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum PointerAuthARM8_3Key {
ASIA = 0,
ASIB = 1,
ASDA = 2,
ASDB = 3,
}
/// Forms of extra discrimination.
pub enum PointerAuthDiscrimination {
/// No additional discrimination.
None,
/// Include a hash of the entity's type.
Type,
/// Include a hash of the entity's identity.
Decl,
/// Discriminate using a constant value.
Constant,
}
/// Types of address discrimination.
pub enum PointerAuthAddressDiscriminator {
/// Enable/disable hardware address discrimination.
HardwareAddress(bool),
/// Use a synthetic value. For instance init/fini entries can not the address of the arrays,
/// they must use a synthetic value of `1`.
Synthetic(u64),
}
pub struct PointerAuthSchema {
pub is_address_discriminated: PointerAuthAddressDiscriminator,
pub discrimination_kind: PointerAuthDiscrimination,
pub key: PointerAuthARM8_3Key,
pub constant_discriminator: u16,
}
impl PointerAuthSchema {
pub fn function_pointers_default(target: &Target) -> Self {
assert!(target.cfg_abi == CfgAbi::Pauthtest);
return Self {
is_address_discriminated: PointerAuthAddressDiscriminator::HardwareAddress(false),
discrimination_kind: PointerAuthDiscrimination::None,
key: PointerAuthARM8_3Key::ASIA,
constant_discriminator: 0,
};
}
pub fn init_fini_default(target: &Target) -> Self {
assert!(target.cfg_abi == CfgAbi::Pauthtest);
return Self {
is_address_discriminated: PointerAuthAddressDiscriminator::Synthetic(1),
discrimination_kind: PointerAuthDiscrimination::None,
key: PointerAuthARM8_3Key::ASIA,
// ptrauth_string_discriminator("init_fini")
constant_discriminator: 0xd9d4,
};
}
}
pub struct PointerAuthConfig {
/// Should return addresses be authenticated?
pub return_addresses: bool,
/// Do authentication failures cause a trap?
pub auth_traps: bool,
/// Do indirect goto label addresses need to be authenticated?
pub indirect_gotos: bool,
/// Should ELF GOT entries be signed?
pub elf_got: bool,
/// Use hardened lowering for jump-table dispatch?
pub aarch64_jump_table_hardening: bool,
/// The ABI for C function pointers.
pub function_pointers: Option<PointerAuthSchema>,
/// The ABI for function addresses in .init_array and .fini_array
pub init_fini: Option<PointerAuthSchema>,
/// Use of pointer authentication intrinsics.
pub intrinsics: bool,
/// The following are used only for compatibility with C++ and control over generated abi
/// version. They do not control Rust code generation.
pub typeinfo_vt_ptr_discrimination: bool,
pub vt_ptr_addr_discrimination: bool,
pub vt_ptr_type_discrimination: bool,
}
impl PointerAuthConfig {
fn default(target: &Target) -> Self {
assert!(target.cfg_abi == CfgAbi::Pauthtest);
return Self {
return_addresses: true,
auth_traps: true,
indirect_gotos: true,
elf_got: false,
aarch64_jump_table_hardening: true,
function_pointers: Some(PointerAuthSchema::function_pointers_default(target)),
init_fini: Some(PointerAuthSchema::init_fini_default(target)),
intrinsics: true,
typeinfo_vt_ptr_discrimination: true,
vt_ptr_addr_discrimination: true,
vt_ptr_type_discrimination: true,
};
}
pub fn calculate_pauth_abi_version(&self, target: &Target) -> u32 {
assert!(target.cfg_abi == CfgAbi::Pauthtest);
// Bit positions of version flags for AARCH64_PAUTH_PLATFORM_LLVM_LINUX.
// NOTE: The enum values must stay in sync with clang, see:
// <llvm_root>/llvm/include/llvm/BinaryFormat/ELF.h
//
// We do not expect to use C++ virtual dispatch, but enable these flags
// for compatibility with C++ code. Intrinsics are also always enabled.
//
// Link to PAuth core info documentation:
// <https://github.com/ARM-software/abi-aa/blob/2025Q4/pauthabielf64/pauthabielf64.rst#core-information>
const INTRINSICS: u32 = 0;
const CALLS: u32 = 1;
const RETURNS: u32 = 2;
const AUTHTRAPS: u32 = 3;
const VT_PTR_ADDR_DISCR: u32 = 4;
const VT_PTR_TYPE_DISCR: u32 = 5;
const INIT_FINI: u32 = 6;
const INIT_FINI_ADDR_DISC: u32 = 7;
const GOT: u32 = 8;
const GOTOS: u32 = 9;
const TYPEINFO_VT_PTR_DISCR: u32 = 10;
// FIXME(jchlanda) We don't yet support function pointer type discrimination.
// const FPTR_TYPE_DISCR: u32 = 11;
let pauth_abi_version: u32 = (u32::from(self.intrinsics) << INTRINSICS)
| (u32::from(self.function_pointers.is_some()) << CALLS)
| (u32::from(self.return_addresses) << RETURNS)
| (u32::from(self.auth_traps) << AUTHTRAPS)
| (u32::from(self.vt_ptr_addr_discrimination) << VT_PTR_ADDR_DISCR)
| (u32::from(self.vt_ptr_type_discrimination) << VT_PTR_TYPE_DISCR)
| (u32::from(self.init_fini.is_some()) << INIT_FINI)
| (u32::from(self.init_fini.as_ref().is_some_and(|schema| {
matches!(
schema.is_address_discriminated,
PointerAuthAddressDiscriminator::HardwareAddress(true)
| PointerAuthAddressDiscriminator::Synthetic(_)
)
})) << INIT_FINI_ADDR_DISC)
| (u32::from(self.elf_got) << GOT)
| (u32::from(self.indirect_gotos) << GOTOS)
| (u32::from(self.typeinfo_vt_ptr_discrimination) << TYPEINFO_VT_PTR_DISCR);
pauth_abi_version
}
pub fn from_raw(raw: &[(PointerAuthOption, bool)], target: &Target) -> Option<Self> {
if target.cfg_abi != CfgAbi::Pauthtest {
return None;
}
let mut cfg = Self::default(target);
if raw.is_empty() {
return Some(cfg);
}
for (opt, enabled) in raw {
match opt {
PointerAuthOption::Calls => {
if *enabled {
cfg.function_pointers.get_or_insert_with(|| {
PointerAuthSchema::function_pointers_default(target)
});
} else {
cfg.function_pointers = None;
}
}
PointerAuthOption::FunctionPointerTypeDiscrimination => {
if *enabled {
let schema = cfg.function_pointers.get_or_insert_with(|| {
PointerAuthSchema::function_pointers_default(target)
});
schema.discrimination_kind = PointerAuthDiscrimination::Type;
} else if let Some(schema) = &mut cfg.function_pointers {
schema.discrimination_kind = PointerAuthDiscrimination::None;
}
}
PointerAuthOption::ReturnAddresses => cfg.return_addresses = *enabled,
PointerAuthOption::AuthTraps => cfg.auth_traps = *enabled,
PointerAuthOption::IndirectGotos => cfg.indirect_gotos = *enabled,
PointerAuthOption::ElfGot => cfg.elf_got = *enabled,
PointerAuthOption::Aarch64JumpTableHardening => {
cfg.aarch64_jump_table_hardening = *enabled
}
PointerAuthOption::InitFini => {
if *enabled {
cfg.init_fini
.get_or_insert_with(|| PointerAuthSchema::init_fini_default(target));
} else {
cfg.init_fini = None;
}
}
PointerAuthOption::InitFiniAddressDiscrimination => {
if *enabled {
let schema = cfg
.init_fini
.get_or_insert_with(|| PointerAuthSchema::init_fini_default(target));
schema.is_address_discriminated =
PointerAuthAddressDiscriminator::HardwareAddress(true);
} else if let Some(schema) = &mut cfg.init_fini {
schema.is_address_discriminated =
PointerAuthAddressDiscriminator::Synthetic(1);
}
}
PointerAuthOption::Intrinsics => cfg.intrinsics = *enabled,
PointerAuthOption::TypeInfoVTPtrDisc => {
cfg.typeinfo_vt_ptr_discrimination = *enabled
}
PointerAuthOption::VTPtrAddrDisc => cfg.vt_ptr_addr_discrimination = *enabled,
PointerAuthOption::VTPtrTypeDisc => cfg.vt_ptr_type_discrimination = *enabled,
}
}
Some(cfg)
}
pub fn fn_attrs(&self) -> Vec<&'static str> {
// FIXME(jchlanda) This is not an exhaustive list of all `ptrauth`-related attributes, but only
// those currently supported. The list is expected to grow as additional functionality is
// implemented, particularly for C++ interoperability.
let mut attrs = vec![];
if self.aarch64_jump_table_hardening {
attrs.push("aarch64-jump-table-hardening");
}
if self.auth_traps {
attrs.push("ptrauth-auth-traps");
}
if self.function_pointers.is_some() {
attrs.push("ptrauth-calls");
}
if self.indirect_gotos {
attrs.push("ptrauth-indirect-gotos");
}
if self.return_addresses {
attrs.push("ptrauth-returns");
}
attrs
}
}
/// Represents the data associated with a compilation
/// session for a single crate.
pub struct Session {
pub target: Target,
pub host: Target,
pub wasm_proc_macro_tuple: TargetTuple,
pub wasm_proc_macro_target: Target,
pub opts: config::Options,
pub target_tlib_path: SearchPath,
pub psess: ParseSess,
pub unstable_features: UnstableFeatures,
pub config: Cfg,
pub check_config: CheckCfg,
/// Spans passed to `proc_macro::quote_span`. Each span has a numerical
/// identifier represented by its position in the vector.
proc_macro_quoted_spans: AppendOnlyVec<Span>,
/// Input, input file path and output file path to this compilation process.
pub io: CompilerIO,
/// Used by `-Z self-profile`.
pub prof: SelfProfilerRef,
/// Used to emit section timings events (enabled by `--json=timings`).
pub timings: TimingSectionHandler,
/// MIR dumps produced during this compilation, as `(artifact name, text)`.
///
/// A pass never writes a dump anywhere. It renders one and leaves it here; the driver
/// decides whether that becomes a reply, a log line, or a file on disk. Before this, every
/// `dump_mir` call opened a file itself from inside whichever pass called it - a filesystem
/// side effect in code whose signature promised only to transform MIR.
pub mir_dumps: Lock<Vec<(String, String)>>,
/// This only ever stores a `LintStore` but we don't want a dependency on that type here.
pub lint_store: Option<Arc<dyn DynLintStore>>,
/// Cap lint level specified by a driver specifically.
pub driver_lint_caps: FxHashMap<lint::LintId, lint::Level>,
/// Tracks the current behavior of the CTFE engine when an error occurs.
/// Options range from returning the error without a backtrace to returning an error
/// and immediately printing the backtrace to stderr.
/// The `Lock` is only used by miri to allow setting `ctfe_backtrace` after analysis when
/// `MIRI_BACKTRACE` is set. This makes it only apply to miri's errors and not to all CTFE
/// errors.
pub ctfe_backtrace: Lock<CtfeBacktrace>,
/// This tracks where `-Zunleash-the-miri-inside-of-you` was used to get around a
/// const check, optionally with the relevant feature gate. We use this to
/// warn about unleashing, but with a single diagnostic instead of dozens that
/// drown everything else in noise.
miri_unleashed_features: Lock<Vec<(Span, Option<Symbol>)>>,
/// Architecture to use for interpreting asm!.
pub asm_arch: Option<InlineAsmArch>,
/// Set of actually enabled features for the current target, including ones that are not
/// in `cfg(target_feature)` because they are unstable or internal-only.
/// This is used by the compiler itself when it needs to know which target features are actually
/// going to be enabled in the backend.
pub internal_target_features: FxIndexSet<Symbol>,
/// The version of the rustc process, possibly including a commit hash and description.
pub cfg_version: &'static str,
/// The inner atomic value is set to true when a feature marked as `internal` is
/// enabled. Makes it so that "please report a bug" is hidden, as ICEs with
/// internal features are wontfix, and they are usually the cause of the ICEs.
/// None signifies that this is not tracked.
pub using_internal_features: &'static AtomicBool,
/// Environment variables accessed during the build and their values when they exist.
pub env_depinfo: Lock<FxIndexSet<(Symbol, Option<Symbol>)>>,
/// File paths accessed during the build.
pub file_depinfo: Lock<FxIndexSet<Symbol>>,
target_filesearch: Arc<FileSearch>,
host_filesearch: Arc<FileSearch>,
wasm_proc_macro_filesearch: Option<Arc<FileSearch>>,
/// The names of intrinsics that the current codegen backend replaces
/// with its own implementations.
pub replaced_intrinsics: FxHashSet<Symbol>,
/// The names of intrinsics that the current codegen backend does *not* replace
/// with its own implementations.
pub fallback_intrinsics: FxHashSet<Symbol>,
/// Does the codegen backend support ThinLTO?
pub thin_lto_supported: bool,
/// Global per-session counter for MIR optimization pass applications.
///
/// Used by `-Zmir-opt-bisect-limit` to assign an index to each
/// optimization-pass execution candidate during this compilation.
pub mir_opt_bisect_eval_count: AtomicUsize,
/// Whether the test harness removed a user-written `#[rustc_main]` attribute
/// while generating the synthetic test entry point.
pub removed_rustc_main_attr: AtomicBool,
/// Config specifying targets' pointer authentication preference.
pub pointer_auth_config: Option<PointerAuthConfig>,
}
#[derive(Clone, Copy)]
pub enum CodegenUnits {
/// Specified by the user. In this case we try fairly hard to produce the
/// number of CGUs requested.
User(usize),
/// A default value, i.e. not specified by the user. In this case we take
/// more liberties about CGU formation, e.g. avoid producing very small
/// CGUs.
Default(usize),
}
impl CodegenUnits {
pub fn as_usize(self) -> usize {
match self {
CodegenUnits::User(n) => n,
CodegenUnits::Default(n) => n,
}
}
}
pub struct LintGroup {
pub name: &'static str,
pub lints: Vec<LintId>,
pub is_externally_loaded: bool,
}
impl Session {
pub fn miri_unleashed_feature(&self, span: Span, feature_gate: Option<Symbol>) {
self.miri_unleashed_features.lock().push((span, feature_gate));
}
pub fn local_crate_source_file(&self) -> Option<RealFileName> {
Some(
self.source_map()
.path_mapping()
.to_real_filename(self.source_map().working_dir(), self.io.input.opt_path()?),
)
}
fn check_miri_unleashed_features(&self) -> Option<ErrorGuaranteed> {
let mut guar = None;
let unleashed_features = self.miri_unleashed_features.lock();
if !unleashed_features.is_empty() {
let mut must_err = false;
// Create a diagnostic pointing at where things got unleashed.
self.dcx().emit_warn(diagnostics::SkippingConstChecks {
unleashed_features: unleashed_features
.iter()
.map(|(span, gate)| {
gate.map(|gate| {
must_err = true;
diagnostics::UnleashedFeatureHelp::Named { span: *span, gate }
})
.unwrap_or(diagnostics::UnleashedFeatureHelp::Unnamed { span: *span })
})
.collect(),
});
// If we should err, make sure we did.
if must_err && self.dcx().has_errors().is_none() {
// We have skipped a feature gate, and not run into other errors... reject.
guar = Some(self.dcx().emit_err(diagnostics::NotCircumventFeature));
}
}
guar
}
/// Invoked all the way at the end to finish off diagnostics printing.
pub fn finish_diagnostics(&self) -> Option<ErrorGuaranteed> {
let mut guar = None;
guar = guar.or(self.check_miri_unleashed_features());
guar = guar.or(self.dcx().emit_stashed_diagnostics());
self.dcx().print_error_count();
if self.opts.json_future_incompat {
self.dcx().emit_future_breakage_report();
}
guar
}
/// Returns true if the crate is a testing one.
pub fn is_test_crate(&self) -> bool {
self.opts.test
}
/// `feature` must be a language feature.
#[track_caller]
pub fn create_feature_err<'a>(&'a self, err: impl Diagnostic<'a>, feature: Symbol) -> Diag<'a> {
let mut err = self.dcx().create_err(err);
if err.code.is_none() {
err.code(E0658);
}
diagnostics::add_feature_diagnostics(&mut err, self, feature);
err
}
/// Record the fact that we called `trimmed_def_paths`, and do some
/// checking about whether its cost was justified.
pub fn record_trimmed_def_paths(&self) {
if self.opts.unstable_opts.query_dep_graph
|| self.opts.unstable_opts.dump_mir.is_some()
|| self.opts.unstable_opts.unpretty.is_some()
|| self.prof.is_args_recording_enabled()
|| self.opts.output_types.contains_key(&OutputType::Mir)
|| eko::env::var_os("RUSTC_LOG").is_some()
{
return;
}
self.dcx().set_must_produce_diag()
}
#[inline]
pub fn dcx(&self) -> DiagCtxtHandle<'_> {
self.psess.dcx()
}
#[inline]
pub fn source_map(&self) -> &SourceMap {
self.psess.source_map()
}
pub fn proc_macro_quoted_spans(&self) -> impl Iterator<Item = (usize, Span)> {
// This is equivalent to `.iter().copied().enumerate()`, but that isn't possible for
// AppendOnlyVec, so we resort to this scheme.
self.proc_macro_quoted_spans.iter_enumerated()
}
pub fn save_proc_macro_span(&self, span: Span) -> usize {
self.proc_macro_quoted_spans.push(span)
}
/// Returns `true` if internal lints should be added to the lint store - i.e. if
/// `-Zunstable-options` is provided and this isn't rustdoc (internal lints can trigger errors
/// to be emitted under rustdoc).
pub fn enable_internal_lints(&self) -> bool {
self.unstable_options() && !self.opts.actually_rustdoc
}
pub fn instrument_coverage(&self) -> bool {
self.opts.cg.instrument_coverage() != InstrumentCoverage::No
}
pub fn instrument_coverage_branch(&self) -> bool {
self.instrument_coverage()
&& self.opts.unstable_opts.coverage_options.level >= CoverageLevel::Branch
}
pub fn instrument_coverage_condition(&self) -> bool {
self.instrument_coverage()
&& self.opts.unstable_opts.coverage_options.level >= CoverageLevel::Condition
}
/// Provides direct access to the `CoverageOptions` struct, so that
/// individual flags for debugging/testing coverage instrumetation don't
/// need separate accessors.
pub fn coverage_options(&self) -> &CoverageOptions {
&self.opts.unstable_opts.coverage_options
}
pub fn is_sanitizer_cfi_enabled(&self) -> bool {
self.sanitizers().contains(SanitizerSet::CFI)
}
pub fn is_sanitizer_cfi_canonical_jump_tables_disabled(&self) -> bool {
self.opts.unstable_opts.sanitizer_cfi_canonical_jump_tables == Some(false)
}
pub fn is_sanitizer_cfi_canonical_jump_tables_enabled(&self) -> bool {
self.opts.unstable_opts.sanitizer_cfi_canonical_jump_tables == Some(true)
}
pub fn is_sanitizer_cfi_generalize_pointers_enabled(&self) -> bool {
self.opts.unstable_opts.sanitizer_cfi_generalize_pointers == Some(true)
}
pub fn is_sanitizer_cfi_normalize_integers_enabled(&self) -> bool {
self.opts.unstable_opts.sanitizer_cfi_normalize_integers == Some(true)
}
pub fn is_sanitizer_kcfi_arity_enabled(&self) -> bool {
self.opts.unstable_opts.sanitizer_kcfi_arity == Some(true)
}
pub fn is_sanitizer_kcfi_enabled(&self) -> bool {
self.sanitizers().contains(SanitizerSet::KCFI)
}
pub fn is_split_lto_unit_enabled(&self) -> bool {
self.opts.unstable_opts.split_lto_unit == Some(true)
}
/// Check whether this compile session and crate type use static crt.
pub fn crt_static(&self, crate_type: Option<CrateType>) -> bool {
if !self.target.crt_static_respected {
// If the target does not opt in to crt-static support, use its default.
return self.target.crt_static_default;
}
let requested_features = self.opts.cg.target_feature.split(',');
let found_negative = requested_features.clone().any(|r| r == "-crt-static");
let found_positive = requested_features.clone().any(|r| r == "+crt-static");
// JUSTIFICATION: necessary use of crate_types directly (see FIXME below)
if found_positive || found_negative {
found_positive
} else if crate_type == Some(CrateType::ProcMacro)
|| crate_type == None && self.opts.crate_types.contains(&CrateType::ProcMacro)
{
// FIXME: When crate_type is not available,
// we use compiler options to determine the crate_type.
// We can't check `#![crate_type = "proc-macro"]` here.
false
} else {
self.target.crt_static_default
}
}
pub fn is_wasi_reactor(&self) -> bool {
self.target.options.os == Os::Wasi
&& matches!(
self.opts.unstable_opts.wasi_exec_model,
Some(config::WasiExecModel::Reactor)
)
}
/// Returns `true` if the target can use the current split debuginfo configuration.
pub fn target_can_use_split_dwarf(&self) -> bool {
self.target.debuginfo_kind == DebuginfoKind::Dwarf
}
pub fn target_filesearch(&self) -> &filesearch::FileSearch {
&self.target_filesearch
}
pub fn host_filesearch(&self) -> &filesearch::FileSearch {
&self.host_filesearch
}
pub fn wasm_proc_macro_filesearch(&self) -> &filesearch::FileSearch {
self.wasm_proc_macro_filesearch.as_ref().expect("wasm_filesearch not set")
}
/// Returns a list of directories where target-specific tool binaries are located. Some fallback
/// directories are also returned, for example if `--sysroot` is used but tools are missing
/// (#125246): we also add the bin directories to the sysroot where rustc is located.
pub fn get_tools_search_paths(&self, self_contained: bool) -> Vec<PathBuf> {
let search_paths = self
.opts
.sysroot
.all_paths()
.map(|sysroot| filesearch::make_target_bin_path(&sysroot, config::host_tuple()));
if self_contained {
// The self-contained tools are expected to be e.g. in `bin/self-contained` in the
// sysroot's `rustlib` path, so we add such a subfolder to the bin path, and the
// fallback paths.
search_paths.flat_map(|path| [path.clone(), path.join("self-contained")]).collect()
} else {
search_paths.collect()
}
}
/// Is this edition 2015?
pub fn is_rust_2015(&self) -> bool {
self.edition().is_rust_2015()
}
/// Are we allowed to use features from the Rust 2018 edition?
pub fn at_least_rust_2018(&self) -> bool {
self.edition().at_least_rust_2018()
}
/// Are we allowed to use features from the Rust 2021 edition?
pub fn at_least_rust_2021(&self) -> bool {
self.edition().at_least_rust_2021()
}
/// Are we allowed to use features from the Rust 2024 edition?
pub fn at_least_rust_2024(&self) -> bool {
self.edition().at_least_rust_2024()
}
/// Returns `true` if we should use the PLT for shared library calls.
pub fn needs_plt(&self) -> bool {
// Check if the current target usually wants PLT to be enabled.
// The user can use the command line flag to override it.
let want_plt = self.target.plt_by_default;
let dbg_opts = &self.opts.unstable_opts;
let relro_level = self.opts.cg.relro_level.unwrap_or(self.target.relro_level);
// Only enable this optimization by default if full relro is also enabled.
// In this case, lazy binding was already unavailable, so nothing is lost.
// This also ensures `-Wl,-z,now` is supported by the linker.
let full_relro = RelroLevel::Full == relro_level;
// If user didn't explicitly forced us to use / skip the PLT,
// then use it unless the target doesn't want it by default or the full relro forces it on.
dbg_opts.plt.unwrap_or(want_plt || !full_relro)
}
/// Checks if LLVM lifetime markers should be emitted.
pub fn emit_lifetime_markers(&self) -> bool {
self.opts.optimize != config::OptLevel::No
// AddressSanitizer and KernelAddressSanitizer uses lifetimes to detect use after scope bugs.
//
// MemorySanitizer uses lifetimes to detect use of uninitialized stack variables.
//
// HWAddressSanitizer and KernelHWAddressSanitizer will use lifetimes to detect use after
// scope bugs in the future.
|| self.sanitizers().intersects(SanitizerSet::ADDRESS | SanitizerSet::KERNELADDRESS | SanitizerSet::MEMORY | SanitizerSet::HWADDRESS | SanitizerSet::KERNELHWADDRESS)
// Lifetimes are necessary for retagging semantics.
|| self.opts.unstable_opts.codegen_emit_retag.is_some()
}
pub fn diagnostic_width(&self) -> usize {
let default_column_width = 140;
if let Some(width) = self.opts.diagnostic_width {
width
} else {
// Upstream asks the terminal for its width here, through `termize`. This
// compiler is embedded: diagnostics are rendered for a program that asked over an
// interface, and there is no terminal attached to the process that could answer.
// A queried width would be the width of whatever terminal the process was started from, which
// is not where the text is going. `--diagnostic-width` above is the way a caller
// states one; absent that, the fixed default is the only honest answer, and it
// also makes rendering deterministic, which `ui_testing` used to have to ask for
// separately.
default_column_width
}
}
/// Returns the default symbol visibility.
pub fn default_visibility(&self) -> SymbolVisibility {
self.opts
.unstable_opts
.default_visibility
.or(self.target.options.default_visibility)
.unwrap_or(SymbolVisibility::Interposable)
}
pub fn staticlib_components(&self, verbatim: bool) -> (&str, &str) {
if verbatim {
("", "")
} else {
(&*self.target.staticlib_prefix, &*self.target.staticlib_suffix)
}
}
pub fn lint_groups_iter(&self) -> Box<dyn Iterator<Item = LintGroup> + '_> {
match self.lint_store {
Some(ref lint_store) => lint_store.lint_groups_iter(),
None => Box::new(core::iter::empty()),
}
}
/// Resolves a `path` mentioned inside Rust code, returning an absolute path.
///
/// This unifies the logic used for resolving `include_*!` and debugger visualizers.
pub fn resolve_path(&self, path: impl Into<PathBuf>, span: Span) -> PResult<'_, PathBuf> {
let path = path.into();
// Relative paths are resolved relative to the file in which they are found
// after macro expansion (that is, they are unhygienic).
if !path.is_absolute() {
let callsite = span.source_callsite();
let source_map = self.source_map();
let Some(mut base_path) = source_map.span_to_filename(callsite).into_local_path()
else {
return Err(self.dcx().create_err(diagnostics::ResolveRelativePath {
span,
path: source_map
.filename_for_diagnostics(&source_map.span_to_filename(callsite))
.to_string(),
}));
};
base_path.pop();
base_path.push(path);
Ok(base_path)
} else {
// This used to re-join the path through `components()` when it began with a Windows
// verbatim prefix, because `concat!` could produce one with mixed separators. There
// are no verbatim prefixes on this platform, so the branch was the identity and the
// rebuild was pure work.
Ok(path)
}
}
}
// JUSTIFICATION: defn of the suggested wrapper fns
impl Session {
pub fn verbose_internals(&self) -> bool {
self.opts.unstable_opts.verbose_internals
}
pub fn binary_dep_depinfo(&self) -> bool {
self.opts.unstable_opts.binary_dep_depinfo
}
pub fn mir_opt_level(&self) -> usize {
self.opts
.unstable_opts
.mir_opt_level
.unwrap_or_else(|| if self.opts.optimize != OptLevel::No { 2 } else { 1 })
}
/// Calculates the flavor of LTO to use for this compilation.
pub fn lto(&self) -> config::Lto {
// If our target has codegen requirements ignore the command line
if self.target.requires_lto {
return config::Lto::Fat;
}
// If the user specified something, return that. If they only said `-C
// lto` and we've for whatever reason forced off ThinLTO via the CLI,
// then ensure we can't use a ThinLTO.
match self.opts.cg.lto {
config::LtoCli::Unspecified => {
// The compiler was invoked without the `-Clto` flag. Fall
// through to the default handling
}
config::LtoCli::No => {
// The user explicitly opted out of any kind of LTO
return config::Lto::No;
}
config::LtoCli::Yes | config::LtoCli::Fat | config::LtoCli::NoParam => {
// All of these mean fat LTO
return config::Lto::Fat;
}
config::LtoCli::Thin => {
// The user explicitly asked for ThinLTO
if !self.thin_lto_supported {
// Backend doesn't support ThinLTO, fallback to fat LTO.
self.dcx().emit_warn(diagnostics::ThinLtoNotSupportedByBackend);
return config::Lto::Fat;
}
return config::Lto::Thin;
}
}
if !self.thin_lto_supported {
return config::Lto::No;
}
// Ok at this point the target doesn't require anything and the user
// hasn't asked for anything. Our next decision is whether or not
// we enable "auto" ThinLTO where we use multiple codegen units and
// then do ThinLTO over those codegen units. The logic below will
// either return `No` or `ThinLocal`.
// If processing command line options determined that we're incompatible
// with ThinLTO (e.g., `-C lto --emit llvm-ir`) then return that option.
if self.opts.cli_forced_local_thinlto_off {
return config::Lto::No;
}
// If `-Z thinlto` specified process that, but note that this is mostly
// a deprecated option now that `-C lto=thin` exists.
if let Some(enabled) = self.opts.unstable_opts.thinlto {
if enabled {
return config::Lto::ThinLocal;
} else {
return config::Lto::No;
}
}
// If there's only one codegen unit and LTO isn't enabled then there's
// no need for ThinLTO so just return false.
if self.codegen_units().as_usize() == 1 {
return config::Lto::No;
}
// Now we're in "defaults" territory. By default we enable ThinLTO for
// optimized compiles (anything greater than O0).
match self.opts.optimize {
config::OptLevel::No => config::Lto::No,
_ => config::Lto::ThinLocal,
}
}
/// Returns the panic strategy for this compile session. If the user explicitly selected one
/// using '-C panic', use that, otherwise use the panic strategy defined by the target.
pub fn panic_strategy(&self) -> PanicStrategy {
self.opts.cg.panic.unwrap_or(self.target.panic_strategy)
}
pub fn fewer_names(&self) -> bool {
if let Some(fewer_names) = self.opts.unstable_opts.fewer_names {
fewer_names
} else {
let more_names = self.opts.output_types.contains_key(&OutputType::LlvmAssembly)
|| self.opts.output_types.contains_key(&OutputType::Bitcode)
// AddressSanitizer and MemorySanitizer use alloca name when reporting an issue.
|| self.opts.unstable_opts.sanitizer.intersects(SanitizerSet::ADDRESS | SanitizerSet::MEMORY);
!more_names
}
}
pub fn unstable_options(&self) -> bool {
self.opts.unstable_opts.unstable_options
}
pub fn is_nightly_build(&self) -> bool {
self.opts.unstable_features.is_nightly_build()
}
pub fn overflow_checks(&self) -> bool {
self.opts.cg.overflow_checks.unwrap_or(self.opts.debug_assertions)
}
pub fn ub_checks(&self) -> bool {
self.opts.unstable_opts.ub_checks.unwrap_or(self.opts.debug_assertions)
}
pub fn contract_checks(&self) -> bool {
self.opts.unstable_opts.contract_checks.unwrap_or(false)
}
pub fn relocation_model(&self) -> RelocModel {
self.opts.cg.relocation_model.unwrap_or(self.target.relocation_model)
}
pub fn code_model(&self) -> Option<CodeModel> {
self.opts.cg.code_model.or(self.target.code_model)
}
pub fn tls_model(&self) -> TlsModel {
self.opts.unstable_opts.tls_model.unwrap_or(self.target.tls_model)
}
pub fn direct_access_external_data(&self) -> Option<bool> {
self.opts
.unstable_opts
.direct_access_external_data
.or(self.target.direct_access_external_data)
}
pub fn split_debuginfo(&self) -> SplitDebuginfo {
self.opts.cg.split_debuginfo.unwrap_or(self.target.split_debuginfo)
}
/// Returns the DWARF version passed on the CLI or the default for the target.
pub fn dwarf_version(&self) -> u32 {
self.opts
.cg
.dwarf_version
.or(self.opts.unstable_opts.dwarf_version)
.unwrap_or(self.target.default_dwarf_version)
}
pub fn stack_protector(&self) -> StackProtector {
if self.target.options.supports_stack_protector {
self.opts.unstable_opts.stack_protector
} else {
StackProtector::None
}
}
/// Returns the `-Zbranch-protection` info. Note that it is adjusted to the current target, e.g.
/// some targets only support certain Pointer Authentication Code keys.
///
/// Accessing the session's unstable `branch_protection` option fields directly is linted
/// against.
pub fn branch_protection(&self) -> Option<BranchProtection> {
let mut bp = self.opts.unstable_opts.branch_protection;
if let Some(bp) = bp.as_mut() {
// Windows on Arm only supports PAC Key B for return address signing, as shown in
// https://github.com/llvm/llvm-project/pull/203989. We parse the CLI flags for branch
// protection and target separately though, so we adjust this possible discrepancy here.
if self.target.os == Os::Windows && self.target.arch == Arch::AArch64 {
if let Some(pac_ret) = bp.pac_ret.as_mut()
&& pac_ret.key == PAuthKey::A
{
pac_ret.key = PAuthKey::B;
}
}
}
bp
}
pub fn must_emit_unwind_tables(&self) -> bool {
// This is used to control the emission of the `uwtable` attribute on
// LLVM functions. The `uwtable` attribute according to LLVM is:
//
// This attribute indicates that the ABI being targeted requires that an
// unwind table entry be produced for this function even if we can show
// that no exceptions passes by it. This is normally the case for the
// ELF x86-64 abi, but it can be disabled for some compilation units.
//
// Typically when we're compiling with `-C panic=abort` we don't need
// `uwtable` because we can't generate any exceptions! But note that
// some targets require unwind tables to generate backtraces.
// Unwind tables are needed when compiling with `-C panic=unwind`, but
// LLVM won't omit unwind tables unless the function is also marked as
// `nounwind`, so users are allowed to disable `uwtable` emission.
// Historically rustc always emits `uwtable` attributes by default, so
// even they can be disabled, they're still emitted by default.
//
// On some targets (including windows), however, exceptions include
// other events such as illegal instructions, segfaults, etc. This means
// that on Windows we end up still needing unwind tables even if the `-C
// panic=abort` flag is passed.
//
// You can also find more info on why Windows needs unwind tables in:
// https://bugzilla.mozilla.org/show_bug.cgi?id=1302078
//
// If a target requires unwind tables, then they must be emitted.
// Otherwise, we can defer to the `-C force-unwind-tables=<yes/no>`
// value, if it is provided, or disable them, if not.
self.target.requires_uwtable
|| self
.opts
.cg
.force_unwind_tables
.unwrap_or(self.panic_strategy().unwinds() || self.target.default_uwtable)
}
/// Returns the number of codegen units that should be used for this
/// compilation
pub fn codegen_units(&self) -> CodegenUnits {
if let Some(n) = self.opts.cli_forced_codegen_units {
return CodegenUnits::User(n);
}
if let Some(n) = self.target.default_codegen_units {
return CodegenUnits::Default(n as usize);
}
// If incremental compilation is turned on, we default to a high number
// codegen units in order to reduce the "collateral damage" small
// changes cause.
if self.opts.incremental.is_some() {
return CodegenUnits::Default(256);
}
// Why is 16 codegen units the default all the time?
//
// The main reason for enabling multiple codegen units by default is to
// leverage the ability for the codegen backend to do codegen and
// optimization in parallel. This allows us, especially for large crates, to
// make good use of all available resources on the machine once we've
// hit that stage of compilation. Large crates especially then often
// take a long time in codegen/optimization and this helps us amortize that
// cost.
//
// Note that a high number here doesn't mean that we'll be spawning a
// large number of threads in parallel. Upstream rustc rate-limited its backend
// globally through the `jobserver` crate; this compiler has no jobserver and its
// backend is the consumer's, whose concurrency is its own decision.
//
// Rather a high number here means that we should be able to keep a lot
// of idle cpus busy. By ensuring that no codegen unit takes *too* long
// to build we'll be guaranteed that all cpus will finish pretty closely
// to one another and we should make relatively optimal use of system
// resources
//
// Note that the main cost of codegen units is that it prevents LLVM
// from inlining across codegen units. Users in general don't have a lot
// of control over how codegen units are split up so it's our job in the
// compiler to ensure that undue performance isn't lost when using
// codegen units (aka we can't require everyone to slap `#[inline]` on
// everything).
//
// If we're compiling at `-O0` then the number doesn't really matter too
// much because performance doesn't matter and inlining is ok to lose.
// In debug mode we just want to try to guarantee that no cpu is stuck
// doing work that could otherwise be farmed to others.
//
// In release mode, however (O1 and above) performance does indeed
// matter! To recover the loss in performance due to inlining we'll be
// enabling ThinLTO by default (the function for which is just below).
// This will ensure that we recover any inlining wins we otherwise lost
// through codegen unit partitioning.
//
// ---
//
// Ok that's a lot of words but the basic tl;dr; is that we want a high
// number here -- but not too high. Additionally we're "safe" to have it
// always at the same number at all optimization levels.
//
// As a result 16 was chosen here! Mostly because it was a power of 2
// and most benchmarks agreed it was roughly a local optimum. Not very
// scientific.
CodegenUnits::Default(16)
}
pub fn teach(&self, code: ErrCode) -> bool {
self.opts.unstable_opts.teach && self.dcx().must_teach(code)
}
pub fn edition(&self) -> Edition {
self.opts.edition
}
pub fn link_dead_code(&self) -> bool {
self.opts.cg.link_dead_code.unwrap_or(false)
}
/// Get the deployment target on Apple platforms based on the standard environment variables,
/// or fall back to the minimum version supported by `rustc`.
///
/// This should be guarded behind `if sess.target.is_like_darwin`.
pub fn apple_deployment_target(&self) -> apple::OSVersion {
let min = apple::OSVersion::minimum_deployment_target(&self.target);
let env_var = apple::deployment_target_env_var(&self.target.os);
// FIXME(madsmtm): Track changes to this.
if let Some(deployment_target) = eko::env::var(env_var) {
match apple::OSVersion::from_str(&deployment_target) {
Ok(version) => {
let os_min = apple::OSVersion::os_minimum_deployment_target(&self.target.os);
// It is common that the deployment target is set a bit too low, for example on
// macOS Aarch64 to also target older x86_64. So we only want to warn when variable
// is lower than the minimum OS supported by rustc, not when the variable is lower
// than the minimum for a specific target.
if version < os_min {
self.dcx().emit_warn(diagnostics::AppleDeploymentTarget::TooLow {
env_var,
version: version.fmt_pretty().to_string(),
os_min: os_min.fmt_pretty().to_string(),
});
}
// Raise the deployment target to the minimum supported.
version.max(min)
}
Err(error) => {
self.dcx()
.emit_err(diagnostics::AppleDeploymentTarget::Invalid { env_var, error });
min
}
}
} else {
// If no deployment target variable is set, default to the minimum found above.
min
}
}
pub fn sanitizers(&self) -> SanitizerSet {
return self.opts.unstable_opts.sanitizer | self.target.options.default_sanitizers;
}
pub fn pointer_authentication(&self) -> bool {
self.pointer_auth_config.is_some()
}
pub fn pointer_authentication_functions(&self) -> Option<&PointerAuthSchema> {
self.pointer_auth_config.as_ref().and_then(|cfg| cfg.function_pointers.as_ref())
}
pub fn pointer_authentication_init_fini(&self) -> Option<&PointerAuthSchema> {
self.pointer_auth_config.as_ref().and_then(|cfg| cfg.init_fini.as_ref())
}
}
// JUSTIFICATION: part of session construction
fn default_emitter(sopts: &config::Options, source_map: Arc<SourceMap>) -> Box<DynEmitter> {
let macro_backtrace = sopts.unstable_opts.macro_backtrace;
let track_diagnostics = sopts.unstable_opts.track_diagnostics;
let terminal_url = match sopts.unstable_opts.terminal_urls {
TerminalUrl::Auto => {
match (
eko::env::var("COLORTERM").as_deref(),
eko::env::var("TERM").as_deref(),
) {
(Some("truecolor"), Some("xterm-256color"))
if sopts.unstable_features.is_nightly_build() =>
{
TerminalUrl::Yes
}
_ => TerminalUrl::No,
}
}
t => t,
};
let source_map = if sopts.unstable_opts.link_only { None } else { Some(source_map) };
match sopts.error_format {
config::ErrorOutputType::HumanReadable { kind, color_config } => match kind {
HumanReadableErrorType { short, unicode } => {
// Everything the snippet renderer took is gone with it: `diagnostic_width`
// wrapped the source line, `theme` picked box-drawing characters,
// `terminal_url` made an error code clickable, `macro_backtrace` and
// `ignored_directories_in_source_blocks` chose which frames to draw. A plain
// line has no width, no theme and no frames. The options still parse; they
// simply have nothing to configure.
let _ = (macro_backtrace, track_diagnostics, terminal_url, unicode);
let emitter = PlainEmitter::new().sm(source_map).short_message(short);
Box::new(emitter)
}
},
config::ErrorOutputType::Json { pretty, json_rendered, color_config } => Box::new(
JsonEmitter::new(
Box::new(stderr()),
source_map,
pretty,
json_rendered,
color_config,
)
.ui_testing(sopts.unstable_opts.ui_testing)
.ignored_directories_in_source_blocks(
sopts.unstable_opts.ignore_directory_in_diagnostics_source_blocks.clone(),
)
.diagnostic_width(sopts.diagnostic_width)
.macro_backtrace(macro_backtrace)
.track_diagnostics(track_diagnostics)
.terminal_url(terminal_url),
),
}
}
// JUSTIFICATION: literally session construction
pub fn build_session(
sopts: config::Options,
io: CompilerIO,
driver_lint_caps: FxHashMap<lint::LintId, lint::Level>,
target: Target,
cfg_version: &'static str,
ice_file: Option<PathBuf>,
using_internal_features: &'static AtomicBool,
) -> Session {
// FIXME: This is not general enough to make the warning lint completely override
// normal diagnostic warnings, since the warning lint can also be denied and changed
// later via the source code.
let warnings_allow = sopts
.lint_opts
.iter()
.rfind(|&(key, _)| *key == "warnings")
.is_some_and(|&(_, level)| level == lint::Allow);
let cap_lints_allow = sopts.lint_cap.is_some_and(|cap| cap == lint::Allow);
let can_emit_warnings = !(warnings_allow || cap_lints_allow);
let source_map = crate::rustc_span::source_map::get_source_map().unwrap();
let emitter = default_emitter(&sopts, Arc::clone(&source_map));
let mut dcx =
DiagCtxt::new(emitter).with_flags(sopts.unstable_opts.dcx_flags(can_emit_warnings));
if let Some(ice_file) = ice_file {
dcx = dcx.with_ice_file(ice_file);
}
if let Some(msrv) = sopts.unstable_opts.hint_msrv {
dcx = dcx.with_msrv(msrv);
}
let host_triple = TargetTuple::from_tuple(config::host_tuple());
let (host, target_warnings) =
Target::search(&host_triple, sopts.sysroot.path(), sopts.unstable_opts.unstable_options)
.unwrap_or_else(|e| {
dcx.handle().fatal(format!("Error loading host specification: {e}"))
});
for warning in target_warnings.warning_messages() {
dcx.handle().warn(warning)
}
// The host target, not `wasm32-wasip2`.
//
// Upstream looks up a wasm target here so that a proc macro compiled to wasm can be loaded
// (`crate::rustc_metadata::locator` is the only reader). **We never load a wasm proc macro**, and
// the lookup is unconditional and fatal on failure - so carrying `wasm32-wasip2`'s spec was
// the sole reason a target we do not build for had to stay in `supported_targets!`.
//
// The field still has to exist and be a `Target`; which one is immaterial on a path nothing
// takes. If wasm proc macros are ever wanted, restore the spec and this lookup together.
let wasm_proc_macro_tuple = host_triple.clone();
let wasm_proc_macro_target = host.clone();
// `-Z self-profile` used to build a `SelfProfiler` here, writing a `measureme` event log to
// `d`. `measureme` is std-only and was removed with `std`, so there is nothing to build and
// the flag records nothing. Say so rather than accepting it and producing no file: a
// profiling run that silently yields nothing is worse than one that refuses. The
// `-Z self-profile*` flags still parse, so a recorder can be reattached here without a CLI
// change.
if let SwitchWithOptPath::Enabled(_) = sopts.unstable_opts.self_profile {
dcx.handle().emit_warn(diagnostics::SelfProfileUnsupported);
}
let psess = ParseSess::with_dcx(dcx, source_map);
let host_triple = config::host_tuple();
let target_triple = sopts.target_triple.tuple();
// FIXME use host sysroot?
let host_tlib_path = SearchPath::from_sysroot_and_triple(sopts.sysroot.path(), host_triple);
let target_tlib_path = SearchPath::from_sysroot_and_triple(sopts.sysroot.path(), target_triple);
let wasm_proc_macro_tlib_path =
SearchPath::from_sysroot_and_triple(sopts.sysroot.path(), wasm_proc_macro_tuple.tuple());
let prof = SelfProfilerRef::new(
sopts.unstable_opts.time_passes.then(|| sopts.unstable_opts.time_passes_format),
);
let ctfe_backtrace = Lock::new(match eko::env::var("RUSTC_CTFE_BACKTRACE") {
Some(ref val) if val == "immediate" => CtfeBacktrace::Immediate,
Some(ref val) if val != "0" => CtfeBacktrace::Capture,
_ => CtfeBacktrace::Disabled,
});
let asm_arch = if target.allow_asm { InlineAsmArch::from_arch(&target.arch) } else { None };
let target_filesearch = Arc::new(filesearch::FileSearch::new(
&sopts.search_paths,
&target_tlib_path,
&target,
sopts.unstable_opts.implicit_sysroot_deps,
));
let host_filesearch = if target == host {
Arc::clone(&target_filesearch)
} else {
Arc::new(filesearch::FileSearch::new(
&sopts.search_paths,
&host_tlib_path,
&host,
sopts.unstable_opts.implicit_sysroot_deps,
))
};
let wasm_proc_macro_filesearch = if sopts.unstable_opts.wasm_proc_macros {
Some(Arc::new(FileSearch::new(
&sopts.search_paths,
&wasm_proc_macro_tlib_path,
&wasm_proc_macro_target,
sopts.unstable_opts.implicit_sysroot_deps,
)))
} else {
None
};
let timings = TimingSectionHandler::new(sopts.json_timings);
let pointer_auth_config: Option<PointerAuthConfig> =
PointerAuthConfig::from_raw(&sopts.unstable_opts.pointer_authentication, &target);
let sess = Session {
target,
host,
wasm_proc_macro_tuple,
wasm_proc_macro_target,
opts: sopts,
target_tlib_path,
psess,
unstable_features: UnstableFeatures::from_environment(None),
config: Cfg::default(),
check_config: CheckCfg::default(),
proc_macro_quoted_spans: Default::default(),
io,
prof,
timings,
mir_dumps: Default::default(),
lint_store: None,
driver_lint_caps,
ctfe_backtrace,
miri_unleashed_features: Lock::new(Default::default()),
asm_arch,
internal_target_features: Default::default(),
cfg_version,
using_internal_features,
env_depinfo: Default::default(),
file_depinfo: Default::default(),
target_filesearch,
host_filesearch,
wasm_proc_macro_filesearch,
replaced_intrinsics: FxHashSet::default(), // filled by `run_compiler`
fallback_intrinsics: FxHashSet::default(), // filled by `run_compiler`
thin_lto_supported: true, // filled by `run_compiler`
mir_opt_bisect_eval_count: AtomicUsize::new(0),
removed_rustc_main_attr: AtomicBool::new(false),
pointer_auth_config,
};
validate_commandline_args_with_session_available(&sess);
sess
}
pub fn generate_proc_macro_decls_symbol(stable_crate_id: StableCrateId) -> String {
format!("__rustc_proc_macro_decls_{:08x}__", stable_crate_id.as_u64())
}
/// Validate command line arguments with a `Session`.
///
/// If it is useful to have a Session available already for validating a commandline argument, you
/// can do so here.
// JUSTIFICATION: needs to access args to validate them
fn validate_commandline_args_with_session_available(sess: &Session) {
// Since we don't know if code in an rlib will be linked to statically or
// dynamically downstream, rustc generates `__imp_` symbols that help linkers
// on Windows deal with this lack of knowledge (#27438). Unfortunately,
// these manually generated symbols confuse LLD when it tries to merge
// bitcode during ThinLTO. Therefore we disallow dynamic linking on Windows
// when compiling for LLD ThinLTO. This way we can validly just not generate
// the `dllimport` attributes and `__imp_` symbols in that case.
if sess.opts.cg.linker_plugin_lto.enabled()
&& sess.opts.cg.prefer_dynamic
&& sess.target.is_like_windows
{
sess.dcx().emit_err(diagnostics::LinkerPluginToWindowsNotSupported);
}
if sess
.pointer_auth_config
.as_ref()
.and_then(|cfg| cfg.function_pointers.as_ref())
.is_some_and(|schema| matches!(schema.discrimination_kind, PointerAuthDiscrimination::Type))
{
sess.dcx().emit_err(
diagnostics::PointerAuthenticationTypeDiscriminationNotSupportedForTarget {
target_triple: &sess.opts.target_triple,
},
);
}
if sess.target.cfg_abi != CfgAbi::Pauthtest
&& !sess.opts.unstable_opts.pointer_authentication.is_empty()
{
sess.dcx().emit_warn(diagnostics::PointerAuthenticationNotSupportedForTarget {
target_triple: &sess.opts.target_triple,
});
}
// Make sure that any given profiling data actually exists so LLVM can't
// decide to silently skip PGO.
if let Some(ref path) = sess.opts.cg.profile_use {
if !path.exists() {
sess.dcx().emit_err(diagnostics::ProfileUseFileDoesNotExist { path });
}
}
// Do the same for sample profile data.
if let Some(ref path) = sess.opts.cg.profile_sample_use {
if !path.exists() {
sess.dcx().emit_err(diagnostics::ProfileSampleUseFileDoesNotExist { path });
}
}
// Unwind tables cannot be disabled if the target requires them.
if let Some(include_uwtables) = sess.opts.cg.force_unwind_tables {
if sess.target.requires_uwtable && !include_uwtables {
sess.dcx().emit_err(diagnostics::TargetRequiresUnwindTables);
}
}
// Sanitizers can only be used on platforms that we know have working sanitizer codegen.
let supported_sanitizers = sess.target.options.supported_sanitizers;
let mut unsupported_sanitizers = sess.opts.unstable_opts.sanitizer - supported_sanitizers;
// Niche: if `fixed-x18`, or effectively switching on `reserved-x18` flag, is enabled
// we should allow Shadow Call Stack sanitizer.
if sess.opts.unstable_opts.fixed_x18 && sess.target.arch == Arch::AArch64 {
unsupported_sanitizers -= SanitizerSet::SHADOWCALLSTACK;
}
match unsupported_sanitizers.into_iter().count() {
0 => {}
1 => {
sess.dcx().emit_err(diagnostics::SanitizerNotSupported {
us: unsupported_sanitizers.to_string(),
});
}
_ => {
sess.dcx().emit_err(diagnostics::SanitizersNotSupported {
us: unsupported_sanitizers.to_string(),
});
}
}
// Cannot mix and match mutually-exclusive sanitizers.
if let Some((first, second)) = sess.opts.unstable_opts.sanitizer.mutually_exclusive() {
sess.dcx().emit_err(diagnostics::CannotMixAndMatchSanitizers {
first: first.to_string(),
second: second.to_string(),
});
}
// Cannot enable crt-static with sanitizers on Linux
if sess.crt_static(None)
&& !sess.opts.unstable_opts.sanitizer.is_empty()
&& !sess.target.is_like_msvc
{
sess.dcx().emit_err(diagnostics::CannotEnableCrtStaticLinux);
}
// FIXME(jchlanda) Pauthtest does not support static linking. It must be dynamically linked,
// with a dynamic linker acting as the ELF interpreter that can resolve pauth relocations and
// enforce pointer authentication constraints.
if sess.crt_static(None) && sess.target.cfg_abi == CfgAbi::Pauthtest {
sess.dcx().emit_err(diagnostics::CannotEnableCrtStaticPointerAuth);
}
// LLVM CFI requires LTO.
if sess.is_sanitizer_cfi_enabled()
&& !(sess.lto() == config::Lto::Fat || sess.opts.cg.linker_plugin_lto.enabled())
{
sess.dcx().emit_err(diagnostics::SanitizerCfiRequiresLto);
}
// KCFI requires panic=abort
if sess.is_sanitizer_kcfi_enabled() && sess.panic_strategy().unwinds() {
sess.dcx().emit_err(diagnostics::SanitizerKcfiRequiresPanicAbort);
}
// LLVM CFI using rustc LTO requires a single codegen unit.
if sess.is_sanitizer_cfi_enabled()
&& sess.lto() == config::Lto::Fat
&& (sess.codegen_units().as_usize() != 1)
{
sess.dcx().emit_err(diagnostics::SanitizerCfiRequiresSingleCodegenUnit);
}
// Canonical jump tables requires CFI.
if sess.is_sanitizer_cfi_canonical_jump_tables_disabled() {
if !sess.is_sanitizer_cfi_enabled() {
sess.dcx().emit_err(diagnostics::SanitizerCfiCanonicalJumpTablesRequiresCfi);
}
}
// KCFI arity indicator requires KCFI.
if sess.is_sanitizer_kcfi_arity_enabled() && !sess.is_sanitizer_kcfi_enabled() {
sess.dcx().emit_err(diagnostics::SanitizerKcfiArityRequiresKcfi);
}
// LLVM CFI pointer generalization requires CFI or KCFI.
if sess.is_sanitizer_cfi_generalize_pointers_enabled() {
if !(sess.is_sanitizer_cfi_enabled() || sess.is_sanitizer_kcfi_enabled()) {
sess.dcx().emit_err(diagnostics::SanitizerCfiGeneralizePointersRequiresCfi);
}
}
// LLVM CFI integer normalization requires CFI or KCFI.
if sess.is_sanitizer_cfi_normalize_integers_enabled() {
if !(sess.is_sanitizer_cfi_enabled() || sess.is_sanitizer_kcfi_enabled()) {
sess.dcx().emit_err(diagnostics::SanitizerCfiNormalizeIntegersRequiresCfi);
}
}
// LTO unit splitting requires LTO.
if sess.is_split_lto_unit_enabled()
&& !(sess.lto() == config::Lto::Fat
|| sess.lto() == config::Lto::Thin
|| sess.opts.cg.linker_plugin_lto.enabled())
{
sess.dcx().emit_err(diagnostics::SplitLtoUnitRequiresLto);
}
// VFE requires LTO.
if sess.lto() != config::Lto::Fat {
if sess.opts.unstable_opts.virtual_function_elimination {
sess.dcx().emit_err(diagnostics::UnstableVirtualFunctionElimination);
}
}
if sess.opts.unstable_opts.stack_protector != StackProtector::None {
if !sess.target.options.supports_stack_protector {
sess.dcx().emit_warn(diagnostics::StackProtectorNotSupportedForTarget {
stack_protector: sess.opts.unstable_opts.stack_protector,
target_triple: &sess.opts.target_triple,
});
}
}
if sess.opts.unstable_opts.small_data_threshold.is_some() {
if sess.target.small_data_threshold_support() == SmallDataThresholdSupport::None {
sess.dcx().emit_warn(diagnostics::SmallDataThresholdNotSupportedForTarget {
target_triple: &sess.opts.target_triple,
})
}
}
if sess.opts.unstable_opts.branch_protection.is_some() && sess.target.arch != Arch::AArch64 {
sess.dcx().emit_err(diagnostics::BranchProtectionRequiresAArch64);
}
if let Some(dwarf_version) =
sess.opts.cg.dwarf_version.or(sess.opts.unstable_opts.dwarf_version)
{
// DWARF 1 is not supported by LLVM and DWARF 6 is not yet finalized.
if dwarf_version < 2 || dwarf_version > 5 {
sess.dcx().emit_err(diagnostics::UnsupportedDwarfVersion { dwarf_version });
}
}
if !sess.target.options.supported_split_debuginfo.contains(&sess.split_debuginfo())
&& !sess.opts.unstable_opts.unstable_options
{
sess.dcx().emit_err(diagnostics::SplitDebugInfoUnstablePlatform {
debuginfo: sess.split_debuginfo(),
});
}
if sess.opts.unstable_opts.embed_source {
let dwarf_version = sess.dwarf_version();
if dwarf_version < 5 {
sess.dcx()
.emit_warn(diagnostics::EmbedSourceInsufficientDwarfVersion { dwarf_version });
}
if sess.opts.debuginfo == DebugInfo::None {
sess.dcx().emit_warn(diagnostics::EmbedSourceRequiresDebugInfo);
}
}
if let InstrumentMcount::Fentry(opts) = sess.opts.unstable_opts.instrument_mcount {
if !sess.target.options.supports_fentry {
sess.dcx()
.emit_err(diagnostics::InstrumentationNotSupported { us: "fentry".to_string() });
}
if (opts.no_call || opts.record) && sess.target.arch != Arch::S390x {
sess.dcx()
.emit_err(diagnostics::InstrumentationNotSupported { us: "fentry-*".to_string() });
}
}
if sess.opts.unstable_opts.instrument_xray.is_some() && !sess.target.options.supports_xray {
sess.dcx().emit_err(diagnostics::InstrumentationNotSupported { us: "XRay".to_string() });
}
if let Some(flavor) = sess.opts.cg.linker_flavor
&& let Some(compatible_list) = sess.target.linker_flavor.check_compatibility(flavor)
{
let flavor = flavor.desc();
sess.dcx().emit_err(diagnostics::IncompatibleLinkerFlavor { flavor, compatible_list });
}
if sess.opts.unstable_opts.function_return != FunctionReturn::default() {
if !matches!(sess.target.arch, Arch::X86 | Arch::X86_64) {
sess.dcx().emit_err(diagnostics::FunctionReturnRequiresX86OrX8664);
}
}
if sess.opts.unstable_opts.indirect_branch_cs_prefix {
if !matches!(sess.target.arch, Arch::X86 | Arch::X86_64) {
sess.dcx().emit_err(diagnostics::IndirectBranchCsPrefixRequiresX86OrX8664);
}
}
if let Some(regparm) = sess.opts.unstable_opts.regparm {
if regparm > 3 {
sess.dcx().emit_err(diagnostics::UnsupportedRegparm { regparm });
}
if sess.target.arch != Arch::X86 {
sess.dcx().emit_err(diagnostics::UnsupportedRegparmArch);
}
}
if sess.opts.unstable_opts.reg_struct_return {
if sess.target.arch != Arch::X86 {
sess.dcx().emit_err(diagnostics::UnsupportedRegStructReturnArch);
}
}
// The code model check applies to `thunk` and `thunk-extern`, but not `thunk-inline`, so it is
// kept as a `match` to force a change if new ones are added, even if we currently only support
// `thunk-extern` like Clang.
match sess.opts.unstable_opts.function_return {
FunctionReturn::Keep => (),
FunctionReturn::ThunkExtern => {
// FIXME: In principle, the inherited base LLVM target code model could be large,
// but this only checks whether we were passed one explicitly (like Clang does).
if let Some(code_model) = sess.code_model()
&& code_model == CodeModel::Large
{
sess.dcx()
.emit_err(diagnostics::FunctionReturnThunkExternRequiresNonLargeCodeModel);
}
}
}
if sess.opts.unstable_opts.packed_stack {
if sess.target.arch != Arch::S390x {
sess.dcx().emit_err(diagnostics::UnsupportedPackedStack);
}
}
if let Some(ref cpu_name) = sess.opts.cg.target_cpu {
if cpu_name == NATIVE_CPU && sess.target.requires_consistent_cpu {
sess.dcx().emit_fatal(diagnostics::NativeTargetCpuNotAllowed {
target_triple: &sess.opts.target_triple,
need_explicit_cpu: sess.target.need_explicit_cpu,
});
}
}
}
/// Holds data on the current incremental compilation session, if there is one.
pub struct IncrCompSession {
/// The directory containing all cached data. Cached data from a previous
/// session can be read out of it and new data for the current session will
/// be written into it.
pub session_directory: PathBuf,
/// `_lock_file` is never directly used, but its presence
/// alone has an effect, because the file will unlock when the session is
/// dropped.
pub _lock_file: flock::Lock,
}
/// A wrapper around an [`DiagCtxt`] that is used for early error emissions.
pub struct EarlyDiagCtxt {
dcx: DiagCtxt,
}
impl EarlyDiagCtxt {
pub fn new(output: ErrorOutputType) -> Self {
let emitter = mk_emitter(output);
Self { dcx: DiagCtxt::new(emitter) }
}
/// Swap out the underlying dcx once we acquire the user's preference on error emission
/// format. If `early_err` was previously called this will panic.
pub fn set_error_format(&mut self, output: ErrorOutputType) {
assert!(self.dcx.handle().has_errors().is_none());
let emitter = mk_emitter(output);
self.dcx = DiagCtxt::new(emitter);
}
pub fn early_note(&self, msg: impl Into<DiagMessage>) {
self.dcx.handle().note(msg)
}
pub fn early_help(&self, msg: impl Into<DiagMessage>) {
self.dcx.handle().struct_help(msg).emit()
}
#[must_use = "raise_fatal must be called on the returned ErrorGuaranteed in order to exit with a non-zero status code"]
pub fn early_err(&self, msg: impl Into<DiagMessage>) -> ErrorGuaranteed {
self.dcx.handle().err(msg)
}
pub fn early_fatal(&self, msg: impl Into<DiagMessage>) -> ! {
self.dcx.handle().fatal(msg)
}
pub fn early_struct_fatal(&self, msg: impl Into<DiagMessage>) -> Diag<'_, FatalAbort> {
self.dcx.handle().struct_fatal(msg)
}
pub fn early_warn(&self, msg: impl Into<DiagMessage>) {
self.dcx.handle().warn(msg)
}
pub fn early_struct_warn(&self, msg: impl Into<DiagMessage>) -> Diag<'_, ()> {
self.dcx.handle().struct_warn(msg)
}
}
fn mk_emitter(output: ErrorOutputType) -> Box<DynEmitter> {
let emitter: Box<DynEmitter> = match output {
config::ErrorOutputType::HumanReadable { kind, color_config } => match kind {
HumanReadableErrorType { short, unicode: _ } => {
Box::new(PlainEmitter::new().short_message(short))
}
},
config::ErrorOutputType::Json { pretty, json_rendered, color_config } => {
Box::new(JsonEmitter::new(
Box::new(stderr()),
Some(Arc::new(SourceMap::new(FilePathMapping::empty()))),
pretty,
json_rendered,
color_config,
))
}
};
emitter
}