-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathUtil.cpp
More file actions
995 lines (859 loc) · 29.8 KB
/
Copy pathUtil.cpp
File metadata and controls
995 lines (859 loc) · 29.8 KB
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
#ifdef __APPLE__
// This needs to be defined before any other includes in translation
// units that use the getcontext/swapcontext family of functions
#define _XOPEN_SOURCE
#endif
#include "Util.h"
#include "Debug.h"
#include "Error.h"
#include <atomic>
#include <chrono>
#include <fstream>
#include <iomanip>
#include <map>
#include <mutex>
#include <sstream>
#include <string>
#ifdef _MSC_VER
#include <io.h>
#include <process.h> // For _spawnvp
#else
#include <cstdlib>
#include <spawn.h>
#include <sys/mman.h> // For mmap
#include <sys/wait.h>
#include <unistd.h>
extern char **environ;
#endif
#include <sys/stat.h>
#include <sys/types.h>
#ifdef __linux__
#define CAN_GET_RUNNING_PROGRAM_NAME
#include <linux/limits.h> // For PATH_MAX
#include <ucontext.h> // For swapcontext
#endif
#if defined(_MSC_VER) && !defined(NOMINMAX)
#define NOMINMAX
#endif
#ifdef _WIN32
#include <Objbase.h> // needed for CoCreateGuid
#include <Shlobj.h> // needed for SHGetFolderPath
#include <windows.h>
#else
#include <dlfcn.h>
#endif
#ifdef __APPLE__
#define CAN_GET_RUNNING_PROGRAM_NAME
#include <mach-o/dyld.h>
// Get swapcontext/makecontext etc.
//
// Apple gets cranky about people using these (because at least some
// part of passing a pointer to a function that takes some arguments
// as if it's a function that takes no args and then calling it as a
// variadic function is deprecated in C) but provides no
// alternatives. It's likely they'll continue to have to allow them on
// macos for a long time, and these are the entrypoints that tools
// like tsan know about, so rolling your own asm is worse. We can
// switch to an alternative when one exists. Meanwhile, we work around
// their pesky deprecation macro. This is the last include in this
// file, so there's no need to restore the value of the macro.
#undef __OSX_AVAILABLE_BUT_DEPRECATED
#define __OSX_AVAILABLE_BUT_DEPRECATED(...)
#undef __API_DEPRECATED
#define __API_DEPRECATED(...)
#include <ucontext.h>
#endif
#ifdef _WIN32
namespace {
std::string from_utf16(LPCWSTR pStr) {
int len = wcslen(pStr);
int mblen = WideCharToMultiByte(CP_UTF8, 0, pStr, len, nullptr, 0, nullptr, nullptr);
internal_assert(mblen) << "WideCharToMultiByte() failed; error " << GetLastError() << "\n";
std::string str(mblen, 0);
mblen = WideCharToMultiByte(CP_UTF8, 0, pStr, len, &str[0], (int)str.size(), nullptr, nullptr);
internal_assert(mblen) << "WideCharToMultiByte() failed; error " << GetLastError() << "\n";
return str;
}
std::wstring from_utf8(const std::string &str) {
int wlen = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), (int)str.size(), nullptr, 0);
internal_assert(wlen) << "MultiByteToWideChar() failed; error " << GetLastError() << "\n";
std::wstring wstr(wlen, 0);
wlen = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), (int)str.size(), &wstr[0], (int)wstr.size());
internal_assert(wlen) << "MultiByteToWideChar() failed; error " << GetLastError() << "\n";
return wstr;
}
} // namespace
#endif
namespace Halide {
namespace Internal {
using std::ostringstream;
using std::string;
using std::vector;
std::string get_env_variable(char const *env_var_name) {
if (!env_var_name) {
return "";
}
#ifdef _MSC_VER
// call getenv_s without a buffer to determine the correct string length:
size_t length = 0;
if ((getenv_s(&length, nullptr, 0, env_var_name) != 0) || (length == 0)) {
return "";
}
// call it again to retrieve the value of the environment variable;
// note that 'length' already accounts for the null-terminator
std::string lvl(length - 1, '@');
size_t read = 0;
if ((getenv_s(&read, &lvl[0], length, env_var_name) != 0) || (read != length)) {
return "";
}
return lvl;
#else
char *lvl = getenv(env_var_name);
if (lvl) {
return std::string(lvl);
}
return "";
#endif
}
string running_program_name() {
#ifndef CAN_GET_RUNNING_PROGRAM_NAME
return "";
#else
string program_name;
char path[PATH_MAX] = {0};
uint32_t size = sizeof(path);
#if defined(__linux__)
ssize_t len = ::readlink("/proc/self/exe", path, size - 1);
#elif defined(__APPLE__)
ssize_t len = ::_NSGetExecutablePath(path, &size);
#endif
if (len != -1) {
#if defined(__linux__)
path[len] = '\0';
#endif
string tmp = std::string(path);
program_name = tmp.substr(tmp.find_last_of('/') + 1);
} else {
return "";
}
return program_name;
#endif
}
namespace {
// We use 64K of memory to store unique counters for the purpose of
// making names unique. Using less memory increases the likelihood of
// hash collisions. This wouldn't break anything, but makes stmts
// slightly confusing to read because names that are actually unique
// will get suffixes that falsely hint that they are not.
const int num_unique_name_counters = (1 << 14);
// We want to init these to zero, but cannot use = {0} because that
// would invoke a (deleted) copy ctor. The default initialization for
// atomics doesn't guarantee any actual initialization. Fortunately
// this is a global, which is always zero-initialized.
std::atomic<int> unique_name_counters[num_unique_name_counters] = {};
int unique_count(size_t h) {
h = h & (num_unique_name_counters - 1);
return unique_name_counters[h]++;
}
} // namespace
// There are three possible families of names returned by the methods below:
// 1) char pattern: (char that isn't '$') + number (e.g. v234)
// 2) string pattern: (string without '$') + '$' + number (e.g. fr#nk82$42)
// 3) a string that does not match the patterns above
// There are no collisions within each family, due to the unique_count
// done above, and there can be no collisions across families by
// construction.
string unique_name(char prefix) {
if (prefix == '$') {
prefix = '_';
}
return prefix + std::to_string(unique_count((size_t)(prefix)));
}
string unique_name(const std::string &prefix) {
string sanitized = prefix;
// Does the input string look like something returned from unique_name(char)?
bool matches_char_pattern = true;
// Does the input string look like something returned from unique_name(string)?
bool matches_string_pattern = true;
// Rewrite '$' to '_'. This is a many-to-one mapping, but that's
// OK, we're about to hash anyway. It just means that some names
// will share the same counter.
int num_dollars = 0;
for (size_t i = 0; i < sanitized.size(); i++) {
if (sanitized[i] == '$') {
num_dollars++;
sanitized[i] = '_';
}
if (i > 0 && !isdigit(sanitized[i])) {
// Found a non-digit after the first char
matches_char_pattern = false;
if (num_dollars) {
// Found a non-digit after a '$'
matches_string_pattern = false;
}
}
}
matches_string_pattern &= num_dollars == 1;
matches_char_pattern &= prefix.size() > 1;
// Then add a suffix that's globally unique relative to the hash
// of the sanitized name.
int count = unique_count(std::hash<std::string>()(sanitized));
if (count == 0) {
// We can return the name as-is if there's no risk of it
// looking like something unique_name has ever returned in the
// past or will ever return in the future.
if (!matches_char_pattern && !matches_string_pattern) {
return prefix;
}
}
return sanitized + "$" + std::to_string(count);
}
bool starts_with(const string &str, const string &prefix) {
if (str.size() < prefix.size()) {
return false;
}
for (size_t i = 0; i < prefix.size(); i++) {
if (str[i] != prefix[i]) {
return false;
}
}
return true;
}
bool ends_with(const string &str, const string &suffix) {
if (str.size() < suffix.size()) {
return false;
}
size_t off = str.size() - suffix.size();
for (size_t i = 0; i < suffix.size(); i++) {
if (str[off + i] != suffix[i]) {
return false;
}
}
return true;
}
string replace_all(string str, const string &find, const string &replace) {
size_t pos = 0;
while ((pos = str.find(find, pos)) != string::npos) {
str.replace(pos, find.length(), replace);
pos += replace.length();
}
return str;
}
std::vector<std::string> split_string(const std::string &source, const std::string &delim) {
std::vector<std::string> elements;
size_t start = 0;
size_t found = 0;
while ((found = source.find(delim, start)) != std::string::npos) {
elements.push_back(source.substr(start, found - start));
start = found + delim.size();
}
// If start is exactly source.size(), the last thing in source is a
// delimiter, in which case we want to add an empty string to elements.
if (start <= source.size()) {
elements.push_back(source.substr(start, std::string::npos));
}
return elements;
}
std::string extract_namespaces(const std::string &name, std::vector<std::string> &namespaces) {
namespaces = split_string(name, "::");
std::string result = namespaces.back();
namespaces.pop_back();
return result;
}
std::string strip_namespaces(const std::string &name) {
std::vector<std::string> unused;
return extract_namespaces(name, unused);
}
bool file_exists(const std::string &name) {
#ifdef _MSC_VER
return _access(name.c_str(), 0) == 0;
#else
return ::access(name.c_str(), F_OK) == 0;
#endif
}
void assert_file_exists(const std::string &name) {
internal_assert(file_exists(name)) << "File not found: " << name;
}
void assert_no_file_exists(const std::string &name) {
internal_assert(!file_exists(name)) << "File (wrongly) found: " << name;
}
void file_unlink(const std::string &name) {
#ifdef _MSC_VER
_unlink(name.c_str());
#else
::unlink(name.c_str());
#endif
}
void ensure_no_file_exists(const std::string &name) {
if (file_exists(name)) {
file_unlink(name);
}
assert_no_file_exists(name);
}
void dir_rmdir(const std::string &name) {
#ifdef _MSC_VER
std::wstring wname = from_utf8(name);
internal_assert(RemoveDirectoryW(wname.c_str()))
<< "RemoveDirectoryW() failed to remove " << name << "; error " << GetLastError() << "\n";
#else
int r = ::rmdir(name.c_str());
internal_assert(r == 0) << "Unable to remove dir: " << name << "\n";
#endif
}
FileStat file_stat(const std::string &name) {
#ifdef _MSC_VER
struct _stat a;
if (_stat(name.c_str(), &a) != 0) {
user_error << "Could not stat " << name << "\n";
}
#else
struct stat a;
if (::stat(name.c_str(), &a) != 0) {
user_error << "Could not stat " << name << "\n";
}
#endif
return {static_cast<uint64_t>(a.st_size),
static_cast<uint32_t>(a.st_mtime),
static_cast<uint32_t>(a.st_uid),
static_cast<uint32_t>(a.st_gid),
static_cast<uint32_t>(a.st_mode)};
}
#ifdef _WIN32
namespace {
// GetTempPath() will fail rudely if env vars aren't set properly,
// which is the case when we run under a tool in Bazel. Instead,
// look for the current user's AppData/Local/Temp path, which
// should be valid and writable in all versions of Windows that
// we support for compilation purposes.
std::string get_windows_tmp_dir() {
// Allow overriding of the tmpdir on Windows via an env var;
// some Windows configs can (apparently) lock down AppData/Local/Temp
// via policy, making various things break. (Note that this is intended
// to be a short-lived workaround; we would prefer to be able to avoid
// requiring this sort of band-aid if possible.)
std::string tmp_dir = get_env_variable("HL_WINDOWS_TMP_DIR");
if (!tmp_dir.empty()) {
return tmp_dir;
}
PWSTR wlocal_path;
HRESULT ret = SHGetKnownFolderPath(FOLDERID_LocalAppData, 0, nullptr, &wlocal_path);
internal_assert(ret == S_OK) << "Unable to get Local AppData folder; error " << GetLastError() << "\n";
std::string tmp = from_utf16(wlocal_path);
CoTaskMemFree(wlocal_path);
tmp = replace_all(std::move(tmp), "\\", "/");
if (tmp.back() != '/') tmp += '/';
tmp += "Temp/";
return tmp;
}
} // namespace
#endif
std::string file_make_temp(const std::string &prefix, const std::string &suffix) {
internal_assert(prefix.find('/') == string::npos &&
prefix.find('\\') == string::npos &&
suffix.find('/') == string::npos &&
suffix.find('\\') == string::npos);
#ifdef _WIN32
// Windows implementations of mkstemp() try to create the file in the root
// directory Unfortunately, that requires ADMIN privileges, which are not
// guaranteed here.
std::wstring tmp_dir = from_utf8(get_windows_tmp_dir());
std::wstring wprefix = from_utf8(prefix);
WCHAR tmp_file[MAX_PATH];
// Note that GetTempFileNameW() actually creates the file.
DWORD ret = GetTempFileNameW(tmp_dir.c_str(), wprefix.c_str(), 0, tmp_file);
internal_assert(ret != 0) << "GetTempFileNameW() failed; error " << GetLastError() << "\n";
return from_utf16(tmp_file);
#else
std::string templ = "/tmp/" + prefix + "XXXXXX" + suffix;
// Copy into a temporary buffer, since mkstemp modifies the buffer in place.
std::vector<char> buf(templ.size() + 1);
strcpy(&buf[0], templ.c_str());
int fd = mkstemps(&buf[0], suffix.size());
internal_assert(fd != -1) << "Unable to create temp file for (" << &buf[0] << ")\n";
close(fd);
return std::string(&buf[0]);
#endif
}
std::string dir_make_temp() {
#ifdef _WIN32
std::string tmp_dir = get_windows_tmp_dir();
// There's no direct API to do this in Windows;
// our clunky-but-adequate approach here is to use
// CoCreateGuid() to create a probably-unique name.
// Add a limit on the number of tries just in case.
for (int tries = 0; tries < 100; ++tries) {
GUID guid;
HRESULT hr = CoCreateGuid(&guid);
internal_assert(hr == S_OK);
std::ostringstream name;
name << std::hex
<< std::setfill('0')
<< std::setw(8)
<< guid.Data1
<< std::setw(4)
<< guid.Data2
<< guid.Data3
<< std::setw(2);
for (int i = 0; i < 8; i++) {
name << (int)guid.Data4[i];
}
std::string dir = tmp_dir + name.str();
std::wstring wdir = from_utf8(dir);
BOOL success = CreateDirectoryW(wdir.c_str(), nullptr);
if (success) {
debug(1) << "temp dir is: " << dir << "\n";
return dir;
}
// If name already existed, just loop and try again.
// Any other error, break from loop and fail.
if (GetLastError() != ERROR_ALREADY_EXISTS) {
break;
}
}
internal_error << "Unable to create temp directory in " << tmp_dir << "\n";
return "";
#else
std::string templ = "/tmp/XXXXXX";
// Copy into a temporary buffer, since mkdtemp modifies the buffer in place.
std::vector<char> buf(templ.size() + 1);
strcpy(&buf[0], templ.c_str());
char *result = mkdtemp(&buf[0]);
internal_assert(result != nullptr) << "Unable to create temp directory.\n";
return std::string(result);
#endif
}
std::vector<char> read_entire_file(const std::string &pathname) {
std::ifstream f(pathname, std::ios::in | std::ios::binary);
std::vector<char> result;
f.seekg(0, std::ifstream::end);
size_t size = f.tellg();
result.resize(size);
f.seekg(0, std::ifstream::beg);
f.read(result.data(), result.size());
internal_assert(f.good()) << "Unable to read file: " << pathname;
f.close();
return result;
}
void write_entire_file(const std::string &pathname, const void *source, size_t source_len) {
std::ofstream f(pathname, std::ios::out | std::ios::binary);
f.write(reinterpret_cast<const char *>(source), source_len);
f.flush();
internal_assert(f.good()) << "Unable to write file: " << pathname;
f.close();
}
int run_process(std::vector<std::string> args) {
internal_assert(!args.empty()) << "run_process called with empty args\n";
std::vector<char *> argv;
argv.reserve(args.size() + 1);
for (auto &a : args) {
argv.push_back(a.data());
}
argv.push_back(nullptr);
debug(2) << "Running process: " << PrintSpan(args) << "\n";
#ifdef _WIN32
// Wait for completion; return the child's exit code.
int rc = _spawnvp(_P_WAIT, argv[0], argv.data());
return (rc >= 0) ? rc : -1;
#else
pid_t pid = 0;
int status = posix_spawnp(&pid, argv[0], nullptr, nullptr, argv.data(), environ);
if (status != 0 || waitpid(pid, &status, 0) == -1) {
return -1;
}
return WIFEXITED(status) ? WEXITSTATUS(status) : -1;
#endif
}
bool add_would_overflow(int bits, int64_t a, int64_t b) {
int64_t max_val = 0x7fffffffffffffffLL >> (64 - bits);
int64_t min_val = -max_val - 1;
return ((b > 0 && a > max_val - b) || // (a + b) > max_val, rewritten to avoid overflow
(b < 0 && a < min_val - b)); // (a + b) < min_val, rewritten to avoid overflow
}
bool add_with_overflow(int bits, int64_t a, int64_t b, int64_t *result) {
#ifndef _MSC_VER
if (bits == 64) {
static_assert(sizeof(long long) == sizeof(int64_t));
bool flag = __builtin_saddll_overflow(a, b, (long long *)result);
if (flag) {
// Overflowed 64 bits
*result = 0;
}
return !flag;
}
#endif
if (add_would_overflow(bits, a, b)) {
*result = 0;
return false;
} else {
*result = a + b;
return true;
}
}
bool sub_would_overflow(int bits, int64_t a, int64_t b) {
int64_t max_val = 0x7fffffffffffffffLL >> (64 - bits);
int64_t min_val = -max_val - 1;
return ((b < 0 && a > max_val + b) || // (a - b) > max_val, rewritten to avoid overflow
(b > 0 && a < min_val + b)); // (a - b) < min_val, rewritten to avoid overflow
}
bool sub_with_overflow(int bits, int64_t a, int64_t b, int64_t *result) {
#ifndef _MSC_VER
if (bits == 64) {
static_assert(sizeof(long long) == sizeof(int64_t));
bool flag = __builtin_ssubll_overflow(a, b, (long long *)result);
if (flag) {
// Overflowed 64 bits
*result = 0;
}
return !flag;
}
#endif
if (sub_would_overflow(bits, a, b)) {
*result = 0;
return false;
} else {
*result = a - b;
return true;
}
}
bool mul_would_overflow(int bits, int64_t a, int64_t b) {
int64_t max_val = 0x7fffffffffffffffLL >> (64 - bits);
int64_t min_val = -max_val - 1;
if (a == 0) {
return false;
} else if (a == -1) {
return b == min_val;
} else {
// Do the multiplication as a uint64, for which overflow is
// well defined, then cast the bits back to int64 to get
// multiplication modulo 2^64.
int64_t ab = (int64_t)((uint64_t)a) * ((uint64_t)b);
// The first two clauses catch overflow mod 2^bits, assuming
// no 64-bit overflow occurs, and the third clause catches
// 64-bit overflow.
return ab < min_val || ab > max_val || (ab / a != b);
}
}
bool mul_with_overflow(int bits, int64_t a, int64_t b, int64_t *result) {
#ifndef _MSC_VER
if (bits == 64) {
static_assert(sizeof(long long) == sizeof(int64_t));
bool flag = __builtin_smulll_overflow(a, b, (long long *)result);
if (flag) {
// Overflowed 64 bits
*result = 0;
}
return !flag;
}
#endif
if (mul_would_overflow(bits, a, b)) {
*result = 0;
return false;
} else {
*result = a * b;
return true;
}
}
struct TickStackEntry {
std::chrono::time_point<std::chrono::high_resolution_clock> time;
string file;
int line;
};
namespace {
thread_local vector<TickStackEntry> tick_stack;
} // namespace
void halide_tic_impl(const char *file, int line) {
string f = file;
f = split_string(f, "/").back();
tick_stack.push_back({std::chrono::high_resolution_clock::now(), f, line});
}
void halide_toc_impl(const char *file, int line) {
auto t1 = tick_stack.back();
auto t2 = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> diff = t2 - t1.time;
tick_stack.pop_back();
for (size_t i = 0; i < tick_stack.size(); i++) {
debug(1) << " ";
}
string f = file;
f = split_string(f, "/").back();
debug(1) << t1.file << ":" << t1.line << " ... " << f << ":" << line << " : " << diff.count() * 1000 << " ms\n";
}
std::string c_print_name(const std::string &name,
bool prefix_underscore) {
ostringstream oss;
// Prefix an underscore to avoid reserved words (e.g. a variable named "while")
if (prefix_underscore && isalpha(name[0])) {
oss << "_";
}
for (char c : name) {
if (c == '.') {
oss << "_";
} else if (c == '$') {
oss << "__";
} else if (c != '_' && !isalnum(c)) {
oss << "___";
} else {
oss << c;
}
}
return oss.str();
}
int get_llvm_version() {
static_assert(LLVM_VERSION > 0, "LLVM_VERSION is not defined");
return LLVM_VERSION;
}
#ifdef _WIN32
namespace {
struct GenericFiberArgs {
const std::function<void()> &run;
LPVOID main_fiber;
#ifdef HALIDE_WITH_EXCEPTIONS
std::exception_ptr exception = nullptr; // NOLINT - clang-tidy complains this isn't thrown
#endif
};
void WINAPI generic_fiber_entry_point(LPVOID argument) {
auto *action = reinterpret_cast<GenericFiberArgs *>(argument);
#ifdef HALIDE_WITH_EXCEPTIONS
try {
#endif
action->run();
#ifdef HALIDE_WITH_EXCEPTIONS
} catch (...) {
action->exception = std::current_exception();
}
#endif
SwitchToFiber(action->main_fiber);
}
} // namespace
#endif
} // namespace Internal
namespace {
struct CompilerStackSize {
CompilerStackSize() {
std::string stack_size = Internal::get_env_variable("HL_COMPILER_STACK_SIZE");
if (stack_size.empty()) {
size = default_compiler_stack_size;
} else {
size = std::atoi(stack_size.c_str());
}
}
size_t size;
} stack_size;
} // namespace
void set_compiler_stack_size(size_t sz) {
stack_size.size = sz;
}
size_t get_compiler_stack_size() {
return stack_size.size;
}
namespace Internal {
#if defined(HALIDE_INTERNAL_USING_ASAN) || defined(__ANDROID__)
// If we are compiling under ASAN, we will get a zillion warnings about
// ASAN not supporting makecontext/swapcontext and the possibility of
// false positives.
//
// If we are building for Android, well, it apparently doesn't provide
// makecontext() / swapcontext(), despite being posixy
#define MAKECONTEXT_OK 0
#else
#define MAKECONTEXT_OK 1
#endif
#if MAKECONTEXT_OK
namespace {
// We can't reliably pass arguments through makecontext, because
// the calling convention involves an invalid function pointer
// cast which passes different numbers of bits on different
// platforms, so we use a thread local to pass arguments.
thread_local void *run_with_large_stack_arg = nullptr;
} // namespace
#endif
void run_with_large_stack(const std::function<void()> &action) {
if (stack_size.size == 0) {
// User has requested no stack swapping
action();
return;
}
#if _WIN32
// Only exists for its address, which is used to compute remaining stack space.
ULONG_PTR approx_stack_pos;
ULONG_PTR stack_low, stack_high;
GetCurrentThreadStackLimits(&stack_low, &stack_high);
ptrdiff_t stack_remaining = (char *)&approx_stack_pos - (char *)stack_low;
if (stack_remaining < stack_size.size) {
debug(1) << "Insufficient stack space (" << stack_remaining << " bytes). Switching to fiber with " << stack_size.size << "-byte stack.\n";
auto was_a_fiber = IsThreadAFiber();
auto *main_fiber = was_a_fiber ? GetCurrentFiber() : ConvertThreadToFiber(nullptr);
internal_assert(main_fiber) << "ConvertThreadToFiber failed with code: " << GetLastError() << "\n";
GenericFiberArgs fiber_args{action, main_fiber};
auto *lower_fiber = CreateFiber(stack_size.size, generic_fiber_entry_point, &fiber_args);
internal_assert(lower_fiber) << "CreateFiber failed with code: " << GetLastError() << "\n";
SwitchToFiber(lower_fiber);
DeleteFiber(lower_fiber);
debug(1) << "Returned from fiber.\n";
#ifdef HALIDE_WITH_EXCEPTIONS
if (fiber_args.exception) {
debug(1) << "Fiber threw exception. Rethrowing...\n";
std::rethrow_exception(fiber_args.exception);
}
#endif
if (!was_a_fiber) {
BOOL success = ConvertFiberToThread();
internal_assert(success) << "ConvertFiberToThread failed with code: " << GetLastError() << "\n";
}
return;
}
#else
// On posixy systems we have makecontext / swapcontext
#if !MAKECONTEXT_OK
action();
return;
#else
#ifdef HALIDE_WITH_EXCEPTIONS
struct Args {
const std::function<void()> &run;
std::exception_ptr exception = nullptr; // NOLINT - clang-tidy complains this isn't thrown
} args{action};
auto trampoline = []() {
Args *arg = (Args *)run_with_large_stack_arg;
try {
arg->run();
} catch (...) {
arg->exception = std::current_exception();
}
};
#else
struct Args {
const std::function<void()> &run;
} args{action};
auto trampoline = []() {
((Args *)run_with_large_stack_arg)->run();
};
#endif
ucontext_t context, calling_context;
// We'll allocate some protected guard pages at the end of the
// stack we're making to catch stack overflows when they happen,
// as opposed to having them cause silent corruption. We pick an
// amount of memory that should be comfortably larger than most
// stack frames - 64k.
const size_t guard_band = 64 * 1024;
void *stack = mmap(nullptr, stack_size.size + guard_band, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
internal_assert(stack) << "mmap failed with error " << strerror(errno);
int err = mprotect((char *)stack + stack_size.size, guard_band, PROT_NONE);
internal_assert(err == 0) << "mprotect failed with error " << strerror(errno);
err = getcontext(&context);
internal_assert(err == 0) << "getcontext failed with error " << strerror(errno);
context.uc_stack.ss_sp = stack;
context.uc_stack.ss_size = stack_size.size;
context.uc_stack.ss_flags = 0;
context.uc_link = &calling_context;
run_with_large_stack_arg = &args;
makecontext(&context, trampoline, 0);
err = swapcontext(&calling_context, &context);
internal_assert(err == 0) << "swapcontext failed with error " << strerror(errno);
err = munmap(stack, stack_size.size + guard_band);
internal_assert(err == 0) << "munmap failed with error " << strerror(errno);
#ifdef HALIDE_WITH_EXCEPTIONS
if (args.exception) {
debug(1) << "Subcontext threw exception. Rethrowing...\n";
std::rethrow_exception(args.exception);
}
#endif
#endif // not ADDRESS_SANITIZER
#endif
}
// Portable bit-counting methods
int popcount64(uint64_t x) {
#ifdef _MSC_VER
#if defined(_M_ARM) || defined(_M_ARM64) || defined(_M_ARM64_EC)
int popcnt = 0;
while (x) {
x &= x - 1;
popcnt++;
}
return popcnt;
#elif defined(_WIN64)
return __popcnt64(x);
#else
return __popcnt((uint32_t)(x >> 32)) + __popcnt((uint32_t)(x & 0xffffffff));
#endif
#else
static_assert(sizeof(unsigned long long) >= sizeof(uint64_t), "");
return __builtin_popcountll(x);
#endif
}
int clz64(uint64_t x) {
internal_assert(x != 0);
#ifdef _MSC_VER
unsigned long r = 0;
#if defined(_WIN64)
return _BitScanReverse64(&r, x) ? (63 - r) : 64;
#else
if (_BitScanReverse(&r, (uint32_t)(x >> 32))) {
return (63 - (r + 32));
} else if (_BitScanReverse(&r, (uint32_t)(x & 0xffffffff))) {
return 63 - r;
} else {
return 64;
}
#endif
#else
static_assert(sizeof(unsigned long long) >= sizeof(uint64_t), "");
constexpr int offset = (sizeof(unsigned long long) - sizeof(uint64_t)) * 8;
return __builtin_clzll(x) + offset;
#endif
}
int ctz64(uint64_t x) {
internal_assert(x != 0);
#ifdef _MSC_VER
unsigned long r = 0;
#if defined(_WIN64)
return _BitScanForward64(&r, x) ? r : 64;
#else
if (_BitScanForward(&r, (uint32_t)(x & 0xffffffff))) {
return r;
} else if (_BitScanForward(&r, (uint32_t)(x >> 32))) {
return r + 32;
} else {
return 64;
}
#endif
#else
static_assert(sizeof(unsigned long long) >= sizeof(uint64_t), "");
return __builtin_ctzll(x);
#endif
}
} // namespace Internal
void load_plugin(const std::string &lib_name) {
#ifdef _WIN32
std::string lib_path = lib_name;
if (lib_path.find('.') == std::string::npos) {
lib_path += ".dll";
}
std::wstring wide_lib = from_utf8(lib_path);
HMODULE library = LoadLibraryW(wide_lib.c_str());
if (!library) {
DWORD error = GetLastError();
LPWSTR message = nullptr;
FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
nullptr, error, 0, reinterpret_cast<LPWSTR>(&message), 0, nullptr);
user_assert(message)
<< "Failed to load: " << lib_path << ".\n"
<< "FormatMessage failed while processing error in LoadLibraryW (errno "
<< error << ").\n";
std::string err_msg = from_utf16(message);
LocalFree(message);
user_error << "Failed to load: " << lib_path << ";\n"
<< "LoadLibraryW failed with error " << error << ": "
<< err_msg << "\n";
}
#else
std::string lib_path = lib_name;
if (lib_path.find('.') == std::string::npos) {
lib_path = "lib" + lib_path + ".so";
}
if (dlopen(lib_path.c_str(), RTLD_LAZY) == nullptr) {
user_error << "Failed to load: " << lib_path << ": " << dlerror() << "\n";
}
#endif
}
} // namespace Halide