-
Notifications
You must be signed in to change notification settings - Fork 487
/
Copy pathutils.h
512 lines (448 loc) · 13.8 KB
/
utils.h
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
/*
Copyright (c) 2009-2020, Intel Corporation
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the dis
tribution.
* Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNES
S FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDI
NG, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRI
CT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// written by Roman Dementiev
/*! \file utils.h
\brief Some common utility routines
*/
#pragma once
#include <cstdio>
#include <cstring>
#include <fstream>
#include <time.h>
#include "types.h"
#include <vector>
#include <chrono>
#include <math.h>
#include <assert.h>
#ifndef _MSC_VER
#include <csignal>
#include <ctime>
#include <cmath>
#else
#include <intrin.h>
#endif
namespace pcm {
void exit_cleanup(void);
void set_signal_handlers(void);
void set_real_time_priority(const bool & silent);
void restore_signal_handlers(void);
#ifndef _MSC_VER
void sigINT_handler(int signum);
void sigHUP_handler(int signum);
void sigUSR_handler(int signum);
void sigSTOP_handler(int signum);
void sigCONT_handler(int signum);
#endif
void set_post_cleanup_callback(void(*cb)(void));
inline void MySleep(int delay)
{
#ifdef _MSC_VER
if (delay) Sleep(delay * 1000);
#else
::sleep(delay);
#endif
}
inline void MySleepMs(int delay_ms)
{
#ifdef _MSC_VER
if (delay_ms) Sleep((DWORD)delay_ms);
#else
struct timespec sleep_intrval;
double complete_seconds;
sleep_intrval.tv_nsec = static_cast<long>(1000000000.0 * (::modf(delay_ms / 1000.0, &complete_seconds)));
sleep_intrval.tv_sec = static_cast<time_t>(complete_seconds);
::nanosleep(&sleep_intrval, NULL);
#endif
}
void MySystem(char * sysCmd, char ** argc);
#ifdef _MSC_VER
#pragma warning (disable : 4068 ) // disable unknown pragma warning
#endif
#ifdef __GCC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Woverloaded-virtual"
#elif defined __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Woverloaded-virtual"
#endif
struct null_stream : public std::streambuf
{
void overflow(char) { }
};
#ifdef __GCC__
#pragma GCC diagnostic pop
#elif defined __clang__
#pragma clang diagnostic pop
#endif
template <class IntType>
inline std::string unit_format(IntType n)
{
char buffer[1024];
if (n <= 9999ULL)
{
snprintf(buffer, 1024, "%4d ", int32(n));
return std::string{buffer};
}
if (n <= 9999999ULL)
{
snprintf(buffer, 1024, "%4d K", int32(n / 1000ULL));
return std::string{buffer};
}
if (n <= 9999999999ULL)
{
snprintf(buffer, 1024, "%4d M", int32(n / 1000000ULL));
return std::string{buffer};
}
if (n <= 9999999999999ULL)
{
snprintf(buffer, 1024, "%4d G", int32(n / 1000000000ULL));
return std::string{buffer};
}
snprintf(buffer, 1024, "%4d T", int32(n / (1000000000ULL * 1000ULL)));
return std::string{buffer};
}
void print_cpu_details();
#define PCM_UNUSED(x) (void)(x)
#define PCM_COMPILE_ASSERT(condition) \
typedef char pcm_compile_assert_failed[(condition) ? 1 : -1]; \
pcm_compile_assert_failed pcm_compile_assert_failed_; \
PCM_UNUSED(pcm_compile_assert_failed_);
#ifdef _MSC_VER
class ThreadGroupTempAffinity
{
GROUP_AFFINITY PreviousGroupAffinity;
bool restore;
ThreadGroupTempAffinity(); // forbidden
ThreadGroupTempAffinity(const ThreadGroupTempAffinity &); // forbidden
ThreadGroupTempAffinity & operator = (const ThreadGroupTempAffinity &); // forbidden
public:
ThreadGroupTempAffinity(uint32 core_id, bool checkStatus = true, const bool restore_ = false);
~ThreadGroupTempAffinity();
};
#endif
class checked_uint64 // uint64 with checking for overflows when computing differences
{
uint64 data;
uint64 overflows;
public:
checked_uint64() : data(0), overflows(0) {}
checked_uint64(const uint64 d, const uint64 o) : data(d), overflows(o) {}
const checked_uint64& operator += (const checked_uint64& o)
{
data += o.data;
overflows += o.overflows;
return *this;
}
uint64 operator - (const checked_uint64& o) const
{
// computing data - o.data
constexpr uint64 counter_width = 48;
return data + overflows * (1ULL << counter_width) - o.data;
}
uint64 getRawData_NoOverflowProtection() const { return data; }
};
// a secure (but partial) alternative for sscanf
// see example usage in pcm-core.cpp
typedef std::istringstream pcm_sscanf;
class s_expect : public std::string
{
public:
explicit s_expect(const char * s) : std::string(s) {}
explicit s_expect(const std::string & s) : std::string(s) {}
friend std::istream & operator >> (std::istream & istr, s_expect && s);
friend std::istream & operator >> (std::istream && istr, s_expect && s);
private:
void match(std::istream & istr) const
{
istr >> std::noskipws;
const auto len = length();
char * buffer = new char[len + 2];
buffer[0] = 0;
istr.get(buffer, len+1);
if (*this != std::string(buffer))
{
istr.setstate(std::ios_base::failbit);
}
delete [] buffer;
}
};
inline std::istream & operator >> (std::istream & istr, s_expect && s)
{
s.match(istr);
return istr;
}
inline std::istream & operator >> (std::istream && istr, s_expect && s)
{
s.match(istr);
return istr;
}
inline std::pair<tm, uint64> pcm_localtime() // returns <tm, milliseconds>
{
const auto durationSinceEpoch = std::chrono::system_clock::now().time_since_epoch();
const auto durationSinceEpochInSeconds = std::chrono::duration_cast<std::chrono::seconds>(durationSinceEpoch);
time_t now = durationSinceEpochInSeconds.count();
tm result;
#ifdef _MSC_VER
localtime_s(&result, &now);
#else
localtime_r(&now, &result);
#endif
return std::make_pair(result, std::chrono::duration_cast<std::chrono::milliseconds>(durationSinceEpoch- durationSinceEpochInSeconds).count());
}
enum CsvOutputType
{
Header1,
Header2,
Data,
Header21 // merged headers 2 and 1
};
template <class H1, class H2, class D>
inline void choose(const CsvOutputType outputType, H1 h1Func, H2 h2Func, D dataFunc)
{
switch (outputType)
{
case Header1:
case Header21:
h1Func();
break;
case Header2:
h2Func();
break;
case Data:
dataFunc();
break;
default:
std::cerr << "PCM internal error: wrong CSvOutputType\n";
}
}
inline void printDateForCSV(const CsvOutputType outputType, std::string separator = std::string(","))
{
choose(outputType,
[&separator]() {
std::cout << separator << separator; // Time
},
[&separator]() {
std::cout << "Date" << separator << "Time" << separator;
},
[&separator]() {
std::pair<tm, uint64> tt{ pcm_localtime() };
std::cout.precision(3);
char old_fill = std::cout.fill('0');
std::cout <<
std::setw(4) << 1900 + tt.first.tm_year << '-' <<
std::setw(2) << 1 + tt.first.tm_mon << '-' <<
std::setw(2) << tt.first.tm_mday << separator <<
std::setw(2) << tt.first.tm_hour << ':' <<
std::setw(2) << tt.first.tm_min << ':' <<
std::setw(2) << tt.first.tm_sec << '.' <<
std::setw(3) << tt.second << separator; // milliseconds
std::cout.fill(old_fill);
std::cout.setf(std::ios::fixed);
std::cout.precision(2);
});
}
std::vector<std::string> split(const std::string & str, const char delim);
class PCM;
bool CheckAndForceRTMAbortMode(const char * argv, PCM * m);
void print_help_force_rtm_abort_mode(const int alignment);
template <class F>
void parseParam(int argc, char* argv[], const char* param, F f)
{
if (argc > 1) do
{
argv++;
argc--;
if ((std::string("-") + param == *argv) || (std::string("/") + param == *argv))
{
argv++;
argc--;
if (argc == 0)
{
std::cerr << "ERROR: no parameter provided for option " << param << "\n";
exit(EXIT_FAILURE);
}
f(*argv);
continue;
}
} while (argc > 1); // end of command line parsing loop
}
class MainLoop
{
unsigned numberOfIterations = 0;
public:
MainLoop() = default;
bool parseArg(const char * arg)
{
if (strncmp(arg, "-i", 2) == 0 ||
strncmp(arg, "/i", 2) == 0)
{
const auto cmd = std::string(arg);
const auto found = cmd.find('=', 2);
if (found != std::string::npos) {
const auto tmp = cmd.substr(found + 1);
if (!tmp.empty()) {
numberOfIterations = (unsigned int)atoi(tmp.c_str());
}
}
return true;
}
return false;
}
unsigned getNumberOfIterations() const
{
return numberOfIterations;
}
template <class Body>
void operator ()(const Body & body)
{
unsigned int i = 1;
// std::cerr << "DEBUG: numberOfIterations: " << numberOfIterations << "\n";
while ((i <= numberOfIterations) || (numberOfIterations == 0))
{
if (body() == false)
{
break;
}
++i;
}
}
};
#ifdef __linux__
FILE * tryOpen(const char * path, const char * mode);
std::string readSysFS(const char * path, bool silent);
bool writeSysFS(const char * path, const std::string & value, bool silent);
#endif
int calibratedSleep(const double delay, const char* sysCmd, const MainLoop& mainLoop, PCM* m);
struct StackedBarItem {
double fraction{0.0};
std::string label{""}; // not used currently
char fill{'0'};
StackedBarItem() = default;
StackedBarItem(double fraction_,
const std::string & label_,
char fill_) : fraction(fraction_), label(label_), fill(fill_) {}
};
void drawStackedBar(const std::string & label, std::vector<StackedBarItem> & h, const int width = 80);
// emulates scanf %i for hex 0x prefix otherwise assumes dec (no oct support)
bool match(const std::string& subtoken, const std::string& sname, uint64* result);
uint64 read_number(const char* str);
union PCM_CPUID_INFO
{
int array[4];
struct { unsigned int eax, ebx, ecx, edx; } reg;
};
inline void pcm_cpuid(int leaf, PCM_CPUID_INFO& info)
{
#ifdef _MSC_VER
// version for Windows
__cpuid(info.array, leaf);
#else
__asm__ __volatile__("cpuid" : \
"=a" (info.reg.eax), "=b" (info.reg.ebx), "=c" (info.reg.ecx), "=d" (info.reg.edx) : "a" (leaf));
#endif
}
inline void clear_screen() {
#ifdef _MSC_VER
system("cls");
#else
std::cout << "\033[2J\033[0;0H";
#endif
}
inline uint32 build_bit_ui(uint32 beg, uint32 end)
{
assert(end <= 31);
uint32 myll = 0;
if (end == 31)
{
myll = (uint32)(-1);
}
else
{
myll = (1 << (end + 1)) - 1;
}
myll = myll >> beg;
return myll;
}
inline uint32 extract_bits_ui(uint32 myin, uint32 beg, uint32 end)
{
uint32 myll = 0;
uint32 beg1, end1;
// Let the user reverse the order of beg & end.
if (beg <= end)
{
beg1 = beg;
end1 = end;
}
else
{
beg1 = end;
end1 = beg;
}
myll = myin >> beg1;
myll = myll & build_bit_ui(beg1, end1);
return myll;
}
inline uint64 build_bit(uint32 beg, uint32 end)
{
uint64 myll = 0;
if (end == 63)
{
myll = static_cast<uint64>(-1);
}
else
{
myll = (1LL << (end + 1)) - 1;
}
myll = myll >> beg;
return myll;
}
inline uint64 extract_bits(uint64 myin, uint32 beg, uint32 end)
{
uint64 myll = 0;
uint32 beg1, end1;
// Let the user reverse the order of beg & end.
if (beg <= end)
{
beg1 = beg;
end1 = end;
}
else
{
beg1 = end;
end1 = beg;
}
myll = myin >> beg1;
myll = myll & build_bit(beg1, end1);
return myll;
}
std::string safe_getenv(const char* env);
#ifdef _MSC_VER
inline HANDLE openMSRDriver()
{
return CreateFile(L"\\\\.\\RDMSR", GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
}
#endif
// called before everything else to read '-s' arg and
// silence all following err output
void check_and_set_silent(int argc, char * argv[], null_stream &nullStream2);
void print_pid_collection_message(int pid);
inline bool isPIDOption(char * argv [])
{
return strncmp(*argv, "-pid", 4) == 0 || strncmp(*argv, "/pid", 4) == 0;
}
inline void parsePID(int argc, char* argv[], int& pid)
{
parseParam(argc, argv, "pid", [&pid](const char* p) { if (p) pid = atoi(p); });
}
} // namespace pcm