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
extern crate hacspec_lib;
extern crate proc_macro;
extern crate proc_macro2;
extern crate quote;
extern crate syn;

use proc_macro2::TokenStream;
use quote::{quote, quote_spanned};
use syn::spanned::Spanned;
use syn::{parse_macro_input, Data, DeriveInput, Fields, Ident, Index};

enum Expression {
    Binop(TokenStream, TokenStream, TokenStream),
    Shift(TokenStream, TokenStream, TokenStream),
    Unop(TokenStream, TokenStream),
    TwoArgsMethod(TokenStream, TokenStream, TokenStream),
    OneArgsMethod(TokenStream, TokenStream),
    OneArgsMethodWithBaseTypeArg(TokenStream, TokenStream),
    ZeroArgsMethod(TokenStream),
}

fn make_impl_body(name: &Ident, data: &Data, inner_expression: Expression) -> TokenStream {
    match *data {
        Data::Struct(ref data) => match data.fields {
            Fields::Named(ref fields) => {
                let recurse = fields.named.iter().map(|f| {
                    let name = &f.ident;
                    match &inner_expression {
                        Expression::Binop(e1, op, e2) => quote_spanned! {f.span() =>
                            #name: #e1.#name #op #e2.#name
                        },
                        Expression::Shift(e1, op, e2) => quote_spanned! {f.span() =>
                            #name: #e1.#name #op #e2
                        },
                        Expression::Unop(op, e) => quote_spanned! {f.span() =>
                            #name: #op #e.#name
                        },
                        Expression::TwoArgsMethod(func, e1, e2) => quote_spanned! {f.span() =>
                            #name: self.#name.#func(#e1.#name, #e2.#name)
                        },
                        Expression::OneArgsMethod(func, e1) => quote_spanned! {f.span() =>
                            #name: self.#name.#func(#e1.#name)
                        },
                        Expression::OneArgsMethodWithBaseTypeArg(func, e1) => {
                            quote_spanned! {f.span() =>
                                #name: self.#name.#func(#e1)
                            }
                        }
                        Expression::ZeroArgsMethod(func) => quote_spanned! {f.span() =>
                            #name: self.#name.#func()
                        },
                    }
                });
                let expanded = quote! {
                    #name { #(#recurse),* }
                };
                expanded
            }
            Fields::Unnamed(ref fields) => {
                let recurse = fields.unnamed.iter().enumerate().map(|(i, f)| {
                    let index = Index::from(i);
                    match &inner_expression {
                        Expression::Binop(e1, op, e2) => quote_spanned! {f.span() =>
                            #e1.#index #op #e2.#index
                        },
                        Expression::Shift(e1, op, e2) => quote_spanned! {f.span() =>
                            #e1.#index #op #e2
                        },
                        Expression::Unop(op, e) => quote_spanned! {f.span() =>
                            #op #e.#index
                        },
                        Expression::TwoArgsMethod(func, e1, e2) => quote_spanned! {f.span() =>
                            self.#index.#func(#e1.#index, #e2.#index)
                        },
                        Expression::OneArgsMethod(func, e1) => quote_spanned! {f.span() =>
                            self.#index.#func(#e1.#index)
                        },
                        Expression::OneArgsMethodWithBaseTypeArg(func, e1) => {
                            quote_spanned! {f.span() =>
                                self.#index.#func(#e1)
                            }
                        }
                        Expression::ZeroArgsMethod(func) => quote_spanned! {f.span() =>
                            self.#index.#func()
                        },
                    }
                });
                quote! {
                    #name ( #(#recurse),* )
                }
            }
            Fields::Unit => quote! { #name {} },
        },
        Data::Enum(_) | Data::Union(_) => {
            panic!("Deriving the Numeric trait is impossible for enums or unions")
        }
    }
}

#[proc_macro_derive(Numeric)]
pub fn derive_numeric_impl(input_struct: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input_ast = parse_macro_input!(input_struct as DeriveInput);

    // Used in the quasi-quotation below as `#name`.
    let name = input_ast.ident;
    let generics = input_ast.generics;
    let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();

    let sum = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Binop(quote! { self }, quote! { + }, quote! { rhs }),
    );
    let difference = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Binop(quote! { self }, quote! { - }, quote! { rhs }),
    );
    let mul = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Binop(quote! { self }, quote! { * }, quote! { rhs }),
    );
    let xor = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Binop(quote! { self }, quote! { ^ }, quote! { rhs }),
    );
    let or = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Binop(quote! { self }, quote! { | }, quote! { rhs }),
    );
    let and = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Binop(quote! { self }, quote! { & }, quote! { rhs }),
    );
    let shl = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Shift(quote! { self }, quote! { << }, quote! { v }),
    );
    let shr = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Shift(quote! { self }, quote! { >> }, quote! { v }),
    );
    let not = make_impl_body(
        &name,
        &input_ast.data,
        Expression::Unop(quote! { ! }, quote! { self}),
    );
    let sub_mod = make_impl_body(
        &name,
        &input_ast.data,
        Expression::TwoArgsMethod(quote! { sub_mod }, quote! { rhs }, quote! { n }),
    );
    let add_mod = make_impl_body(
        &name,
        &input_ast.data,
        Expression::TwoArgsMethod(quote! { add_mod }, quote! { rhs }, quote! { n }),
    );
    let mul_mod = make_impl_body(
        &name,
        &input_ast.data,
        Expression::TwoArgsMethod(quote! { mul_mod }, quote! { rhs }, quote! { n }),
    );
    let pow_mod = make_impl_body(
        &name,
        &input_ast.data,
        Expression::TwoArgsMethod(quote! { pow_mod }, quote! { exp }, quote! { n }),
    );
    let modulo = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { modulo }, quote! { n }),
    );
    let signed_modulo = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { signed_modulo }, quote! { n }),
    );
    let wrap_add = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { wrap_add }, quote! { rhs }),
    );
    let wrap_sub = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { wrap_sub }, quote! { rhs }),
    );
    let wrap_mul = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { wrap_mul }, quote! { rhs }),
    );
    let wrap_div = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { wrap_div }, quote! { rhs }),
    );
    let pow_self = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { pow_self }, quote! { exp }),
    );
    let divide = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { divide }, quote! { rhs }),
    );
    let inv = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethod(quote! { inv }, quote! { n }),
    );
    let absolute = make_impl_body(
        &name,
        &input_ast.data,
        Expression::ZeroArgsMethod(quote! { absolute }),
    );
    let exp = make_impl_body(
        &name,
        &input_ast.data,
        Expression::OneArgsMethodWithBaseTypeArg(quote! { exp }, quote! { exp }),
    );

    let expanded = quote! {
        impl #impl_generics Add for #name #ty_generics #where_clause {
            type Output = Self;

            fn add(self, rhs: Self) -> Self {
                #sum
            }
        }

        impl #impl_generics Sub for #name #ty_generics #where_clause {
            type Output = Self;

            fn sub(self, rhs: Self) -> Self {
                #difference
            }
        }

        impl #impl_generics Mul for #name #ty_generics #where_clause {
            type Output = Self;

            fn mul(self, rhs: Self) -> Self {
                #mul
            }
        }

        impl #impl_generics BitXor for #name #ty_generics #where_clause {
            type Output = Self;

            fn bitxor(self, rhs: Self) -> Self {
                #xor
            }
        }

        impl #impl_generics BitOr for #name #ty_generics #where_clause {
            type Output = Self;

            fn bitor(self, rhs: Self) -> Self {
                #or
            }
        }

        impl #impl_generics BitAnd for #name #ty_generics #where_clause {
            type Output = Self;

            fn bitand(self, rhs: Self) -> Self {
                #and
            }
        }

        impl #impl_generics Shl<usize> for #name #ty_generics #where_clause {
            type Output = Self;

            fn shl(self, v: usize) -> Self {
                #shl
            }
        }

        impl #impl_generics Shr<usize> for #name #ty_generics #where_clause {
            type Output = Self;

            fn shr(self, v: usize) -> Self {
                #shr
            }
        }

        impl #impl_generics Not for #name #ty_generics #where_clause {
            type Output = Self;

            fn not(self) -> Self {
                #not
            }
        }

        impl #impl_generics ModNumeric for #name #ty_generics #where_clause  {
            /// (self - rhs) % n.
            fn sub_mod(self, rhs: Self, n: Self) -> Self {
                #sub_mod
            }
            /// `(self + rhs) % n`
            fn add_mod(self, rhs: Self, n: Self) -> Self {
                #add_mod
            }
            /// `(self * rhs) % n`
            fn mul_mod(self, rhs: Self, n: Self) -> Self {
                #mul_mod
            }
            /// `(self ^ exp) % n`
            fn pow_mod(self, exp: Self, n: Self) -> Self {
                #pow_mod
            }
            /// `self % n`
            fn modulo(self, n: Self) -> Self {
                #modulo
            }
            /// `self % n` that always returns a positive integer
            fn signed_modulo(self, n: Self) -> Self {
                #signed_modulo
            }
            /// `|self|`
            fn absolute(self) -> Self {
                #absolute
            }
        }

        impl #impl_generics Numeric for #name #ty_generics #where_clause {
            /// Return largest value that can be represented.
            fn max_val() -> Self  {
                panic!("Function not implemented by auto-deriving...")
            }

            fn wrap_add(self, rhs: Self) -> Self  {
                #wrap_add
            }
            fn wrap_sub(self, rhs: Self) -> Self  {
                #wrap_sub
            }
            fn wrap_mul(self, rhs: Self) -> Self  {
                #wrap_mul
            }
            fn wrap_div(self, rhs: Self) -> Self  {
                #wrap_div
            }

            /// `self ^ exp` where `exp` is a `u32`.
            fn exp(self, exp: u32) -> Self  {
                #exp
            }
            /// `self ^ exp` where `exp` is a `Self`.
            fn pow_self(self, exp: Self) -> Self  {
                #pow_self
            }
            /// Division.
            fn divide(self, rhs: Self) -> Self  {
                #divide
            }
            /// Invert self modulo n.
            fn inv(self, n: Self) -> Self  {
                #inv
            }

            // Comparison functions returning bool.
            fn equal(self, other: Self) -> bool  {
                panic!("Function not implemented by auto-deriving...")
            }
            fn greater_than(self, other: Self) -> bool  {
                panic!("Function not implemented by auto-deriving...")
            }
            fn greater_than_or_equal(self, other: Self) -> bool  {
                panic!("Function not implemented by auto-deriving...")
            }
            fn less_than(self, other: Self) -> bool  {
                panic!("Function not implemented by auto-deriving...")
            }
            fn less_than_or_equal(self, other: Self) -> bool  {
                panic!("Function not implemented by auto-deriving...")
            }

            // Comparison functions returning a bit mask (0x0..0 or 0xF..F).
            fn not_equal_bm(self, other: Self) -> Self  {
                panic!("Function not implemented by auto-deriving...")
            }
            fn equal_bm(self, other: Self) -> Self  {
                panic!("Function not implemented by auto-deriving...")
            }
            fn greater_than_bm(self, other: Self) -> Self  {
                panic!("Function not implemented by auto-deriving...")
            }
            fn greater_than_or_equal_bm(self, other: Self) -> Self {
                panic!("Function not implemented by auto-deriving...")
            }
            fn less_than_bm(self, other: Self) -> Self  {
                panic!("Function not implemented by auto-deriving...")
            }
            fn less_than_or_equal_bm(self, other: Self) -> Self  {
                panic!("Function not implemented by auto-deriving...")
            }
        };
    };

    proc_macro::TokenStream::from(expanded)
}