SlideShare a Scribd company logo
Lecture20-21-22.ppt
 The main purpose of a computer system is to execute programs.
These programs, together with the data they access, must be in
main memory (at least partially) during execution.
 Main memory and the registers built into the processor itself are
the only storage that the CPU can access directly.
 Registers are generally accessible within one cycle of the CPU
clock. The same cannot be said of main memory, which is
accessed via a transaction on the memory bus.
 Memory access may take many clock cycles to complete, in
which case the processor normally needs to stall, since it does
not have the data required to complete the instruction that it is
executing.
 Usually, a program resides on a disk as a binary executable file.
To be executed, the program must be brought into memory.
 The process of associating program instructions and data
to physical memory addresses is called address binding,
or relocation.
 Addresses in the source program are generally relocatable
addresses generated by the compiler.
 Loader will in turn bind the relocatable addresses to absolute
addresses.
 Each binding is a mapping from one address space to another.
Lecture20-21-22.ppt
 User processes must be
restricted so that they only
access memory locations that
"belong" to that particular
process.
 This is usually implemented
using a base register and a
limit register for each process.
 Every memory access made by
a user process is checked
against these two registers, and
if a memory access is
attempted outside the valid
range, then a fatal error is
generated.
Changing the contents of the base and limit registers is a privileged
activity, allowed only to the OS kernel.
 Classically, the binding of program addresses can be done at any
step along the way:
 Compile time: The compiler translates symbolic addresses to
absolute addresses. If you know at compile time where the
process will reside in memory, then absolute addresses can be
generated (Static).
 For example, if we know that a user process will reside starting
at location R, then the generated compiler code will start at that
location and extend up from there. If, at some later time, the
starting location changes, then it will be necessary to recompile
this code.
Lecture20-21-22.ppt
Lecture20-21-22.ppt
 Load time: If it is not known at compile time where the process
will reside in memory, then the compiler must generate
relocatable code. In this case, final binding is delayed until
load time.
 It references addresses relative to the start of the program.
 If the starting address changes in RAM, then the program must
be reloaded but not recompiled.
Relative (Relocatable)
Addresses
0
JUMP 400
LOAD 1200
400
1200
Relative Load Module
Symbolic
Addresses
PROGRAM
JUMP i
LOAD j
DATA
i
j
Source Code
Compile Link
Lecture20-21-22.ppt
 Execution time: If the process can be moved during its
execution from one memory segment to another, then binding
must be delayed until run time.
 Special hardware must be available for this scheme to work.
Most general-purpose operating systems use this method.
Lecture20-21-22.ppt
◦ Logical address – generated by the CPU; also referred to as
virtual address
◦ Physical address – address seen by the memory unit.
Actual addresses of RAM
 Logical and physical addresses are the same in compile-time
and load-time address-binding schemes; logical (virtual) and
physical addresses differ in execution-time address-binding
scheme
 Hardware device that maps virtual to physical address
 In MMU scheme, the value in the relocation register is added
to every address generated by a user process at the time it is
sent to memory
 The user program deals with logical addresses; it never sees
the real physical addresses
Lecture20-21-22.ppt
 A process can be swapped temporarily out of memory to a
backing store, and then brought back into memory for
continued execution.
 Backing store – fast disk large enough to accommodate
copies of all memory images for all users; must provide direct
access to these memory images
 Roll out, roll in –
swapping variant used
for priority-based schedu
ling algorithms; lower-pri
ority process is swapped
out so higher-priority
process can be loaded
and executed
Major part of swap time is transfer time; total transfer time is
directly proportional to the amount of memory swapped.
 A modification of swapping is used in many versions of UNIX.
Swapping is normally disabled but will start if many processes
are running and are using a threshold amount of memory.
 Swapping is again halted when the load on the system is
reduced.
 External Fragmentation – total memory space exists to
satisfy a request, but it is not contiguous
 Internal Fragmentation – allocated memory may be slightly
larger than requested memory; this size difference is memory
internal to a partition, but not being used
 Reduce external fragmentation by compaction
◦ Shuffle memory contents to place all free memory together in
one large block
◦ Compaction is possible only if relocation is dynamic, and is
done at execution time
OS
P1
P2
P3
OS
P1
P3
OS
P1
P3
P4
OS
P3
P4
OS
P3
P4
P5
OS
P1
OS
P1
P2
OS OS
P3
P4
P5
P6
compaction
 Divide physical memory into fixed-
sized blocks called frames (size is
power of 2, between 512 bytes and
8192 bytes)
 Divide logical memory into blocks of
same size called pages.
 Any virtual page can be located at any
physical page
 Translation box converts from virtual
pages to physical pages
0
1
2
3
4
5
0
1
2
3
0
1
2
3
4
5
6
7
8
9
10
11
12
13
Translation
Virtual
Page #
Physical
Page #
0x0000
0x6000
0x0000
0x4000
0x0000
0xE000
 Address generated by CPU is divided into:
◦ Page number (p) – used as an index into a page table
which contains base address of each page in physical
memory
◦ Page offset (d) – combined with base address to define the
physical memory address that is sent to the memory unit
Lecture20-21-22.ppt
Page Size=
4bytes
Physical
Memory=
32bytes
 In paging we have no external fragmentation. Any free frame
can be allocated to a process that needs it. However, we may
have some internal fragmentation?
 Today, pages typically are between 4 KB and 8 KB in size, and some
systems support even larger page sizes.
 Important aspect of paging is the clear separation between the
user’s view of memory and the actual physical memory.
 The user program views memory as one single space, containing
only this one program. In fact, the user program is scattered
throughout physical memory, which also holds other programs.

More Related Content

Similar to Lecture20-21-22.ppt (20)

PDF
CH08.pdf
ImranKhan880955
 
PPTX
Memory Managment(OS).pptx
RohitPaul71
 
PPTX
Memory Management techniques -ch8_1.pptx
KongaMadhukar
 
PPT
main memory
Mavoori Soshmitha
 
PDF
CS6401 OPERATING SYSTEMS Unit 3
Kathirvel Ayyaswamy
 
PPT
Main memory os - prashant odhavani- 160920107003
Prashant odhavani
 
PPT
Memory management principles in operating systems
nazimsattar
 
PDF
Cs8493 unit 3
Kathirvel Ayyaswamy
 
PPTX
Lecture-7 Main Memroy.pptx
Amanuelmergia
 
PDF
Cs8493 unit 3
Kathirvel Ayyaswamy
 
PDF
Memory Management.pdf
SujanTimalsina5
 
PPTX
ch8 Memory Management OS.pptx
Indhu Periys
 
PDF
lecture 8 b main memory
ITNet
 
DOCX
Mainmemoryfinalprefinal 160927115742
marangburu42
 
PPTX
Operating Systems Module 4_Memory Management.pptx
AmbikaVenkatesh4
 
PPTX
operating system deadlock management with example
salihan090918
 
PPTX
Lecture 5 memory management in operating systems.pptx
HarrisChikunya
 
PPT
Operating system ch#7
Noor Noon
 
PPT
Operating systems- Main Memory Management
Dr. Chandrakant Divate
 
CH08.pdf
ImranKhan880955
 
Memory Managment(OS).pptx
RohitPaul71
 
Memory Management techniques -ch8_1.pptx
KongaMadhukar
 
main memory
Mavoori Soshmitha
 
CS6401 OPERATING SYSTEMS Unit 3
Kathirvel Ayyaswamy
 
Main memory os - prashant odhavani- 160920107003
Prashant odhavani
 
Memory management principles in operating systems
nazimsattar
 
Cs8493 unit 3
Kathirvel Ayyaswamy
 
Lecture-7 Main Memroy.pptx
Amanuelmergia
 
Cs8493 unit 3
Kathirvel Ayyaswamy
 
Memory Management.pdf
SujanTimalsina5
 
ch8 Memory Management OS.pptx
Indhu Periys
 
lecture 8 b main memory
ITNet
 
Mainmemoryfinalprefinal 160927115742
marangburu42
 
Operating Systems Module 4_Memory Management.pptx
AmbikaVenkatesh4
 
operating system deadlock management with example
salihan090918
 
Lecture 5 memory management in operating systems.pptx
HarrisChikunya
 
Operating system ch#7
Noor Noon
 
Operating systems- Main Memory Management
Dr. Chandrakant Divate
 

Recently uploaded (20)

PDF
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
PPTX
HEAD INJURY IN CHILDREN: NURSING MANAGEMENGT.pptx
PRADEEP ABOTHU
 
PPTX
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PDF
The-Beginnings-of-Indian-Civilisation.pdf/6th class new ncert social/by k san...
Sandeep Swamy
 
PPTX
ROLE OF ANTIOXIDANT IN EYE HEALTH MANAGEMENT.pptx
Subham Panja
 
PDF
CEREBRAL PALSY: NURSING MANAGEMENT .pdf
PRADEEP ABOTHU
 
PPTX
How to Configure Storno Accounting in Odoo 18 Accounting
Celine George
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
PPTX
Nutri-QUIZ-Bee-Elementary.pptx...................
ferdinandsanbuenaven
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PDF
Federal dollars withheld by district, charter, grant recipient
Mebane Rash
 
PPTX
How to Manage Access Rights & User Types in Odoo 18
Celine George
 
PDF
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
PDF
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
PPTX
How to Configure Access Rights of Manufacturing Orders in Odoo 18 Manufacturing
Celine George
 
PPSX
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
PPT
digestive system for Pharm d I year HAP
rekhapositivity
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PPSX
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
PPTX
Views on Education of Indian Thinkers J.Krishnamurthy..pptx
ShrutiMahanta1
 
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
HEAD INJURY IN CHILDREN: NURSING MANAGEMENGT.pptx
PRADEEP ABOTHU
 
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
The-Beginnings-of-Indian-Civilisation.pdf/6th class new ncert social/by k san...
Sandeep Swamy
 
ROLE OF ANTIOXIDANT IN EYE HEALTH MANAGEMENT.pptx
Subham Panja
 
CEREBRAL PALSY: NURSING MANAGEMENT .pdf
PRADEEP ABOTHU
 
How to Configure Storno Accounting in Odoo 18 Accounting
Celine George
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
Nutri-QUIZ-Bee-Elementary.pptx...................
ferdinandsanbuenaven
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
Federal dollars withheld by district, charter, grant recipient
Mebane Rash
 
How to Manage Access Rights & User Types in Odoo 18
Celine George
 
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
How to Configure Access Rights of Manufacturing Orders in Odoo 18 Manufacturing
Celine George
 
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
digestive system for Pharm d I year HAP
rekhapositivity
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
Views on Education of Indian Thinkers J.Krishnamurthy..pptx
ShrutiMahanta1
 
Ad

Lecture20-21-22.ppt

  • 2.  The main purpose of a computer system is to execute programs. These programs, together with the data they access, must be in main memory (at least partially) during execution.  Main memory and the registers built into the processor itself are the only storage that the CPU can access directly.  Registers are generally accessible within one cycle of the CPU clock. The same cannot be said of main memory, which is accessed via a transaction on the memory bus.  Memory access may take many clock cycles to complete, in which case the processor normally needs to stall, since it does not have the data required to complete the instruction that it is executing.
  • 3.  Usually, a program resides on a disk as a binary executable file. To be executed, the program must be brought into memory.  The process of associating program instructions and data to physical memory addresses is called address binding, or relocation.  Addresses in the source program are generally relocatable addresses generated by the compiler.  Loader will in turn bind the relocatable addresses to absolute addresses.  Each binding is a mapping from one address space to another.
  • 5.  User processes must be restricted so that they only access memory locations that "belong" to that particular process.  This is usually implemented using a base register and a limit register for each process.  Every memory access made by a user process is checked against these two registers, and if a memory access is attempted outside the valid range, then a fatal error is generated.
  • 6. Changing the contents of the base and limit registers is a privileged activity, allowed only to the OS kernel.
  • 7.  Classically, the binding of program addresses can be done at any step along the way:  Compile time: The compiler translates symbolic addresses to absolute addresses. If you know at compile time where the process will reside in memory, then absolute addresses can be generated (Static).  For example, if we know that a user process will reside starting at location R, then the generated compiler code will start at that location and extend up from there. If, at some later time, the starting location changes, then it will be necessary to recompile this code.
  • 10.  Load time: If it is not known at compile time where the process will reside in memory, then the compiler must generate relocatable code. In this case, final binding is delayed until load time.  It references addresses relative to the start of the program.  If the starting address changes in RAM, then the program must be reloaded but not recompiled.
  • 11. Relative (Relocatable) Addresses 0 JUMP 400 LOAD 1200 400 1200 Relative Load Module Symbolic Addresses PROGRAM JUMP i LOAD j DATA i j Source Code Compile Link
  • 13.  Execution time: If the process can be moved during its execution from one memory segment to another, then binding must be delayed until run time.  Special hardware must be available for this scheme to work. Most general-purpose operating systems use this method.
  • 15. ◦ Logical address – generated by the CPU; also referred to as virtual address ◦ Physical address – address seen by the memory unit. Actual addresses of RAM  Logical and physical addresses are the same in compile-time and load-time address-binding schemes; logical (virtual) and physical addresses differ in execution-time address-binding scheme
  • 16.  Hardware device that maps virtual to physical address  In MMU scheme, the value in the relocation register is added to every address generated by a user process at the time it is sent to memory  The user program deals with logical addresses; it never sees the real physical addresses
  • 18.  A process can be swapped temporarily out of memory to a backing store, and then brought back into memory for continued execution.  Backing store – fast disk large enough to accommodate copies of all memory images for all users; must provide direct access to these memory images  Roll out, roll in – swapping variant used for priority-based schedu ling algorithms; lower-pri ority process is swapped out so higher-priority process can be loaded and executed
  • 19. Major part of swap time is transfer time; total transfer time is directly proportional to the amount of memory swapped.  A modification of swapping is used in many versions of UNIX. Swapping is normally disabled but will start if many processes are running and are using a threshold amount of memory.  Swapping is again halted when the load on the system is reduced.
  • 20.  External Fragmentation – total memory space exists to satisfy a request, but it is not contiguous  Internal Fragmentation – allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used  Reduce external fragmentation by compaction ◦ Shuffle memory contents to place all free memory together in one large block ◦ Compaction is possible only if relocation is dynamic, and is done at execution time OS P1 P2 P3 OS P1 P3 OS P1 P3 P4 OS P3 P4 OS P3 P4 P5 OS P1 OS P1 P2 OS OS P3 P4 P5 P6 compaction
  • 21.  Divide physical memory into fixed- sized blocks called frames (size is power of 2, between 512 bytes and 8192 bytes)  Divide logical memory into blocks of same size called pages.  Any virtual page can be located at any physical page  Translation box converts from virtual pages to physical pages 0 1 2 3 4 5 0 1 2 3 0 1 2 3 4 5 6 7 8 9 10 11 12 13 Translation Virtual Page # Physical Page # 0x0000 0x6000 0x0000 0x4000 0x0000 0xE000
  • 22.  Address generated by CPU is divided into: ◦ Page number (p) – used as an index into a page table which contains base address of each page in physical memory ◦ Page offset (d) – combined with base address to define the physical memory address that is sent to the memory unit
  • 25.  In paging we have no external fragmentation. Any free frame can be allocated to a process that needs it. However, we may have some internal fragmentation?  Today, pages typically are between 4 KB and 8 KB in size, and some systems support even larger page sizes.  Important aspect of paging is the clear separation between the user’s view of memory and the actual physical memory.  The user program views memory as one single space, containing only this one program. In fact, the user program is scattered throughout physical memory, which also holds other programs.