[llvm] [llvm-exegesis] [AArch64] Add support for Load Instructions in subprocess execution mode (PR #144895)
Sjoerd Meijer via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 30 03:28:54 PDT 2025
================
@@ -155,6 +286,156 @@ class ExegesisAArch64Target : public ExegesisTarget {
} // namespace
+#ifdef __linux__
+// true : let use of fixed address to Virtual Address Space Ceiling
+// false: let kernel choose the address of the auxiliary memory
+bool UseFixedAddress = true;
----------------
sjoerdmeijer wrote:
This is the first argument to the mmap syscall isn't it? If the address is 0, i.e. not specified, then MMAP returns an address? This could be clarified. But either way, why do we only use the fixed addresses? And is there any value in having this boolean here? Do we need it, or is it clearer to just get rid of it if we only use the fixed addresses anyway?
https://github.com/llvm/llvm-project/pull/144895
More information about the llvm-commits
mailing list