[llvm-exegesis] Define SYS_mmap to be SYS_mmap2 on 32-bit ARM
authorAiden Grossman <agrossman154@yahoo.com>
Mon, 26 Jun 2023 20:52:55 +0000 (20:52 +0000)
committerAiden Grossman <agrossman154@yahoo.com>
Mon, 26 Jun 2023 20:54:15 +0000 (20:54 +0000)
llvm-exegesis currently isn't compiling on 32-bit ARM due to SYS_mmap
not being defined as 32-bit ARM instead uses SYS_mmap2. This patch
defines SYS_mmap to be SYS_mmap2 in the relevant places to allow for
compilation to succeed.

llvm/tools/llvm-exegesis/lib/X86/Target.cpp
llvm/unittests/tools/llvm-exegesis/X86/TargetTest.cpp

index 04e753b..9be178b 100644 (file)
 namespace llvm {
 namespace exegesis {
 
+#ifdef __arm__
+static constexpr const intptr_t VAddressSpaceCeiling = 0xC0000000;
+#else
 static constexpr const intptr_t VAddressSpaceCeiling = 0x0000800000000000;
+#endif
 
 // If a positive value is specified, we are going to use the LBR in
 // latency-mode.
@@ -1079,6 +1083,14 @@ ExegesisX86Target::generateExitSyscall(unsigned ExitCode) const {
 #define MAP_FIXED_NOREPLACE MAP_FIXED
 #endif
 
+// 32 bit ARM doesn't have mmap and uses mmap2 instead. The only difference
+// between the two syscalls is that mmap2's offset parameter is in terms 4096
+// byte offsets rather than individual bytes, so for our purposes they are
+// effectively the same as all ofsets here are set to 0.
+#ifdef __arm__
+#define SYS_mmap SYS_mmap2
+#endif
+
 std::vector<MCInst>
 ExegesisX86Target::generateMmap(intptr_t Address, size_t Length,
                                 intptr_t FileDescriptorAddress) const {
index baee336..092feb1 100644 (file)
@@ -627,6 +627,14 @@ TEST_F(X86Core2TargetTest, GenerateExitSyscallTest) {
 #define MAP_FIXED_NOREPLACE MAP_FIXED
 #endif
 
+// 32 bit ARM doesn't have mmap and uses mmap2 instead. The only difference
+// between the two syscalls is that mmap2's offset parameter is in terms 4096
+// byte offsets rather than individual bytes, so for our purposes they are
+// effectively the same as all ofsets here are set to 0.
+#ifdef __arm__
+#define SYS_mmap SYS_mmap2
+#endif
+
 TEST_F(X86Core2TargetTest, GenerateMmapTest) {
   EXPECT_THAT(State.getExegesisTarget().generateMmap(0x1000, 4096, 0x2000),
               ElementsAre(IsMovImmediate(X86::MOV64ri, X86::RDI, 0x1000),