pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

compiler-rt-netbsd: Update to SVN r. 311937



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Mon Aug 28 23:33:16 2017 +0200
Changeset:	332ac3e008283ea2edfba59f90dd05f7b1d20039

Modified Files:
	compiler-rt-netbsd/distinfo
Removed Files:
	compiler-rt-netbsd/patches/patch-lib_asan_asan__mapping.h

Log Message:
compiler-rt-netbsd: Update to SVN r. 311937

The patch for NetBSD/amd64 shadow offset has been merged upstream.

Sponsored by <The NetBSD Foundation>

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=332ac3e008283ea2edfba59f90dd05f7b1d20039

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 compiler-rt-netbsd/distinfo                        |  1 -
 .../patches/patch-lib_asan_asan__mapping.h         | 37 ----------------------
 2 files changed, 38 deletions(-)

diffs:
diff --git a/compiler-rt-netbsd/distinfo b/compiler-rt-netbsd/distinfo
index 4670fbbf69..e7b4df4503 100644
--- a/compiler-rt-netbsd/distinfo
+++ b/compiler-rt-netbsd/distinfo
@@ -13,7 +13,6 @@ SHA1 (llvm-3.6.2.src.tar.xz) = 7a00257eb2bc9431e4c77c3a36b033072c54bc7e
 RMD160 (llvm-3.6.2.src.tar.xz) = 521cbc5fe2925ea3c6e90c7a31f752a04045c972
 Size (llvm-3.6.2.src.tar.xz) = 12802380 bytes
 SHA1 (patch-cmake_config-ix.cmake) = 2255939ffe6948fbc1f0dfa518559efee16e721a
-SHA1 (patch-lib_asan_asan__mapping.h) = 73f5f33e946868b4780864e633916376b11b16f1
 SHA1 (patch-lib_fuzzer_FuzzerDefs.h) = 03a2e3839c36f696d4faea173005f11685e9e05e
 SHA1 (patch-lib_fuzzer_FuzzerExtFunctionsWeak.cpp) = c142b22c7aedb1f1a350423c391bc4c1147f5354
 SHA1 (patch-lib_fuzzer_FuzzerExtraCounters.cpp) = 52fefa927397acd7e83df06df7ec13d78f1c53b0
diff --git a/compiler-rt-netbsd/patches/patch-lib_asan_asan__mapping.h b/compiler-rt-netbsd/patches/patch-lib_asan_asan__mapping.h
deleted file mode 100644
index 0d32f9db69..0000000000
--- a/compiler-rt-netbsd/patches/patch-lib_asan_asan__mapping.h
+++ /dev/null
@@ -1,37 +0,0 @@
-$NetBSD$
-
---- lib/asan/asan_mapping.h.orig	2017-07-03 15:33:06.000000000 +0000
-+++ lib/asan/asan_mapping.h
-@@ -115,6 +115,13 @@
- // || `[0x40000000, 0x47ffffff]` || LowShadow  ||
- // || `[0x00000000, 0x3fffffff]` || LowMem     ||
- //
-+// Shadow mapping on NetBSD/x86-64 with SHADOW_OFFSET == 0x400000000000:
-+// || `[0x4feffffffe01, 0x7f7ffffff000]` || HighMem    ||
-+// || `[0x49fdffffffc0, 0x4feffffffe00]` || HighShadow ||
-+// || `[0x480000000000, 0x49fdffffffbf]` || ShadowGap  ||
-+// || `[0x400000000000, 0x47ffffffffff]` || LowShadow  ||
-+// || `[0x000000000000, 0x3fffffffffff]` || LowMem     ||
-+//
- // Default Windows/i386 mapping:
- // (the exact location of HighShadow/HighMem may vary depending
- //  on WoW64, /LARGEADDRESSAWARE, etc).
-@@ -140,6 +147,7 @@ static const u64 kPPC64_ShadowOffset64 =
- static const u64 kSystemZ_ShadowOffset64 = 1ULL << 52;
- static const u64 kFreeBSD_ShadowOffset32 = 1ULL << 30;  // 0x40000000
- static const u64 kFreeBSD_ShadowOffset64 = 1ULL << 46;  // 0x400000000000
-+static const u64 kNetBSD_ShadowOffset64 = 1ULL << 46;  // 0x400000000000
- static const u64 kWindowsShadowOffset32 = 3ULL << 28;  // 0x30000000
- 
- #define SHADOW_SCALE kDefaultShadowScale
-@@ -176,8 +184,8 @@ static const u64 kWindowsShadowOffset32 
- #    define SHADOW_OFFSET kPPC64_ShadowOffset64
- #  elif defined(__s390x__)
- #    define SHADOW_OFFSET kSystemZ_ShadowOffset64
--#  elif SANITIZER_FREEBSD
--#    define SHADOW_OFFSET kFreeBSD_ShadowOffset64
-+#  elif SANITIZER_NETBSD
-+#    define SHADOW_OFFSET kNetBSD_ShadowOffset64
- #  elif SANITIZER_MAC
- #   define SHADOW_OFFSET kDefaultShadowOffset64
- #  elif defined(__mips64)


Home | Main Index | Thread Index | Old Index