llvm-project/lldb/source
Zachary Turner 3ddcd314f2 Dont' use a random probe & alloc strategy for the IRMemoryMap.
The current strategy for host allocation is to choose a random
address and attempt to allocate there, eventually failing if the
allocation cannot be satisfied.

The C standard only guarantees that RAND_MAX >= 32767, so for
platforms that use a very small RAND_MAX allocations will fail
with very high probability.  On such platforms (Windows is one),
you can reproduce this trivially by running lldb, typing "expr (3)"
and then hitting enter you see a failure.  Failures generally
happen with a frequency of about 1 failure every 5 evaluations.

There is no good reason that allocations need to look like "real"
pointers, so this patch changes the allocation scheme to simply
jump straight to the end and grab a free chunk of memory.

Reviewed By: Sean Callanan

Differential Revision: http://reviews.llvm.org/D4300

llvm-svn: 212630
2014-07-09 16:42:27 +00:00
..
API If a breakpoint gets deleted, any SBBreakpoints representing that 2014-07-02 18:44:43 +00:00
Breakpoint Fix typos. 2014-07-01 21:22:11 +00:00
Commands Revert "Fix broken tests due to new error output." 2014-07-09 16:31:49 +00:00
Core __arm64__ and __aarch64__ #ifdef adjustments 2014-07-09 01:29:05 +00:00
DataFormatters lldb: remove adhoc implementation of array_sizeof 2014-06-27 05:17:41 +00:00
Expression Dont' use a random probe & alloc strategy for the IRMemoryMap. 2014-07-09 16:42:27 +00:00
Host Fix tests broken by the OptionValidator changes. 2014-07-09 16:32:07 +00:00
Interpreter Fix tests broken by the OptionValidator changes. 2014-07-09 16:32:07 +00:00
Plugins __arm64__ and __aarch64__ #ifdef adjustments 2014-07-09 01:29:05 +00:00
Symbol Tweak for lldb coding style consistency. 2014-07-08 23:46:39 +00:00
Target Revert "Fix broken tests due to new error output." 2014-07-09 16:31:49 +00:00
Utility Fix typos. 2014-07-01 21:22:11 +00:00
CMakeLists.txt This creates a valid Python API for Windows, pending some issues. The changes included are - 2014-07-01 17:57:19 +00:00
Makefile Make lldb build with Makefiles on OS X. 2014-01-18 08:05:32 +00:00
lldb-log.cpp Fix typos. 2014-07-01 21:22:11 +00:00
lldb.cpp sanitise sign comparisons 2014-04-02 03:51:35 +00:00