152a82b4246a57e65fc8a3b2fce5d8fb2627af91
[openafs.git] / src / des / make_fp.c
1 /*
2  * Copyright 1988 by the Massachusetts Institute of Technology.
3  *
4  * For copying and distribution information,
5  * please see the file <mit-cpyright.h>.
6  *
7  * This file contains a generation routine for source code
8  * implementing the final permutation of the DES.
9  */
10
11 #include <afs/param.h>
12 #include <afsconfig.h>
13
14 RCSID("$Header$");
15
16 #include <mit-cpyright.h>
17 #include <stdio.h>
18 #include "des_internal.h"
19
20 #define WANT_FP_TABLE
21 #include "tables.h"
22
23 extern unsigned int swap_bit_pos_0_to_ansi PROTOTYPE((unsigned int));
24 extern afs_int32 swap_long_bytes();
25 extern afs_int32 swap_long_bytes_bit_number();
26 extern void test_set PROTOTYPE((FILE *, char const *, int,
27                                 char const *, int));
28
29 void gen (stream)
30     FILE * stream;
31 {
32     register    int i;
33
34     /* clear the output */
35     fprintf(stream,"    L2 = 0; R2 = 0;\n");
36
37     /*
38      *  NOTE: As part of the final permutation, we also have to adjust
39      *  for host bit order via "swap_bit_pos_0()".  Since L2,R2 are
40      *  the output from this, we adjust the bit positions written into
41      *  L2,R2.
42      */
43
44 #define SWAP(i,j) \
45     swap_long_bytes_bit_number(swap_bit_pos_0_to_ansi((unsigned)i)-j)
46
47     /* first setup FP */
48     fprintf(stream,
49             "/* FP operations */\n/* first left to left */\n");
50
51     /* first list mapping from left to left */
52     for (i = 0; i <= 31; i++)
53         if (FP[i] < 32)
54             test_set(stream, "L1", FP[i], "L2", SWAP(i,0));
55
56     /* now mapping from right to left */
57     fprintf(stream,"\n\n/* now from right to left */\n");
58     for (i = 0; i <= 31; i++)
59         if (FP[i] >= 32)
60             test_set(stream, "R1", FP[i]-32, "L2", SWAP(i,0));
61
62     fprintf(stream,"\n/* now from left to right */\n");
63
64     /*  list mapping from left to right */
65     for (i = 32; i <= 63; i++)
66         if (FP[i] <32)
67             test_set(stream, "L1", FP[i], "R2", SWAP(i,32));
68
69     /* now mapping from right to right */
70     fprintf(stream,"\n/* last from right to right */\n");
71     for (i = 32; i <= 63; i++)
72         if (FP[i] >= 32)
73             test_set(stream, "R1", FP[i]-32, "R2", SWAP(i,32));
74 }