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
use std::collections::HashMap;
use crate::bits::Bits;
use crate::read::{BitStreamReader, Error};
use crate::visitor::{BitStreamVisitor, CollectingVisitor};
const LLVM_BITCODE_WRAPPER_MAGIC: u32 = 0x0B17C0DE;
#[derive(Debug, Clone)]
pub struct Bitcode {
pub signature: Signature,
pub elements: Vec<BitcodeElement>,
pub block_info: HashMap<u64, BlockInfo>,
}
#[derive(Debug, Clone)]
pub struct Block {
pub id: u64,
pub elements: Vec<BitcodeElement>,
}
#[derive(Debug, Clone)]
pub enum Payload {
Array(Vec<u64>),
Char6String(String),
Blob(Vec<u8>),
}
#[derive(Debug, Clone)]
pub struct Record {
pub id: u64,
pub fields: Vec<u64>,
pub payload: Option<Payload>,
}
#[derive(Debug, Clone)]
pub enum BitcodeElement {
Block(Block),
Record(Record),
}
impl BitcodeElement {
pub fn is_block(&self) -> bool {
matches!(self, BitcodeElement::Block(_))
}
pub fn as_block(&self) -> Option<&Block> {
match self {
BitcodeElement::Block(block) => Some(block),
BitcodeElement::Record(_) => None,
}
}
pub fn as_block_mut(&mut self) -> Option<&mut Block> {
match self {
BitcodeElement::Block(block) => Some(block),
BitcodeElement::Record(_) => None,
}
}
pub fn is_record(&self) -> bool {
matches!(self, BitcodeElement::Record(_))
}
pub fn as_record(&self) -> Option<&Record> {
match self {
BitcodeElement::Block(_) => None,
BitcodeElement::Record(record) => Some(record),
}
}
pub fn as_record_mut(&mut self) -> Option<&mut Record> {
match self {
BitcodeElement::Block(_) => None,
BitcodeElement::Record(record) => Some(record),
}
}
}
#[derive(Debug, Clone, Default)]
pub struct BlockInfo {
pub name: String,
pub record_names: HashMap<u64, String>,
}
#[derive(Debug, Clone, Copy, Ord, PartialOrd, Eq, PartialEq)]
pub struct Signature(u32);
impl Signature {
pub fn new(val: u32) -> Self {
Self(val)
}
pub fn into_inner(self) -> u32 {
self.0
}
}
impl Bitcode {
fn clean(data: &[u8]) -> (Signature, &[u8]) {
assert!(data.len() > 4);
let signature = Bits::new(data).read_bits(0, 32) as u32;
if signature == LLVM_BITCODE_WRAPPER_MAGIC {
assert!(data.len() > 20);
let offset = u32::from_le_bytes([data[8], data[9], data[10], data[11]]) as usize;
let size = u32::from_le_bytes([data[12], data[13], data[14], data[15]]) as usize;
let data = &data[offset..offset + size];
let signature = Bits::new(data).read_bits(0, 32) as u32;
(Signature(signature), &data[4..])
} else {
(Signature(signature), &data[4..])
}
}
pub fn new(data: &[u8]) -> Result<Self, Error> {
let (signature, stream) = Self::clean(data);
let mut reader = BitStreamReader::new(stream);
let mut visitor = CollectingVisitor::new();
reader.read_block(BitStreamReader::TOP_LEVEL_BLOCK_ID, 2, &mut visitor)?;
Ok(Self {
signature,
elements: visitor.finalize_top_level_elements(),
block_info: reader.block_info,
})
}
pub fn read<V>(data: &[u8], visitor: &mut V) -> Result<(), Error>
where
V: BitStreamVisitor,
{
let (signature, stream) = Self::clean(data);
if !visitor.validate(signature) {
return Err(Error::InvalidSignature(signature.into_inner()));
}
let mut reader = BitStreamReader::new(stream);
reader.read_block(BitStreamReader::TOP_LEVEL_BLOCK_ID, 2, visitor)
}
}