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
use crate::constant::ConstantRef;
#[cfg(feature="llvm-9-or-greater")]
use crate::debugloc::*;
use crate::function::{Function, FunctionAttribute, GroupID};
use crate::llvm_sys::*;
use crate::name::Name;
use crate::types::{FPType, Type, TypeRef, Typed, Types, TypesBuilder};
use std::collections::{BTreeMap, HashMap, HashSet};
use std::path::Path;
#[derive(Clone)]
pub struct Module {
pub name: String,
pub source_file_name: String,
pub data_layout: DataLayout,
pub target_triple: Option<String>,
pub functions: Vec<Function>,
pub global_vars: Vec<GlobalVariable>,
pub global_aliases: Vec<GlobalAlias>,
pub inline_assembly: String,
pub types: Types,
}
impl Module {
pub fn type_of<T: Typed + ?Sized>(&self, t: &T) -> TypeRef {
self.types.type_of(t)
}
pub fn get_func_by_name(&self, name: &str) -> Option<&Function> {
self.functions.iter().find(|func| func.name == name)
}
pub fn from_bc_path(path: impl AsRef<Path>) -> Result<Self, String> {
use std::ffi::{CStr, CString};
use std::mem;
let path = CString::new(
path.as_ref()
.to_str()
.expect("Did not find a valid Unicode path string"),
)
.expect("Failed to convert to CString");
debug!("Creating a Module from path {:?}", path);
let memory_buffer = unsafe {
let mut memory_buffer = std::ptr::null_mut();
let mut err_string = std::mem::zeroed();
let return_code = LLVMCreateMemoryBufferWithContentsOfFile(
path.as_ptr() as *const _,
&mut memory_buffer,
&mut err_string,
);
if return_code != 0 {
return Err(CStr::from_ptr(err_string)
.to_str()
.expect("Failed to convert CStr")
.to_owned());
}
memory_buffer
};
debug!("Created a MemoryBuffer");
let context = crate::from_llvm::Context::new();
use llvm_sys::bit_reader::LLVMParseBitcodeInContext2;
let module = unsafe {
let mut module: mem::MaybeUninit<LLVMModuleRef> = mem::MaybeUninit::uninit();
let return_code =
LLVMParseBitcodeInContext2(context.ctx, memory_buffer, module.as_mut_ptr());
LLVMDisposeMemoryBuffer(memory_buffer);
if return_code != 0 {
return Err("Failed to parse bitcode".to_string());
}
module.assume_init()
};
debug!("Parsed bitcode to llvm_sys module");
Ok(Self::from_llvm_ref(module))
}
}
#[derive(PartialEq, Clone, Debug)]
pub struct GlobalVariable {
pub name: Name,
pub linkage: Linkage,
pub visibility: Visibility,
pub is_constant: bool,
pub ty: TypeRef,
pub addr_space: AddrSpace,
pub dll_storage_class: DLLStorageClass,
pub thread_local_mode: ThreadLocalMode,
pub unnamed_addr: Option<UnnamedAddr>,
pub initializer: Option<ConstantRef>,
pub section: Option<String>,
pub comdat: Option<Comdat>,
pub alignment: u32,
#[cfg(feature="llvm-9-or-greater")]
pub debugloc: Option<DebugLoc>,
}
impl Typed for GlobalVariable {
fn get_type(&self, _types: &Types) -> TypeRef {
self.ty.clone()
}
}
#[cfg(feature="llvm-9-or-greater")]
impl HasDebugLoc for GlobalVariable {
fn get_debug_loc(&self) -> &Option<DebugLoc> {
&self.debugloc
}
}
#[derive(PartialEq, Clone, Debug)]
pub struct GlobalAlias {
pub name: Name,
pub aliasee: ConstantRef,
pub linkage: Linkage,
pub visibility: Visibility,
pub ty: TypeRef,
pub addr_space: AddrSpace,
pub dll_storage_class: DLLStorageClass,
pub thread_local_mode: ThreadLocalMode,
pub unnamed_addr: Option<UnnamedAddr>,
}
impl Typed for GlobalAlias {
fn get_type(&self, _types: &Types) -> TypeRef {
self.ty.clone()
}
}
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum UnnamedAddr {
Local,
Global,
}
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum Linkage {
Private,
Internal,
External,
ExternalWeak,
AvailableExternally,
LinkOnceAny,
LinkOnceODR,
LinkOnceODRAutoHide,
WeakAny,
WeakODR,
Common,
Appending,
DLLImport,
DLLExport,
Ghost,
LinkerPrivate,
LinkerPrivateWeak,
}
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum Visibility {
Default,
Hidden,
Protected,
}
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum DLLStorageClass {
Default,
Import,
Export,
}
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum ThreadLocalMode {
NotThreadLocal,
GeneralDynamic,
LocalDynamic,
InitialExec,
LocalExec,
}
pub type AddrSpace = u32;
#[derive(PartialEq, Eq, Clone, Debug)]
pub struct FunctionAttributeGroup {
pub group_id: GroupID,
pub attrs: Vec<FunctionAttribute>,
}
#[derive(PartialEq, Eq, Clone, Debug)]
pub struct Comdat {
pub name: String,
pub selection_kind: SelectionKind,
}
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum SelectionKind {
Any,
ExactMatch,
Largest,
NoDuplicates,
SameSize,
}
#[derive(Clone, Debug)]
pub struct DataLayout {
pub layout_str: String,
pub endianness: Endianness,
pub stack_alignment: Option<u32>,
pub program_address_space: AddrSpace,
pub alloca_address_space: AddrSpace,
pub alignments: Alignments,
pub mangling: Option<Mangling>,
pub native_int_widths: Option<HashSet<u32>>,
pub non_integral_ptr_types: HashSet<AddrSpace>,
}
impl PartialEq for DataLayout {
fn eq(&self, other: &Self) -> bool {
&self.layout_str == &other.layout_str
}
}
impl Eq for DataLayout {}
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum Endianness {
LittleEndian,
BigEndian,
}
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct Alignment {
pub abi: u32,
pub pref: u32,
}
#[cfg(feature="llvm-9-or-greater")]
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct FunctionPtrAlignment {
pub independent: bool,
pub abi: u32,
}
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct PointerLayout {
pub size: u32,
pub alignment: Alignment,
pub index_size: u32,
}
#[derive(Clone, Debug)]
pub struct Alignments {
int_alignments: BTreeMap<u32, Alignment>,
vec_alignments: BTreeMap<u32, Alignment>,
fp_alignments: HashMap<u32, Alignment>,
agg_alignment: Alignment,
#[cfg(feature="llvm-9-or-greater")]
fptr_alignment: FunctionPtrAlignment,
#[cfg(feature="llvm-9-or-greater")]
fptr_alignment_as_alignment: Alignment,
pointer_layouts: HashMap<AddrSpace, PointerLayout>,
}
impl Alignments {
pub fn type_alignment(&self, ty: &Type) -> &Alignment {
match ty {
Type::IntegerType { bits } => self.int_alignment(*bits),
Type::VectorType { element_type, num_elements, .. } => {
let element_size_bits = match element_type.as_ref() {
Type::IntegerType { bits } => *bits,
Type::FPType(fpt) => Self::fpt_size(*fpt),
ty => panic!("Didn't expect a vector with element type {:?}", ty),
};
self.vec_alignment(element_size_bits * (*num_elements as u32))
},
Type::FPType(fpt) => self.fp_alignment(*fpt),
Type::StructType { .. } | Type::NamedStructType { .. } | Type::ArrayType { .. } => {
self.agg_alignment()
},
Type::PointerType {
pointee_type,
addr_space,
} => match pointee_type.as_ref() {
#[cfg(feature="llvm-9-or-greater")]
Type::FuncType { .. } => &self.fptr_alignment_as_alignment,
_ => &self.ptr_alignment(*addr_space).alignment,
},
_ => panic!("Don't know how to get the alignment of {:?}", ty),
}
}
pub fn int_alignment(&self, size: u32) -> &Alignment {
if let Some(alignment) = self.int_alignments.get(&size) {
return alignment;
}
let next_largest_entry = self.int_alignments.iter().filter(|(&k, _)| k > size).next();
match next_largest_entry {
Some((_, alignment)) => alignment,
None => {
self.int_alignments
.values()
.rev()
.next()
.expect("Should have at least one explicit entry")
},
}
}
pub fn vec_alignment(&self, size: u32) -> &Alignment {
if let Some(alignment) = self.vec_alignments.get(&size) {
return alignment;
}
let next_smaller_entry = self.vec_alignments.iter().filter(|(&k, _)| k < size).next();
match next_smaller_entry {
Some((_, alignment)) => alignment,
None => {
self.vec_alignments
.values()
.next()
.expect("Should have at least one explicit entry")
},
}
}
pub fn fp_alignment(&self, fpt: FPType) -> &Alignment {
self.fp_alignments
.get(&Self::fpt_size(fpt))
.unwrap_or_else(|| {
panic!(
"No alignment information for {:?} - does the target support that type?",
fpt
)
})
}
pub fn agg_alignment(&self) -> &Alignment {
&self.agg_alignment
}
#[cfg(feature="llvm-9-or-greater")]
pub fn fptr_alignment(&self) -> &FunctionPtrAlignment {
&self.fptr_alignment
}
pub fn ptr_alignment(&self, addr_space: AddrSpace) -> &PointerLayout {
match self.pointer_layouts.get(&addr_space) {
Some(layout) => layout,
None => self
.pointer_layouts
.get(&0)
.expect("Should have a pointer layout for address space 0"),
}
}
fn fpt_size(fpt: FPType) -> u32 {
match fpt {
FPType::Half => 16,
#[cfg(feature="llvm-11-or-greater")]
FPType::BFloat => 16,
FPType::Single => 32,
FPType::Double => 64,
FPType::FP128 => 128,
FPType::X86_FP80 => 80,
FPType::PPC_FP128 => 128,
}
}
}
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum Mangling {
ELF,
MIPS,
MachO,
WindowsX86COFF,
WindowsCOFF,
#[cfg(feature="llvm-11-or-greater")]
XCOFF,
}
use crate::constant::Constant;
use crate::from_llvm::*;
use crate::function::AttributesData;
use llvm_sys::comdat::*;
use llvm_sys::{
LLVMDLLStorageClass,
LLVMLinkage,
LLVMThreadLocalMode,
LLVMUnnamedAddr,
LLVMVisibility,
};
pub(crate) struct ModuleContext<'a> {
pub types: TypesBuilder,
pub attrsdata: AttributesData,
#[allow(clippy::mutable_key_type)]
pub constants: HashMap<LLVMValueRef, ConstantRef>,
#[allow(clippy::mutable_key_type)]
pub global_names: &'a HashMap<LLVMValueRef, Name>,
}
impl<'a> ModuleContext<'a> {
#[allow(clippy::mutable_key_type)]
fn new(global_names: &'a HashMap<LLVMValueRef, Name>) -> Self {
Self {
types: TypesBuilder::new(),
attrsdata: AttributesData::create(),
constants: HashMap::new(),
global_names,
}
}
}
impl Module {
pub(crate) fn from_llvm_ref(module: LLVMModuleRef) -> Self {
debug!("Creating a Module from an LLVMModuleRef");
let mut global_ctr = 0;
#[allow(clippy::mutable_key_type)]
let global_names: HashMap<LLVMValueRef, Name> = get_defined_functions(module)
.chain(get_declared_functions(module))
.chain(get_globals(module))
.chain(get_global_aliases(module))
.map(|g| {
(
g,
Name::name_or_num(unsafe { get_value_name(g) }, &mut global_ctr),
)
})
.collect();
global_ctr = 0;
let mut ctx = ModuleContext::new(&global_names);
Self {
name: unsafe { get_module_identifier(module) },
source_file_name: unsafe { get_source_file_name(module) },
data_layout: DataLayout::from_module_ref(module),
target_triple: unsafe { get_target(module) },
functions: get_defined_functions(module)
.map(|f| Function::from_llvm_ref(f, &mut ctx))
.collect(),
global_vars: get_globals(module)
.map(|g| GlobalVariable::from_llvm_ref(g, &mut global_ctr, &mut ctx))
.collect(),
global_aliases: get_global_aliases(module)
.map(|g| GlobalAlias::from_llvm_ref(g, &mut global_ctr, &mut ctx))
.collect(),
inline_assembly: unsafe { get_module_inline_asm(module) },
types: ctx.types.build(),
}
}
}
impl GlobalVariable {
pub(crate) fn from_llvm_ref(
global: LLVMValueRef,
ctr: &mut usize,
ctx: &mut ModuleContext,
) -> Self {
let ty = ctx.types.type_from_llvm_ref(unsafe { LLVMTypeOf(global) });
let addr_space = match ty.as_ref() {
Type::PointerType { addr_space, .. } => *addr_space,
_ => panic!("GlobalVariable has a non-pointer type, {:?}", ty),
};
debug!("Processing a GlobalVariable with type {:?}", ty);
Self {
name: Name::name_or_num(unsafe { get_value_name(global) }, ctr),
linkage: Linkage::from_llvm(unsafe { LLVMGetLinkage(global) }),
visibility: Visibility::from_llvm(unsafe { LLVMGetVisibility(global) }),
is_constant: unsafe { LLVMIsGlobalConstant(global) } != 0,
ty,
addr_space,
dll_storage_class: DLLStorageClass::from_llvm(unsafe {
LLVMGetDLLStorageClass(global)
}),
thread_local_mode: ThreadLocalMode::from_llvm(unsafe {
LLVMGetThreadLocalMode(global)
}),
unnamed_addr: UnnamedAddr::from_llvm(unsafe { LLVMGetUnnamedAddress(global) }),
initializer: {
let it = unsafe { LLVMGetInitializer(global) };
if it.is_null() {
None
} else {
Some(Constant::from_llvm_ref(it, ctx))
}
},
section: unsafe { get_section(global) },
comdat: {
let comdat = unsafe { LLVMGetComdat(global) };
if comdat.is_null() {
None
} else {
Some(Comdat::from_llvm_ref(unsafe { LLVMGetComdat(global) }))
}
},
alignment: unsafe { LLVMGetAlignment(global) },
#[cfg(feature="llvm-9-or-greater")]
debugloc: DebugLoc::from_llvm_no_col(global),
}
}
}
impl GlobalAlias {
pub(crate) fn from_llvm_ref(
alias: LLVMValueRef,
ctr: &mut usize,
ctx: &mut ModuleContext,
) -> Self {
let ty = ctx.types.type_from_llvm_ref(unsafe { LLVMTypeOf(alias) });
let addr_space = match ty.as_ref() {
Type::PointerType { addr_space, .. } => *addr_space,
_ => panic!("GlobalAlias has a non-pointer type, {:?}", ty),
};
Self {
name: Name::name_or_num(unsafe { get_value_name(alias) }, ctr),
aliasee: Constant::from_llvm_ref(unsafe { LLVMAliasGetAliasee(alias) }, ctx),
linkage: Linkage::from_llvm(unsafe { LLVMGetLinkage(alias) }),
visibility: Visibility::from_llvm(unsafe { LLVMGetVisibility(alias) }),
ty,
addr_space,
dll_storage_class: DLLStorageClass::from_llvm(unsafe { LLVMGetDLLStorageClass(alias) }),
thread_local_mode: ThreadLocalMode::from_llvm(unsafe { LLVMGetThreadLocalMode(alias) }),
unnamed_addr: UnnamedAddr::from_llvm(unsafe { LLVMGetUnnamedAddress(alias) }),
}
}
}
impl UnnamedAddr {
pub(crate) fn from_llvm(ua: LLVMUnnamedAddr) -> Option<Self> {
use LLVMUnnamedAddr::*;
match ua {
LLVMNoUnnamedAddr => None,
LLVMLocalUnnamedAddr => Some(UnnamedAddr::Local),
LLVMGlobalUnnamedAddr => Some(UnnamedAddr::Global),
}
}
}
impl Linkage {
pub(crate) fn from_llvm(linkage: LLVMLinkage) -> Self {
use LLVMLinkage::*;
match linkage {
LLVMExternalLinkage => Linkage::External,
LLVMAvailableExternallyLinkage => Linkage::AvailableExternally,
LLVMLinkOnceAnyLinkage => Linkage::LinkOnceAny,
LLVMLinkOnceODRLinkage => Linkage::LinkOnceODR,
LLVMLinkOnceODRAutoHideLinkage => Linkage::LinkOnceODRAutoHide,
LLVMWeakAnyLinkage => Linkage::WeakAny,
LLVMWeakODRLinkage => Linkage::WeakODR,
LLVMAppendingLinkage => Linkage::Appending,
LLVMInternalLinkage => Linkage::Internal,
LLVMPrivateLinkage => Linkage::Private,
LLVMDLLImportLinkage => Linkage::DLLImport,
LLVMDLLExportLinkage => Linkage::DLLExport,
LLVMExternalWeakLinkage => Linkage::ExternalWeak,
LLVMGhostLinkage => Linkage::Ghost,
LLVMCommonLinkage => Linkage::Common,
LLVMLinkerPrivateLinkage => Linkage::LinkerPrivate,
LLVMLinkerPrivateWeakLinkage => Linkage::LinkerPrivateWeak,
}
}
}
impl Visibility {
pub(crate) fn from_llvm(visibility: LLVMVisibility) -> Self {
use LLVMVisibility::*;
match visibility {
LLVMDefaultVisibility => Visibility::Default,
LLVMHiddenVisibility => Visibility::Hidden,
LLVMProtectedVisibility => Visibility::Protected,
}
}
}
impl DLLStorageClass {
pub(crate) fn from_llvm(dllsc: LLVMDLLStorageClass) -> Self {
use LLVMDLLStorageClass::*;
match dllsc {
LLVMDefaultStorageClass => DLLStorageClass::Default,
LLVMDLLImportStorageClass => DLLStorageClass::Import,
LLVMDLLExportStorageClass => DLLStorageClass::Export,
}
}
}
impl ThreadLocalMode {
pub(crate) fn from_llvm(tlm: LLVMThreadLocalMode) -> Self {
use LLVMThreadLocalMode::*;
match tlm {
LLVMNotThreadLocal => ThreadLocalMode::NotThreadLocal,
LLVMGeneralDynamicTLSModel => ThreadLocalMode::GeneralDynamic,
LLVMLocalDynamicTLSModel => ThreadLocalMode::LocalDynamic,
LLVMInitialExecTLSModel => ThreadLocalMode::InitialExec,
LLVMLocalExecTLSModel => ThreadLocalMode::LocalExec,
}
}
}
impl Comdat {
pub(crate) fn from_llvm_ref(comdat: LLVMComdatRef) -> Self {
Self {
name: "error: not yet implemented: Comdat.name".to_owned(),
selection_kind: SelectionKind::from_llvm(unsafe { LLVMGetComdatSelectionKind(comdat) }),
}
}
}
impl SelectionKind {
pub(crate) fn from_llvm(sk: LLVMComdatSelectionKind) -> Self {
use LLVMComdatSelectionKind::*;
match sk {
LLVMAnyComdatSelectionKind => SelectionKind::Any,
LLVMExactMatchComdatSelectionKind => SelectionKind::ExactMatch,
LLVMLargestComdatSelectionKind => SelectionKind::Largest,
LLVMNoDuplicatesComdatSelectionKind => SelectionKind::NoDuplicates,
LLVMSameSizeComdatSelectionKind => SelectionKind::SameSize,
}
}
}
impl Default for DataLayout {
fn default() -> Self {
Self {
layout_str: String::new(),
endianness: Endianness::BigEndian,
stack_alignment: None,
program_address_space: 0,
alloca_address_space: 0,
alignments: Alignments::default(),
mangling: None,
native_int_widths: None,
non_integral_ptr_types: HashSet::new(),
}
}
}
impl DataLayout {
pub(crate) fn from_module_ref(module: LLVMModuleRef) -> Self {
let layout_str = unsafe { get_data_layout_str(module) };
let mut data_layout = DataLayout::default();
data_layout.layout_str = layout_str;
for spec in data_layout.layout_str.split('-') {
if spec == "E" {
data_layout.endianness = Endianness::BigEndian;
} else if spec == "e" {
data_layout.endianness = Endianness::LittleEndian;
} else if spec.starts_with('S') {
data_layout.stack_alignment =
Some(spec[1 ..].parse().expect("datalayout 'S': Failed to parse"));
} else if spec.starts_with('P') {
data_layout.program_address_space =
spec[1 ..].parse().expect("datalayout 'P': Failed to parse");
} else if spec.starts_with('A') {
data_layout.alloca_address_space =
spec[1 ..].parse().expect("datalayout 'A': Failed to parse");
} else if spec.starts_with('p') {
let mut chunks = spec.split(':');
let first_chunk = chunks.next().unwrap();
let addr_space: AddrSpace = if first_chunk == "p" {
0
} else {
first_chunk[1 ..]
.parse()
.expect("datalayout 'p': Failed to parse address space")
};
let second_chunk = chunks
.next()
.expect("datalayout 'p' spec should have a size chunk");
let size: u32 = second_chunk
.parse()
.expect("datalayout 'p': Failed to parse pointer size");
let third_chunk = chunks
.next()
.expect("datalayout 'p' spec should have an abi chunk");
let abi: u32 = third_chunk
.parse()
.expect("datalayout 'p': Failed to parse abi");
let pref: u32 = if let Some(fourth_chunk) = chunks.next() {
fourth_chunk
.parse()
.expect("datalayout 'p': Failed to parse pref")
} else {
abi
};
let idx: u32 = if let Some(fifth_chunk) = chunks.next() {
fifth_chunk
.parse()
.expect("datalayout 'p': Failed to parse idx")
} else {
size
};
assert!(chunks.next().is_none(), "datalayout 'p': Too many chunks");
data_layout.alignments.pointer_layouts.insert(
addr_space,
PointerLayout {
size,
alignment: Alignment { abi, pref },
index_size: idx,
},
);
} else if spec.starts_with('i') {
let mut chunks = spec.split(':');
let first_chunk = chunks.next().unwrap();
let size: u32 = first_chunk[1 ..]
.parse()
.expect("datalayout 'i': Failed to parse size");
let second_chunk = chunks
.next()
.expect("datalayout 'i' spec should have an abi chunk");
let abi: u32 = second_chunk
.parse()
.expect("datalayout 'i': Failed to parse abi");
let pref = if let Some(third_chunk) = chunks.next() {
third_chunk
.parse()
.expect("datalayout 'i': Failed to parse pref")
} else {
abi
};
assert!(chunks.next().is_none(), "datalayout 'i': Too many chunks");
data_layout
.alignments
.int_alignments
.insert(size, Alignment { abi, pref });
} else if spec.starts_with('v') {
let mut chunks = spec.split(':');
let first_chunk = chunks.next().unwrap();
let size: u32 = first_chunk[1 ..]
.parse()
.expect("datalayout 'v': Failed to parse size");
let second_chunk = chunks
.next()
.expect("datalayout 'v' spec should have an abi chunk");
let abi: u32 = second_chunk
.parse()
.expect("datalayout 'v': Failed to parse abi");
let pref = if let Some(third_chunk) = chunks.next() {
third_chunk
.parse()
.expect("datalayout 'v': Failed to parse pref")
} else {
abi
};
assert!(chunks.next().is_none(), "datalayout 'v': Too many chunks");
data_layout
.alignments
.vec_alignments
.insert(size, Alignment { abi, pref });
} else if spec.starts_with('f') {
let mut chunks = spec.split(':');
let first_chunk = chunks.next().unwrap();
let size: u32 = first_chunk[1 ..]
.parse()
.expect("datalayout 'f': Failed to parse size");
let second_chunk = chunks
.next()
.expect("datalayout 'f' spec should have an abi chunk");
let abi: u32 = second_chunk
.parse()
.expect("datalayout 'f': Failed to parse abi");
let pref = if let Some(third_chunk) = chunks.next() {
third_chunk
.parse()
.expect("datalayout 'f': Failed to parse pref")
} else {
abi
};
assert!(chunks.next().is_none(), "datalayout 'f': Too many chunks");
data_layout
.alignments
.fp_alignments
.insert(size, Alignment { abi, pref });
} else if spec.starts_with('a') {
let mut chunks = spec.split(':');
let first_chunk = chunks.next().unwrap();
assert!(first_chunk == "a" || first_chunk == "a0");
let second_chunk = chunks
.next()
.expect("datalayout 'a' spec should have an abi chunk");
let abi: u32 = second_chunk
.parse()
.expect("datalayout 'a': Failed to parse abi");
let pref = if let Some(third_chunk) = chunks.next() {
third_chunk
.parse()
.expect("datalayout 'a': Failed to parse pref")
} else {
abi
};
assert!(chunks.next().is_none(), "datalayout 'a': Too many chunks");
data_layout.alignments.agg_alignment = Alignment { abi, pref };
} else if spec.starts_with("Fi") {
#[cfg(feature="llvm-8-or-lower")]
{
panic!("datalayout: Unknown spec {:?}", spec);
}
#[cfg(feature="llvm-9-or-greater")]
{
let abi: u32 = spec[2 ..]
.parse()
.expect("datalayout 'Fi': Failed to parse abi");
data_layout.alignments.fptr_alignment = FunctionPtrAlignment {
independent: true,
abi,
};
data_layout.alignments.fptr_alignment_as_alignment =
Alignment { abi, pref: abi };
}
} else if spec.starts_with("Fn") {
#[cfg(feature="llvm-8-or-lower")]
{
panic!("datalayout: Unknown spec {:?}", spec);
}
#[cfg(feature="llvm-9-or-greater")]
{
let abi: u32 = spec[2 ..]
.parse()
.expect("datalayout 'Fn': Failed to parse abi");
data_layout.alignments.fptr_alignment = FunctionPtrAlignment {
independent: false,
abi,
};
data_layout.alignments.fptr_alignment_as_alignment =
Alignment { abi, pref: abi };
}
} else if spec.starts_with('m') {
let mut chunks = spec.split(':');
let first_chunk = chunks.next().unwrap();
assert_eq!(first_chunk, "m");
let second_chunk = chunks
.next()
.expect("datalayout 'm' spec should have a mangling chunk");
let mangling = match second_chunk {
"e" => Mangling::ELF,
"m" => Mangling::MIPS,
"o" => Mangling::MachO,
"x" => Mangling::WindowsX86COFF,
"w" => Mangling::WindowsCOFF,
#[cfg(feature="llvm-11-or-greater")]
"a" => Mangling::XCOFF,
_ => panic!("datalayout 'm': Unknown mangling {:?}", second_chunk),
};
assert!(chunks.next().is_none(), "datalayout 'm': Too many chunks");
data_layout.mangling = Some(mangling);
} else if spec.starts_with("ni") {
let mut chunks = spec.split(':');
let first_chunk = chunks.next().unwrap();
assert_eq!(first_chunk, "ni");
for chunk in chunks {
let addr_space: AddrSpace = chunk
.parse()
.expect("datalayout 'ni': Failed to parse addr space");
assert_ne!(addr_space, 0, "LLVM spec does not allow address space 0 to have non-integral pointer types");
data_layout.non_integral_ptr_types.insert(addr_space);
}
} else if spec.starts_with('n') {
let native_int_widths = data_layout
.native_int_widths
.get_or_insert_with(|| HashSet::new());
let mut chunks = spec.split(':');
let first_chunk = chunks.next().unwrap();
let size = first_chunk[1 ..]
.parse()
.expect("datalayout 'n': Failed to parse first size");
native_int_widths.insert(size);
for chunk in chunks {
let size = chunk.parse().expect("datalayout 'n': Failed to parse size");
native_int_widths.insert(size);
}
} else if spec == "" {
} else {
panic!("datalayout: Unknown spec {:?}", spec);
}
}
data_layout
}
}
impl Default for Alignments {
fn default() -> Self {
Self {
int_alignments: vec![
(1, Alignment { abi: 8, pref: 8 }),
(8, Alignment { abi: 8, pref: 8 }),
(16, Alignment { abi: 16, pref: 16 }),
(32, Alignment { abi: 32, pref: 32 }),
(64, Alignment { abi: 32, pref: 64 }),
]
.into_iter()
.collect(),
vec_alignments: vec![
(64, Alignment { abi: 64, pref: 64 }),
(128, Alignment { abi: 128, pref: 128 }),
]
.into_iter()
.collect(),
fp_alignments: vec![
(16, Alignment { abi: 16, pref: 16 }),
(32, Alignment { abi: 32, pref: 32 }),
(64, Alignment { abi: 64, pref: 64 }),
(128, Alignment { abi: 128, pref: 128 }),
]
.into_iter()
.collect(),
agg_alignment: Alignment { abi: 0, pref: 64 },
#[cfg(feature="llvm-9-or-greater")]
fptr_alignment: FunctionPtrAlignment {
independent: true,
abi: 64,
},
#[cfg(feature="llvm-9-or-greater")]
fptr_alignment_as_alignment: Alignment { abi: 64, pref: 64 },
pointer_layouts: vec![(
0,
PointerLayout {
size: 64,
alignment: Alignment { abi: 64, pref: 64 },
index_size: 64,
},
)]
.into_iter()
.collect(),
}
}
}