diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2021-09-09 14:40:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-09 21:40:03 +0000 |
commit | d127f82d7dbe27a35e07a4f3a723fa7b6811c756 (patch) | |
tree | d901b5ad3d5ab55792a5618d118d0d9b335b470b /src/emscripten-optimizer | |
parent | 4e4c53c62c93e6dbb165ac3e941ef85c65ddb359 (diff) | |
download | binaryen-d127f82d7dbe27a35e07a4f3a723fa7b6811c756.tar.gz binaryen-d127f82d7dbe27a35e07a4f3a723fa7b6811c756.tar.bz2 binaryen-d127f82d7dbe27a35e07a4f3a723fa7b6811c756.zip |
Make static buffers in numToString thread local (#4134)
Validation is performed on multiple threads at once and when there are multiple
validation failures, those threads can all end up in `numToString` at the same
time as they construct their respective error messages. Previously the threads
would race on their access to the snprintf buffers, sometimes leading to
segfaults. Fix the data races by making the buffers thread local.
Diffstat (limited to 'src/emscripten-optimizer')
-rw-r--r-- | src/emscripten-optimizer/simple_ast.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/emscripten-optimizer/simple_ast.h b/src/emscripten-optimizer/simple_ast.h index 70ecb2acd..7644daac3 100644 --- a/src/emscripten-optimizer/simple_ast.h +++ b/src/emscripten-optimizer/simple_ast.h @@ -947,17 +947,19 @@ struct JSPrinter { bool integer = wasm::isInteger(d); #define BUFFERSIZE 1000 // f is normal, e is scientific for float, x for integer - static char full_storage_f[BUFFERSIZE], full_storage_e[BUFFERSIZE]; + // These need to be thread-local because they are returned. + thread_local char full_storage_f[BUFFERSIZE]; + thread_local char full_storage_e[BUFFERSIZE]; // full has one more char, for a possible '-' - static char *storage_f = full_storage_f + 1, - *storage_e = full_storage_e + 1; + char* storage_f = full_storage_f + 1; + char* storage_e = full_storage_e + 1; auto err_f = std::numeric_limits<double>::quiet_NaN(); auto err_e = std::numeric_limits<double>::quiet_NaN(); for (int e = 0; e <= 1; e++) { char* buffer = e ? storage_e : storage_f; double temp; if (!integer) { - static char format[6]; + char format[6]; for (int i = 0; i <= 18; i++) { format[0] = '%'; format[1] = '.'; |