[PATCH] D56206: Introduce `RemoteAddressSpaceView` and `VMReadContext`.
Dan Liew via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 11 12:24:33 PST 2019
delcypher marked an inline comment as done.
delcypher added inline comments.
================
Comment at: lib/sanitizer_common/sanitizer_vm_read_context_mac.cc:42
+bool VMReadContext::Read(uptr target_address, u64 size, bool writable) {
+ // TODO(dliew): Investigate if `writable` is useful for optimization. For
+ // now we just ignore this argument and assume that we are compliant.
----------------
vitalybuka wrote:
> Just remove it. You'll add it when needed
By "it" I presume you mean that `writable` argument?
But if I do that, how far up the stack should I go? Taken to the extreme that means reverting what was landed in https://reviews.llvm.org/D54879 . I really don't want to do that because the distinction between writable and read-only access is likely important.
Repository:
rCRT Compiler Runtime
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56206/new/
https://reviews.llvm.org/D56206
More information about the llvm-commits
mailing list