syscall_emul: remove mmapFlagTable
authorSteve Reinhardt <steve.reinhardt@amd.com>
Fri, 1 Apr 2016 23:38:16 +0000 (16:38 -0700)
committerSteve Reinhardt <steve.reinhardt@amd.com>
Fri, 1 Apr 2016 23:38:16 +0000 (16:38 -0700)
After all this it turns out we don't even use it.

src/arch/alpha/linux/linux.hh
src/arch/arm/linux/linux.hh
src/arch/mips/linux/linux.hh
src/arch/power/linux/linux.hh
src/arch/sparc/linux/linux.hh
src/arch/x86/linux/linux.hh
src/kern/linux/flag_tables.hh

index 409ad4dd1c3c9070667e56ceab503653ea59bcb9..cacb96bd32246ce16181d0c84eb6ff1786f5355e 100644 (file)
@@ -103,9 +103,6 @@ class AlphaLinux : public Linux
     static const int TGT_O_PATH         = 040000000;    //!< O_PATH
     //@}
 
-    /// For mmap().
-    static SyscallFlagTransTable mmapFlagTable[];
-
     static const unsigned TGT_MAP_SHARED        = 0x000001;
     static const unsigned TGT_MAP_PRIVATE       = 0x000002;
     static const unsigned TGT_MAP_ANON          = 0x000010;
index 5c814cde14c8ff3d378e8fd5cbb70d3b57ee57eb..73f0fa699bb490c915223a558a11141f98ef937c 100644 (file)
@@ -124,9 +124,6 @@ class ArmLinux32 : public Linux
     static const int TGT_O_PATH      = 010000000; //!< O_PATH
     //@}
 
-    /// For mmap().
-    static SyscallFlagTransTable mmapFlagTable[];
-
     static const unsigned TGT_MAP_SHARED        = 0x00001;
     static const unsigned TGT_MAP_PRIVATE       = 0x00002;
     static const unsigned TGT_MAP_ANON          = 0x00020;
index e0b785c76442b79fb7fc9a8fd39198c6a742b4ea..38e6abcd1000598069e8aeb9661594a9c77145e5 100644 (file)
@@ -102,9 +102,6 @@ class MipsLinux : public Linux
     static const int TGT_O_PATH         = 0x00200000;   //!< O_PATH
     //@}
 
-    /// For mmap().
-    static SyscallFlagTransTable mmapFlagTable[];
-
     static const unsigned TGT_MAP_SHARED        = 0x00001;
     static const unsigned TGT_MAP_PRIVATE       = 0x00002;
     static const unsigned TGT_MAP_ANON          = 0x00800;
index 55634800e687dc7199a01127965c4b4d636f2a1e..de149a1a655207a41f98f0e3028ae8353ff3d4ba 100644 (file)
@@ -163,9 +163,6 @@ class PowerLinux : public Linux
     static const int TGT_O_PATH      = 010000000; //!< O_PATH
     //@}
 
-    /// For mmap().
-    static SyscallFlagTransTable mmapFlagTable[];
-
     static const unsigned TGT_MAP_SHARED        = 0x00001;
     static const unsigned TGT_MAP_PRIVATE       = 0x00002;
     static const unsigned TGT_MAP_ANON          = 0x00020;
index d209dcef0e6eca5befe393c7a821faec59314c02..69d373b6738e216b9a66efc77a09fe3bdb659cee 100644 (file)
@@ -119,9 +119,6 @@ class SparcLinux : public Linux
 
     static const int NUM_OPEN_FLAGS;
 
-    /// For mmap().
-    static SyscallFlagTransTable mmapFlagTable[];
-
     static const unsigned TGT_MAP_SHARED        = 0x00001;
     static const unsigned TGT_MAP_PRIVATE       = 0x00002;
     static const unsigned TGT_MAP_ANON          = 0x00020;
index 47eac12b894514752de62db65fb2bcf4cef56e70..fb8e611cbd5a1956fa5676ae5e4657263b82da5f 100644 (file)
@@ -126,9 +126,6 @@ class X86Linux64 : public Linux
 
     static const int NUM_OPEN_FLAGS;
 
-    /// For mmap().
-    static SyscallFlagTransTable mmapFlagTable[];
-
     static const unsigned TGT_MAP_SHARED        = 0x00001;
     static const unsigned TGT_MAP_PRIVATE       = 0x00002;
     static const unsigned TGT_MAP_32BIT         = 0x00040;
index 30c8f54a5628766db0634d533510e996bf404eeb..9e5dfcee63ff484cb4169a1adca5bf95ef5a2936 100644 (file)
@@ -46,7 +46,7 @@
  * @file flag_tables.hh
  *
  * This file contains definitions of flag translation tables for the
- * open() and mmap() system calls.  Since the tables are nearly identical
+ * open() system call.  Since the tables are nearly identical
  * across target platforms (other than the values of the target flags),
  * we use a single copy of the tables but include it separately for
  * each target platform.  The TARGET macro must be #defined before including
@@ -110,47 +110,3 @@ SyscallFlagTransTable TARGET::openFlagTable[] = {
 
 const int TARGET::NUM_OPEN_FLAGS =
   sizeof(TARGET::openFlagTable) / sizeof(TARGET::openFlagTable[0]);
-
-// mmap(2) flags translation table
-SyscallFlagTransTable TARGET::mmapFlagTable[] = {
-  { TARGET::TGT_MAP_SHARED,     MAP_SHARED },
-  { TARGET::TGT_MAP_PRIVATE,    MAP_PRIVATE },
-  { TARGET::TGT_MAP_FIXED,      MAP_FIXED },
-  { TARGET::TGT_MAP_ANONYMOUS,  MAP_ANONYMOUS },
-  { TARGET::TGT_MAP_ANON,       MAP_ANON },
-  { TARGET::TGT_MAP_FILE,       MAP_FILE },
-#if defined(MAP_32BIT) && defined(TARGET_HAS_MAP_32BIT)
-  { TARGET::TGT_MAP_32BIT,      MAP_32BIT },
-#endif
-#ifdef MAP_DENYWRITE
-  { TARGET::TGT_MAP_DENYWRITE,  MAP_DENYWRITE },
-#endif
-#ifdef MAP_EXECUTABLE
-  { TARGET::TGT_MAP_EXECUTABLE, MAP_EXECUTABLE },
-#endif
-#ifdef MAP_GROWSDOWN
-  { TARGET::TGT_MAP_GROWSDOWN,  MAP_GROWSDOWN },
-#endif
-#ifdef MAP_HUGETLB
-  { TARGET::TGT_MAP_HUGETLB,    MAP_HUGETLB },
-#endif
-#ifdef MAP_LOCKED
-  { TARGET::TGT_MAP_LOCKED,     MAP_LOCKED },
-#endif
-#ifdef MAP_NONBLOCK
-  { TARGET::TGT_MAP_NONBLOCK,   MAP_NONBLOCK },
-#endif
-#ifdef MAP_NORESERVE
-  { TARGET::TGT_MAP_NORESERVE,  MAP_NORESERVE },
-#endif
-#ifdef MAP_POPULATE
-  { TARGET::TGT_MAP_POPULATE,   MAP_POPULATE },
-#endif
-#ifdef MAP_STACK
-  { TARGET::TGT_MAP_STACK,      MAP_STACK },
-#endif
-};
-
-const unsigned TARGET::NUM_MMAP_FLAGS =
-  sizeof(TARGET::mmapFlagTable) / sizeof(TARGET::mmapFlagTable[0]);
-