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
|
/*
* Scalar emulation of SIMD 32-bit operations
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_SIMD_SCALAR_H__
#define BOTAN_SIMD_SCALAR_H__
#include <botan/loadstor.h>
#include <botan/bswap.h>
namespace Botan {
/**
* Fake SIMD, using plain scalar operations
* Often still faster than iterative on superscalar machines
*/
class SIMD_Scalar
{
public:
static bool enabled() { return true; }
SIMD_Scalar(const u32bit B[4])
{
R0 = B[0];
R1 = B[1];
R2 = B[2];
R3 = B[3];
}
SIMD_Scalar(u32bit B0, u32bit B1, u32bit B2, u32bit B3)
{
R0 = B0;
R1 = B1;
R2 = B2;
R3 = B3;
}
SIMD_Scalar(u32bit B)
{
R0 = B;
R1 = B;
R2 = B;
R3 = B;
}
static SIMD_Scalar load_le(const void* in)
{
const byte* in_b = static_cast<const byte*>(in);
return SIMD_Scalar(Botan::load_le<u32bit>(in_b, 0),
Botan::load_le<u32bit>(in_b, 1),
Botan::load_le<u32bit>(in_b, 2),
Botan::load_le<u32bit>(in_b, 3));
}
static SIMD_Scalar load_be(const void* in)
{
const byte* in_b = static_cast<const byte*>(in);
return SIMD_Scalar(Botan::load_be<u32bit>(in_b, 0),
Botan::load_be<u32bit>(in_b, 1),
Botan::load_be<u32bit>(in_b, 2),
Botan::load_be<u32bit>(in_b, 3));
}
void store_le(byte out[]) const
{
Botan::store_le(out, R0, R1, R2, R3);
}
void store_be(byte out[]) const
{
Botan::store_be(out, R0, R1, R2, R3);
}
void rotate_left(size_t rot)
{
R0 = Botan::rotate_left(R0, rot);
R1 = Botan::rotate_left(R1, rot);
R2 = Botan::rotate_left(R2, rot);
R3 = Botan::rotate_left(R3, rot);
}
void rotate_right(size_t rot)
{
R0 = Botan::rotate_right(R0, rot);
R1 = Botan::rotate_right(R1, rot);
R2 = Botan::rotate_right(R2, rot);
R3 = Botan::rotate_right(R3, rot);
}
void operator+=(const SIMD_Scalar& other)
{
R0 += other.R0;
R1 += other.R1;
R2 += other.R2;
R3 += other.R3;
}
SIMD_Scalar operator+(const SIMD_Scalar& other) const
{
return SIMD_Scalar(R0 + other.R0,
R1 + other.R1,
R2 + other.R2,
R3 + other.R3);
}
void operator-=(const SIMD_Scalar& other)
{
R0 -= other.R0;
R1 -= other.R1;
R2 -= other.R2;
R3 -= other.R3;
}
SIMD_Scalar operator-(const SIMD_Scalar& other) const
{
return SIMD_Scalar(R0 - other.R0,
R1 - other.R1,
R2 - other.R2,
R3 - other.R3);
}
void operator^=(const SIMD_Scalar& other)
{
R0 ^= other.R0;
R1 ^= other.R1;
R2 ^= other.R2;
R3 ^= other.R3;
}
SIMD_Scalar operator^(const SIMD_Scalar& other) const
{
return SIMD_Scalar(R0 ^ other.R0,
R1 ^ other.R1,
R2 ^ other.R2,
R3 ^ other.R3);
}
void operator|=(const SIMD_Scalar& other)
{
R0 |= other.R0;
R1 |= other.R1;
R2 |= other.R2;
R3 |= other.R3;
}
SIMD_Scalar operator&(const SIMD_Scalar& other)
{
return SIMD_Scalar(R0 & other.R0,
R1 & other.R1,
R2 & other.R2,
R3 & other.R3);
}
void operator&=(const SIMD_Scalar& other)
{
R0 &= other.R0;
R1 &= other.R1;
R2 &= other.R2;
R3 &= other.R3;
}
SIMD_Scalar operator<<(size_t shift) const
{
return SIMD_Scalar(R0 << shift,
R1 << shift,
R2 << shift,
R3 << shift);
}
SIMD_Scalar operator>>(size_t shift) const
{
return SIMD_Scalar(R0 >> shift,
R1 >> shift,
R2 >> shift,
R3 >> shift);
}
SIMD_Scalar operator~() const
{
return SIMD_Scalar(~R0, ~R1, ~R2, ~R3);
}
// (~reg) & other
SIMD_Scalar andc(const SIMD_Scalar& other)
{
return SIMD_Scalar(~R0 & other.R0,
~R1 & other.R1,
~R2 & other.R2,
~R3 & other.R3);
}
SIMD_Scalar bswap() const
{
return SIMD_Scalar(reverse_bytes(R0),
reverse_bytes(R1),
reverse_bytes(R2),
reverse_bytes(R3));
}
static void transpose(SIMD_Scalar& B0, SIMD_Scalar& B1,
SIMD_Scalar& B2, SIMD_Scalar& B3)
{
SIMD_Scalar T0(B0.R0, B1.R0, B2.R0, B3.R0);
SIMD_Scalar T1(B0.R1, B1.R1, B2.R1, B3.R1);
SIMD_Scalar T2(B0.R2, B1.R2, B2.R2, B3.R2);
SIMD_Scalar T3(B0.R3, B1.R3, B2.R3, B3.R3);
B0 = T0;
B1 = T1;
B2 = T2;
B3 = T3;
}
private:
u32bit R0, R1, R2, R3;
};
}
#endif
|