[PATCH] D137666: [msan] Increase size of app/shadow/origin mappings on aarch64
Vitaly Buka via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 9 23:13:51 PST 2022
vitalybuka added inline comments.
================
Comment at: compiler-rt/lib/msan/msan.h:72
// - 0x0007f80000000-0x0007fffffffff: 39-bits libraries segments
// - 0x002aa00000000-0x002ab00000000: 42-bits PIE program segments
----------------
>> Context not available.
Please prefer to upload patches with "arc" tool, to avoid that.
================
Comment at: compiler-rt/lib/msan/msan.h:118
};
# define MEM_TO_SHADOW(mem) ((uptr)mem ^ 0x6000000000ULL)
# define SHADOW_TO_ORIGIN(shadow) (((uptr)(shadow)) + 0x1000000000ULL)
----------------
What about this one?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137666/new/
https://reviews.llvm.org/D137666
More information about the llvm-commits
mailing list