forked from lffpires/funcperf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrncpyFunctionTest.cpp
213 lines (168 loc) · 3.71 KB
/
StrncpyFunctionTest.cpp
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
#include "IFunctionTest.hpp"
#include "Util.hpp"
#include <cstring>
#include <memory>
#include <sstream>
namespace funcperf {
class StrncpyFunctionTest : public IFunctionTest
{
public:
std::string headers() const override
{
return "n";
}
ITest* nextTest() override;
private:
int srcOffset = 0;
int dstOffset = 0;
int n = 2;
int srcLenI = 0;
std::unique_ptr<ITest> test;
bool last = false;
int srcLen() const
{
return n / (4 -srcLenI);
}
};
class StrncpyTest : public ITest
{
public:
StrncpyTest(const std::string& sep, int l, int s, int d, int n);
std::string id() const override
{
return "STRNCPY_" + values() + "_" + aggrId() +
(n < 1000 && sep == "\t"? sep : "");
}
std::string values() const override
{
std::ostringstream ss;
ss << n;
return ss.str();
}
int iterations(TestLength length) const override;
void run(void* func) override;
void runC() override;
bool verify() override;
private:
std::string sep;
int srcLen;
int srcOffset;
int dstOffset;
int n;
std::unique_ptr<char[]> m_srcBuffer;
std::unique_ptr<char[]> m_dstBuffer;
std::unique_ptr<char[]> m_verifyBuffer;
};
StrncpyTest::StrncpyTest(const std::string& sep, int l, int s, int d, int n) :
sep(sep),
srcLen(l),
srcOffset(s),
dstOffset(d),
n(n)
{
initBuffer(m_srcBuffer, srcLen + 8);
initBuffer(m_dstBuffer, n + 8, true);
initBuffer(m_verifyBuffer, n + 8, true);
// pattern fill src buffer
int i;
for (i = 0; i < srcOffset; i++)
m_srcBuffer[i] = 0;
for (; i < srcLen + 7; i++) {
char c = i % 0x7f + 33;
m_srcBuffer[i] = c;
}
m_srcBuffer[i] = 0;
// prepare verification buffer
strncpy(m_verifyBuffer.get() + dstOffset,
m_srcBuffer.get() + srcOffset,
n);
if (srcLen != n)
_aggrId = "srcLen != n";
else if (srcOffset == 0 && dstOffset == 0)
_aggrId = "aligned ";
else if (srcOffset == 0)
_aggrId = "src_aligned";
else if (dstOffset == 0)
_aggrId = "dst_aligned";
else
_aggrId = "misaligned ";
if (srcOffset == 7 && dstOffset == 7)
_flush = true;
}
void StrncpyTest::run(void* func)
{
typedef char* (*strncpy_func_t)(char* dst, const char* src, size_t len);
strncpy_func_t strncpy_func = strncpy_func_t(func);
(*strncpy_func)(m_dstBuffer.get() + dstOffset,
m_srcBuffer.get() + srcOffset,
n);
}
void StrncpyTest::runC()
{
strncpy(m_dstBuffer.get() + dstOffset,
m_srcBuffer.get() + srcOffset,
n);
}
bool StrncpyTest::verify()
{
bool rc = memcmp(m_dstBuffer.get(), m_verifyBuffer.get(),
n + 8) == 0;
if (!rc) {
std::cout << "strncpy(dst+" << dstOffset
<< ", src+" << srcOffset
<< ", " << n << ")\n";
std::cout << "src=[" << m_srcBuffer.get() + srcOffset << "]\n";
std::cout << "dst=[" << m_dstBuffer.get() + dstOffset << "]\n";
std::cout << "ver=[" << m_verifyBuffer.get() + dstOffset << "]\n";
}
return rc;
}
int StrncpyTest::iterations(TestLength length) const
{
switch (length) {
case TestLength::shortTest:
return 1;
case TestLength::normalTest:
if (n < 1024)
return 2000;
else if (n < 100*1024)
return 500;
else if (n < 1024*1024)
return 100;
else
return 50;
case TestLength::longTest:
if (n < 256)
return 200000;
else if (n < 1024*1024)
return 20000;
else
return 1000;
}
}
ITest* StrncpyFunctionTest::nextTest()
{
if (last)
return nullptr;
test.reset(new StrncpyTest(sep, srcLen(), srcOffset, dstOffset, n));
if (++dstOffset == 8) {
dstOffset = 0;
if (++srcOffset == 8) {
srcOffset = 0;
if (++srcLenI == 4) {
srcLenI = 0;
n *= 2;
if (n > 1024*1024)
last = true;
}
}
}
return test.get();
}
static IFunctionTest* newStrncpyFunctionTest()
{
return new StrncpyFunctionTest;
}
static int dummy = (FunctionTestFactory::instance()
.registerFunction("strncpy", newStrncpyFunctionTest), 1);
}