L4Re/departure

libexec/include/exec/pager.h

515:bae2ddb47ecd
20 months ago Paul Boddie Introduced support for reserve_area in the internal pager along with different kinds of memory area. This permits the execution of threaded programs.
     1 /*     2  * Common system pager functionality.     3  *     4  * Copyright (C) 2022, 2023 Paul Boddie <paul@boddie.org.uk>     5  *     6  * This program is free software; you can redistribute it and/or     7  * modify it under the terms of the GNU General Public License as     8  * published by the Free Software Foundation; either version 2 of     9  * the License, or (at your option) any later version.    10  *    11  * This program is distributed in the hope that it will be useful,    12  * but WITHOUT ANY WARRANTY; without even the implied warranty of    13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    14  * GNU General Public License for more details.    15  *    16  * You should have received a copy of the GNU General Public License    17  * along with this program; if not, write to the Free Software    18  * Foundation, Inc., 51 Franklin Street, Fifth Floor,    19  * Boston, MA  02110-1301, USA    20  */    21     22 #pragma once    23     24 #include <set>    25     26 #include <exec/memory_area.h>    27     28     29     30 /* Collection definitions. */    31     32 typedef std::set<l4_cap_idx_t> Capabilities;    33     34     35     36 /* A simple system pager also acting as a region mapper. */    37     38 class ExecPager    39 {    40 protected:    41     42   /* Top-level area containing other areas and regions. */    43     44   AvailableMemoryArea _area;    45     46   /* Dataspace capabilities associated with regions. */    47     48   Capabilities _dataspaces;    49     50   /* Region manager/mapper functionality. */    51     52   virtual long find(address_t *start, address_t *size, map_flags_t flags,    53                     unsigned char align, MemoryArea **area);    54     55 public:    56   explicit ExecPager(address_t start = 0, address_t end = 0);    57     58   virtual ~ExecPager();    59     60   /* Region management methods. */    61     62   virtual void add(MemoryArea &area);    63     64   virtual void remove(MemoryArea &area);    65     66   /* Notification methods. */    67     68   virtual long exception(l4_exc_regs_t regs,    69                          l4_snd_fpage_t *region) = 0;    70     71   virtual long page_fault(l4_umword_t pfa, l4_umword_t pc,    72                           l4_snd_fpage_t *region) = 0;    73 };    74     75 /* vim: tabstop=2 expandtab shiftwidth=2    76 */