[llvm-branch-commits] [llvm-branch] r228008 - Merging r226809:

Hans Wennborg hans at hanshq.net
Tue Feb 3 10:58:34 PST 2015


Author: hans
Date: Tue Feb  3 12:58:33 2015
New Revision: 228008

URL: http://llvm.org/viewvc/llvm-project?rev=228008&view=rev
Log:
Merging r226809:
------------------------------------------------------------------------
r226809 | timurrrr | 2015-01-22 04:24:21 -0800 (Thu, 22 Jan 2015) | 1 line

[ASan/Win] Move the shadow to 0x30000000
------------------------------------------------------------------------

Modified:
    llvm/branches/release_36/   (props changed)
    llvm/branches/release_36/lib/Transforms/Instrumentation/AddressSanitizer.cpp

Propchange: llvm/branches/release_36/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Tue Feb  3 12:58:33 2015
@@ -1,3 +1,3 @@
 /llvm/branches/Apple/Pertwee:110850,110961
 /llvm/branches/type-system-rewrite:133420-134817
-/llvm/trunk:155241,226023,226029,226044,226046,226048,226058,226075,226170-226171,226182,226473,226664,226708,226711,226755,227005,227085,227250,227260-227261,227290,227294,227299,227319,227339,227491,227584,227603,227670,227809,227903,227934
+/llvm/trunk:155241,226023,226029,226044,226046,226048,226058,226075,226170-226171,226182,226473,226664,226708,226711,226755,226809,227005,227085,227250,227260-227261,227290,227294,227299,227319,227339,227491,227584,227603,227670,227809,227903,227934

Modified: llvm/branches/release_36/lib/Transforms/Instrumentation/AddressSanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_36/lib/Transforms/Instrumentation/AddressSanitizer.cpp?rev=228008&r1=228007&r2=228008&view=diff
==============================================================================
--- llvm/branches/release_36/lib/Transforms/Instrumentation/AddressSanitizer.cpp (original)
+++ llvm/branches/release_36/lib/Transforms/Instrumentation/AddressSanitizer.cpp Tue Feb  3 12:58:33 2015
@@ -67,7 +67,7 @@ static const uint64_t kMIPS32_ShadowOffs
 static const uint64_t kMIPS64_ShadowOffset64 = 1ULL << 36;
 static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
 static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
-static const uint64_t kWindowsShadowOffset32 = 1ULL << 30;
+static const uint64_t kWindowsShadowOffset32 = 3ULL << 28;
 
 static const size_t kMinStackMallocSize = 1 << 6;  // 64B
 static const size_t kMaxStackMallocSize = 1 << 16;  // 64K





More information about the llvm-branch-commits mailing list