Lines Matching full:memory
29 Motivations for a New Virtual Memory System
31 The virtual memory system distributed with Berkeley UNIX has served
38 be taken into account in a new virtual memory design.
40 Implementation of 4.3BSD virtual memory
43 have used the same virtual memory design.
53 Thus, the limit to available virtual memory is established by the
56 Memory pages are used in a sort of shell game to contain the
68 Design assumptions for 4.3BSD virtual memory
70 The design criteria for the current virtual memory implementation
72 At that time the cost of memory was about a thousand times greater per
75 These machines had far more disk storage than they had memory
76 and given the cost tradeoff between memory and disk storage,
77 wanted to make maximal use of the memory even at the cost of
80 The primary motivation for virtual memory was to allow the
82 the memory capacity of the machine.
83 Thus the virtual memory capability allowed programs to be run that
86 was the ability to allow the sum of the memory requirements of
87 all active processes to exceed the amount of physical memory on
90 was to have the sum of active virtual memory be one and a half
91 to two times the physical memory on the machine.
93 At the time that the virtual memory system was designed,
102 Given the high cost of memory there was little incentive to have
109 In the ten years since the current virtual memory system was designed,
119 The workstations tend to have a large quantity of memory,
130 In this same period of time the cost per byte of memory has dropped
132 Thus the cost per byte of memory compared to the cost per byte of disk is
136 As the amount of physical memory on machines increases and the number of
139 memory than physical memory to that of having a surplus of memory that can
142 Because many machines will have more physical memory than they do swap
144 it is no longer reasonable to limit the maximum virtual memory
146 Consequently, the new design will allow the maximum virtual memory
147 to be the sum of physical memory plus swap space.
148 For machines with no swap space, the maximum virtual memory will
149 be governed by the amount of physical memory.
155 One use of the surplus memory would be to
160 while the free memory is maintained in a separate pool.
161 The new design should have only a single memory pool so that any
162 free memory can be used to cache recently accessed files.
164 Another portion of the memory will be used to keep track of the contents
166 to the way that memory pages are handled.
183 This section outlines our new virtual memory interface as it is
189 The virtual memory interface is designed to support both large,
192 size of the physical memory on the machine,
214 It may map some memory hardware on the machine such as a frame buffer.
228 The final type of region is ``anonymous memory''.
234 written to a disk unless memory is short and part of the region
240 is much higher than simply zeroing memory.
248 For anonymous memory they must use some other rendezvous point.
256 Shared memory as high speed interprocess communication
258 The primary use envisioned for shared memory is to
266 to avoid a memory to memory copy, the overhead of doing the system
268 Shared memory, by contrast, allows processes to share data at any
280 The net effect is that the shared memory model provides little if
345 on the physical byte of memory that is being used for the semaphore.
362 ``Data Structures Added in the Berkeley Virtual Memory Extensions