diff options
author | Daniel Dunbar <daniel@zuster.org> | 2014-09-13 18:28:59 -0700 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2014-09-13 18:28:59 -0700 |
commit | a07fbf029a0172cb9f26c501127b8a91b07b0a6a (patch) | |
tree | 226898f3a9e150bdb34fdac3b4b331a3d26b9291 /lib/Solver/Solver.cpp | |
parent | 35723ae8eec286d357e6def1c2adec3638b4af2d (diff) | |
download | klee-a07fbf029a0172cb9f26c501127b8a91b07b0a6a.tar.gz |
[Solver] Tune down the shared memory region size on Darwin.
- See comment, this is a gross workaround for Darwin's very small default limit on shared memory size. I'm not sure how big of a counterexample users can actually expect STP to solve in practice -- if there is a practical use for larger ones it would probably be good for us to write a fallback strategy.
Diffstat (limited to 'lib/Solver/Solver.cpp')
-rw-r--r-- | lib/Solver/Solver.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/Solver/Solver.cpp b/lib/Solver/Solver.cpp index d4e572cf..3903ab0d 100644 --- a/lib/Solver/Solver.cpp +++ b/lib/Solver/Solver.cpp @@ -518,8 +518,17 @@ public: }; static unsigned char *shared_memory_ptr; -static const unsigned shared_memory_size = 1<<20; static int shared_memory_id = 0; +// Darwin by default has a very small limit on the maximum amount of shared +// memory, which will quickly be exhausted by KLEE running its tests in +// parallel. For now, we work around this by just requesting a smaller size -- +// in practice users hitting this limit on counterexample sizes probably already +// are hitting more serious scalability issues. +#ifdef __APPLE__ +static const unsigned shared_memory_size = 1<<16; +#else +static const unsigned shared_memory_size = 1<<20; +#endif static void stp_error_handler(const char* err_msg) { fprintf(stderr, "error: STP Error: %s\n", err_msg); |