Skip to main content

rucc_types/
classify.rs

1//! What category a type is in, which is what almost every constraint in C is written over.
2//!
3//! Design: `spec/07-types-and-semantics.md` section 7.1.
4//!
5//! The standard states its rules in terms of categories rather than types: an operand of `%`
6//! must have integer type, an operand of `!` must have scalar type, a member of a `struct` must
7//! have complete object type. Those categories are asked about constantly and they are exactly
8//! where a compiler drifts, because each of them has one or two members nobody remembers.
9//!
10//! The three that get forgotten:
11//!
12//! An enumeration is an integer type. `enum e x; x % 2` is legal C and a compiler that asks
13//! whether the kind is `Int` says it is not.
14//!
15//! `_Atomic(T)` is in whatever category `T` is in. It is a type here rather than a qualifier,
16//! which is the right way round for spelling it and the wrong way round for this question, so
17//! everything below looks through it. `_Atomic(int)` is an integer type.
18//!
19//! `void` is an object type and is never a complete one. Those are two different questions and
20//! collapsing them is how `sizeof (void)` ends up either accepted or rejected for the wrong
21//! reason, since it is a constraint violation that gcc accepts as an extension worth one byte.
22//!
23//! Every question here reads [`Types::canonical`], so a typedef name answers as what it names.
24
25use crate::kind::{ArrayLen, Qualifiers, TypeKind};
26use crate::types::{TypeId, Types};
27
28/// What a type is, once the sugar and `_Atomic` are off it.
29pub(crate) fn bare(types: &Types, id: TypeId) -> TypeKind {
30    match types.kind(types.canonical(id)) {
31        TypeKind::Atomic(inner) => types.kind(types.canonical(inner)),
32        other => other,
33    }
34}
35
36/// `void`.
37#[must_use]
38pub fn is_void(types: &Types, id: TypeId) -> bool {
39    matches!(bare(types, id), TypeKind::Void)
40}
41
42/// An integer type, 6.2.5p17.
43///
44/// `bool`, the standard and extended integer types, `_BitInt`, and every enumeration. The last
45/// is the one that gets forgotten, and forgetting it rejects `enum e x; x % 2`.
46#[must_use]
47pub fn is_integer(types: &Types, id: TypeId) -> bool {
48    matches!(
49        bare(types, id),
50        TypeKind::Bool | TypeKind::Int(_) | TypeKind::BitInt { .. } | TypeKind::Enum(_)
51    )
52}
53
54/// A real floating type: `float`, `double`, `long double` and the extended ones.
55#[must_use]
56pub fn is_real_floating(types: &Types, id: TypeId) -> bool {
57    matches!(bare(types, id), TypeKind::Float(_))
58}
59
60/// A complex type, `_Complex T`.
61#[must_use]
62pub fn is_complex(types: &Types, id: TypeId) -> bool {
63    matches!(bare(types, id), TypeKind::Complex(_))
64}
65
66/// The corresponding real type of a complex one, 6.2.5p14, and [`None`] for every other type.
67///
68/// This is the type both halves of the object have, so it is what a walk over one asks for. It
69/// is deliberately not [`element`]: an array and a vector are a count of elements and a complex
70/// type is two named halves, and a caller that wanted one of those does not want the other.
71#[must_use]
72pub fn real_part(types: &Types, id: TypeId) -> Option<TypeId> {
73    match bare(types, id) {
74        TypeKind::Complex(part) => Some(part),
75        _ => None,
76    }
77}
78
79/// A floating type, which is the real ones and the complex ones together.
80///
81/// `_Complex int` is not one. That type is gcc's rather than C's and its halves are integers,
82/// so every rule written over the floating types has nothing to say about it, and the question
83/// asked here is what those rules ask.
84#[must_use]
85pub fn is_floating(types: &Types, id: TypeId) -> bool {
86    match bare(types, id) {
87        TypeKind::Float(_) => true,
88        TypeKind::Complex(part) => is_real_floating(types, part),
89        _ => false,
90    }
91}
92
93/// An arithmetic type, 6.2.5p18: the integer types and the floating types.
94///
95/// `_Complex int` is here too, although C's list does not have it, because gcc's extension is
96/// an arithmetic type in every way the rest of the compiler asks about: it is added, compared,
97/// converted and initialized like the ones C wrote down.
98#[must_use]
99pub fn is_arithmetic(types: &Types, id: TypeId) -> bool {
100    is_integer(types, id) || is_floating(types, id) || is_complex(types, id)
101}
102
103/// A real type, 6.2.5p17: the integer types and the real floating types.
104///
105/// Not the same question as [`is_arithmetic`]. `<` takes real operands, so comparing two
106/// `_Complex double` values is a constraint violation while adding them is not.
107#[must_use]
108pub fn is_real(types: &Types, id: TypeId) -> bool {
109    is_integer(types, id) || is_real_floating(types, id)
110}
111
112/// A pointer type.
113#[must_use]
114pub fn is_pointer(types: &Types, id: TypeId) -> bool {
115    matches!(bare(types, id), TypeKind::Pointer(_))
116}
117
118/// What a pointer points to, or [`None`] where it is not a pointer.
119#[must_use]
120pub fn pointee(types: &Types, id: TypeId) -> Option<TypeId> {
121    match bare(types, id) {
122        TypeKind::Pointer(inner) => Some(inner),
123        _ => None,
124    }
125}
126
127/// The same, with whatever the pointee was written as still on it.
128///
129/// [`pointee`] answers through [`Types::canonical`], which resolves every typedef in the whole
130/// type and not only the one on the pointer, so a `u1 *` where `u1` is a typedef comes back as
131/// what `u1` stands for. That is the right answer for every question about what kind of thing is
132/// being pointed at and the wrong one for the two questions a typedef can change the answer to:
133/// how aligned an object of it is, which `__attribute__((aligned))` on a typedef sets rather than
134/// raises, and how a diagnostic spells the type.
135///
136/// So this resolves the sugar on the pointer and stops there. `*p` has the type the pointee was
137/// declared with, which is what makes `*(const unalign32 *)p` a one byte aligned read of four
138/// bytes: zlib, zstd and every other library that reads an unaligned word writes exactly that,
139/// and without this the read is a four byte aligned one and the safety monitor refuses it.
140#[must_use]
141pub fn pointee_as_written(types: &Types, id: TypeId) -> Option<TypeId> {
142    let mut id = id;
143    loop {
144        match types.kind(id) {
145            TypeKind::Pointer(inner) => return Some(inner),
146            // The two shapes that can sit over a pointer without being one. An `_Atomic` pointer
147            // is a pointer to whatever it was written over, and a typedef stands for what it was
148            // declared as, which may be another typedef.
149            TypeKind::Typedef { underlying, .. } | TypeKind::Atomic(underlying) => id = underlying,
150            _ => return None,
151        }
152    }
153}
154
155/// An array type.
156#[must_use]
157pub fn is_array(types: &Types, id: TypeId) -> bool {
158    matches!(bare(types, id), TypeKind::Array { .. })
159}
160
161/// The element type of an array or a vector, or [`None`] where it is neither.
162#[must_use]
163pub fn element(types: &Types, id: TypeId) -> Option<TypeId> {
164    match bare(types, id) {
165        TypeKind::Array { elem, .. } | TypeKind::Vector { elem, .. } => Some(elem),
166        _ => None,
167    }
168}
169
170/// A function type.
171#[must_use]
172pub fn is_function(types: &Types, id: TypeId) -> bool {
173    matches!(bare(types, id), TypeKind::Function(_))
174}
175
176/// A `struct` or a `union`.
177#[must_use]
178pub fn is_record(types: &Types, id: TypeId) -> bool {
179    matches!(bare(types, id), TypeKind::Record(_))
180}
181
182/// A GNU vector type.
183#[must_use]
184pub fn is_vector(types: &Types, id: TypeId) -> bool {
185    matches!(bare(types, id), TypeKind::Vector { .. })
186}
187
188/// How many lanes a vector has, and [`None`] where the type is not one.
189#[must_use]
190pub fn lanes(types: &Types, id: TypeId) -> Option<u32> {
191    match bare(types, id) {
192        TypeKind::Vector { len, .. } => Some(len),
193        _ => None,
194    }
195}
196
197/// `_Atomic(T)`, whatever `T` is.
198///
199/// The one question that does not look through the wrapper, since it is asking about it.
200#[must_use]
201pub fn is_atomic(types: &Types, id: TypeId) -> bool {
202    matches!(types.kind(types.canonical(id)), TypeKind::Atomic(_))
203}
204
205/// A scalar type, 6.2.5p21: the arithmetic types and the pointer types.
206///
207/// This is the category a condition, a `!`, and both operands of `&&` have to be in. A vector
208/// is deliberately not one, because GNU vectors are compared and negated elementwise and
209/// letting them through here would silently accept the scalar rules for them.
210#[must_use]
211pub fn is_scalar(types: &Types, id: TypeId) -> bool {
212    is_arithmetic(types, id) || is_pointer(types, id)
213}
214
215/// An aggregate type, 6.2.5p21: an array or a `struct`.
216///
217/// A `union` is not one. That is not a quirk of wording: it is why a `union` is initialized
218/// from its first member and an aggregate is initialized member by member.
219#[must_use]
220pub fn is_aggregate(types: &Types, id: TypeId) -> bool {
221    match bare(types, id) {
222        TypeKind::Array { .. } => true,
223        TypeKind::Record(record) => {
224            matches!(types.record_info(record).kind, crate::kind::RecordKind::Struct)
225        }
226        _ => false,
227    }
228}
229
230/// An object type, 6.2.5p1: anything that is not a function type.
231///
232/// `void` is one, and so is an incomplete `struct`. Whether the object can be made is
233/// [`is_complete`], and the two questions are asked in different places.
234#[must_use]
235pub fn is_object(types: &Types, id: TypeId) -> bool {
236    !is_function(types, id)
237}
238
239/// A complete type: one whose size is known, so an object of it can exist.
240///
241/// `void` is never complete. An array is complete when its length is known, which includes a
242/// variable length array, since the length is known when the declaration is reached even though
243/// it is not known here. A `struct`, a `union` or an `enum` is complete once its definition has
244/// been seen, which is a property of the declaration and not of the type expression.
245#[must_use]
246pub fn is_complete(types: &Types, id: TypeId) -> bool {
247    match bare(types, id) {
248        TypeKind::Void => false,
249        TypeKind::Array { len: ArrayLen::Unknown, .. } => false,
250        TypeKind::Array { elem, .. } => is_complete(types, elem),
251        TypeKind::Record(record) => types.record_info(record).layout.is_some(),
252        TypeKind::Enum(id) => types.enum_info(id).underlying.is_some(),
253        _ => true,
254    }
255}
256
257/// Whether a value of this type may be modified, 6.3.2.1p1.
258///
259/// An array is not modifiable, a `const` object is not, an incomplete type is not, and a
260/// `struct` with a `const` member anywhere inside it is not, which is the part that takes a
261/// walk rather than a look and the part a compiler forgets.
262#[must_use]
263pub fn is_modifiable(types: &Types, id: TypeId) -> bool {
264    if types.quals(id).has(Qualifiers::CONST) || is_array(types, id) || !is_complete(types, id) {
265        return false;
266    }
267    match bare(types, id) {
268        TypeKind::Record(record) => {
269            types.record_info(record).fields.iter().all(|field| is_modifiable(types, field.ty))
270        }
271        _ => true,
272    }
273}
274
275#[cfg(test)]
276mod tests {
277    use rucc_base::Interner;
278    use rucc_target::{TargetInfo, Triple};
279
280    use super::*;
281    use crate::kind::{ArrayLen, FloatKind, IntKind, RecordKind};
282    use crate::record::{FieldDecl, RecordOptions, layout_record};
283
284    #[test]
285    fn an_enumeration_is_an_integer_type() {
286        let mut types = Types::new();
287        let id = types.declare_enum(None);
288        let int = types.int(IntKind::Int);
289        types.complete_enum(id, int, false);
290        let enumeration = types.enumeration(id);
291
292        // The rule that gets forgotten, and forgetting it rejects `enum e x; x % 2`.
293        assert!(is_integer(&types, enumeration));
294        assert!(is_arithmetic(&types, enumeration));
295        assert!(is_scalar(&types, enumeration));
296    }
297
298    #[test]
299    fn atomic_is_in_whatever_category_it_wraps() {
300        let mut types = Types::new();
301        let int = types.int(IntKind::Int);
302        let atomic = types.atomic(int);
303
304        assert!(is_integer(&types, atomic));
305        assert!(is_scalar(&types, atomic));
306        assert!(is_atomic(&types, atomic));
307        assert!(!is_atomic(&types, int));
308    }
309
310    #[test]
311    fn a_typedef_answers_as_what_it_names() {
312        let mut types = Types::new();
313        let mut names = Interner::new();
314        let int = types.int(IntKind::Int);
315        let name = names.intern("size_t");
316        let alias = types.typedef(name, int);
317
318        assert!(is_integer(&types, alias));
319        assert!(types.is_sugar(alias));
320    }
321
322    #[test]
323    fn a_complex_type_is_arithmetic_and_is_not_real() {
324        let mut types = Types::new();
325        let complex = types.complex_float(FloatKind::Double);
326
327        assert!(is_arithmetic(&types, complex));
328        assert!(is_floating(&types, complex));
329        // Which is why `<` on two of them is a constraint violation and `+` is not.
330        assert!(!is_real(&types, complex));
331    }
332
333    #[test]
334    fn the_corresponding_real_type_is_the_type_of_both_halves() {
335        let mut types = Types::new();
336        let complex = types.complex_float(FloatKind::Float);
337        let qualified = types.qualified(complex, Qualifiers::CONST);
338
339        assert_eq!(real_part(&types, complex), Some(types.float(FloatKind::Float)));
340        // Through the qualifiers, since an access to a half of a `const _Complex float` is still
341        // an access to a `float`.
342        assert_eq!(real_part(&types, qualified), Some(types.float(FloatKind::Float)));
343        // And not an answer for the types that have elements rather than halves.
344        assert_eq!(real_part(&types, types.float(FloatKind::Float)), None);
345        assert_eq!(real_part(&types, types.int(IntKind::Int)), None);
346    }
347
348    #[test]
349    fn void_is_an_object_type_and_is_never_complete() {
350        let types = Types::new();
351        let void = types.void();
352
353        assert!(is_object(&types, void));
354        assert!(!is_complete(&types, void));
355        assert!(!is_scalar(&types, void));
356    }
357
358    #[test]
359    fn a_union_is_not_an_aggregate() {
360        let mut types = Types::new();
361        let union = types.declare_record(RecordKind::Union, None);
362        let union = types.record(union);
363        let int = types.int(IntKind::Int);
364        let array = types.array(int, ArrayLen::Fixed(2));
365
366        // Not a quirk of wording: it is why a union is initialized from its first member.
367        assert!(!is_aggregate(&types, union));
368        assert!(is_aggregate(&types, array));
369    }
370
371    #[test]
372    fn an_incomplete_record_is_an_object_type_that_cannot_be_made() {
373        let mut types = Types::new();
374        let record = types.declare_record(RecordKind::Struct, None);
375        let id = types.record(record);
376
377        assert!(is_object(&types, id));
378        assert!(!is_complete(&types, id));
379        assert!(!is_modifiable(&types, id));
380    }
381
382    #[test]
383    fn a_const_member_makes_the_whole_structure_unmodifiable() {
384        let mut types = Types::new();
385        let int = types.int(IntKind::Int);
386        let constant = types.qualified(int, Qualifiers::CONST);
387        let record = types.declare_record(RecordKind::Struct, None);
388        let target =
389            TargetInfo::new("x86_64-unknown-linux-gnu".parse::<Triple>().expect("a triple"));
390        let laid_out = layout_record(
391            &types,
392            RecordKind::Struct,
393            &[FieldDecl::new(None, constant)],
394            &RecordOptions::default(),
395            &target,
396        )
397        .expect("a layout");
398        types.complete_record(record, laid_out);
399        let id = types.record(record);
400
401        // The part that takes a walk rather than a look, and the part a compiler forgets.
402        assert!(!is_modifiable(&types, id));
403    }
404}