Virtual memory is a memory management technique developed for multitasking kernels.

learn more… | top users | synonyms

0
votes
0answers
7 views

Instruction Address Inside The EIP Register

Can any one let me know if the instruction address inside the eip register is the physical address of that instruction? or it is just the virtual address? Thanks in advance
0
votes
1answer
24 views

iOS: Instruments, allocations peaking to a flat line

I'm trying to learn how to use instruments. I wonder is I can get some opinions or insight at to what is going on here. Firstly, shortly after 02:00 my app crashes due to creating many high ...
0
votes
0answers
7 views

What is different between “pager” and “Lazy swapper”?

I'm reading a book, operating system concepts (written by abraham silberschatz), in chapter 9 virtual memory, there are terms Lazy swapper and pager. I can figure out what is different between Lazy ...
-1
votes
0answers
17 views

is buddy allocation and slab allocation used with virtual memory

I have learned some simple memory allocation methods such as fixed equal size partitioning, fixed variable size partitioning, dynamic partitioning, all which used without virtual memory. There are ...
0
votes
1answer
22 views

TLB translation vs cache

I am having a doubt regarding memory management in operating systems.I know that cache is a temporary storage location used to speed up memory accesses whereas TLB is used to speed up translation from ...
0
votes
0answers
16 views

obtaining pages created by copy-on-write which were originally mapped to our device

For a number of reasons we have the following problem. The development kernel is 3.5 The program MyProgram has mmapped the set of N pages P from device /dev/MyDevice as private and copy on write. ...
0
votes
0answers
9 views

How do I convert a virtual address to a physical address

I have a two level page table with the following configuration ... 10-10-12 . I have been given the virtual address 0 X 12345678 to convert into a physical address.I am not sure how to solve it.I ...
3
votes
2answers
26 views

How does kernel know, which pages in the virtual address space correspond to a swapped out physical page frame?

Consider the following situation: the kernel has exhausted the physical RAM and needs to swap out a page. It picks least recently used page frame and wants to swap its contents out to the disk and ...
3
votes
6answers
102 views

How to overcome OutOfMemoryError when VM is full in android application?

Check this MOCKUP of my application : PROBLEM : If I click on SECOND PAGE button from FIRST PAGE, it open new intent of SECOND PAGE Then I click on THIRD PAGE button from SECOND PAGE, then it ...
-1
votes
0answers
7 views

Use bit and dirty bit in virtual memory management

what are this dirty bit and use bit means? How is this used to replace page in virtual memory mangement?
-9
votes
0answers
48 views

Memory management algorithm to be implemented on android using eclipse [closed]

Are there any algorithms that we can implement on an android gadget using java coded on eclipse juno. We need an algorithm for memory management and virtual memory for operating system for our ...
0
votes
1answer
35 views

Mapping of ZONE_HIGHMEM in kernel address space in 32bit x86

In a system with 3:1 split, the ZONE_NORMAL with a size of 896MB is permanently mapped to the kernel address space.This leaves a 128MB free space in the Kernel address space and according to my ...
0
votes
1answer
12 views

Virtual vs Physical Address

I am a little unsure about the physical and virtual address concepts. Here is what I have understood: The virtual address of the instructions in an already compiled (exe) application file are fixed ...
0
votes
2answers
52 views

Inability of Linux Kernel to support 1GB physical memory and the HIGHMEM solution

I have been reading [1] to have an idea about the HIGHMEM. The article says that "If the kernel wishes to be able to access the system's physical memory directly, however, it must set up page tables ...
1
vote
1answer
19 views

Page Fault Exception Handlers and Updating Page Tables

In reading about how page faults and page hits are handled by the page fault exception handler, one thing wasn't clear to me. If a process is using a shared page and a page fault happens, when the ...
0
votes
1answer
35 views

How do I get the information shown in vmmap programatically?

As anyone who has watched the Mark Russovich talk "Mysteries of Memory Management Revealed" knows, the vmmap tool can show you things that count against your process limit (2GB on vanilla 32 bit ...
0
votes
2answers
64 views

mmap(), where does the memory reside in virtual space?

I'm a bit confused about the mmap() system call. I realize that it maps memory, what I don't understand is how calling the mmap() call from the application interferes (or not) with the already running ...
0
votes
1answer
53 views

How to understand virtual memory?

How to understand the sentence we can generalize and allow each data object to have multiple independent addresses, each chosen from a different address sapce. This is the basic idea of virtual ...
5
votes
2answers
144 views

Where are multiple stacks and heaps put in virtual memory?

I'm writing a kernel and need (and want) to put multiple stacks and heaps into virtual memory, but I can't figure out how to place them efficiently. How do normal programs do it? How (or where) are ...
1
vote
0answers
61 views

how can I jump to the higher half kernel

I am currently building a higher half kernel, my bootloader loads the kernel at physical address 0x100000(1M) and identity mapping has been set for 0-4MB. Here is the question: how can I jump to the ...
0
votes
0answers
57 views

How many bits should be allocated for the top level page table field [closed]

I am studying for my exam on Operating Systems and we were given a bunch of questions to practice for the exam. Unfortunately, I don't know how to answer this question: Suppose that a machine has a ...
1
vote
0answers
102 views

ARM Linux Page Table Entry format — unused bits?

I need to use two bits of the PTE to store a custom "state" value that my kernel module will use when intercepting page protection faults. I am developing on a Galaxy Nexus which has an ARM Cortex ...
0
votes
1answer
31 views

Page Table Management

I understood the concept of paging in OS , just wanted to know where the page table is present. Is it present on the Main -Memory or in secondary memory .Expecting a reply on the same . Thanks,
1
vote
1answer
18 views

Running multiple executables linked to 0x400000

I'm interested in operating systems topic and I have a dummy question. Standard PE executable files are linked to 0x400000. My question is how can operating system load multiply executables with same ...
3
votes
2answers
57 views

Can other processes run during memory paging?

First off, take a single processor system with multiple processes running in pseudo-parallel. When a process triggers a page fault, will this force the CPU to stop executing all programs until the ...
0
votes
0answers
9 views

Using ADO.net cause huge usage of virtual memory in process

I write a test project to measure ADO.net performance. I launched the app, and attached perfmon, i find this application's virtual bytes was already over 500MB, but this application was waiting user ...
1
vote
3answers
297 views

Difference between physical/logical/virtual memory address

I am a little confused about the terms physical/logical/virtual addresses in an Operating System(I use Linux- open SUSE) Here is what I understand: Physical Address- When the processor is in system ...
0
votes
0answers
23 views

What is memory masking, or physical memory masking

I want to know exactly what is memory masking or what or where it is being used with virtual or physical memory as I am tracing a kernel code "mapping and TLB flushing part" and I see word of masking ...
0
votes
0answers
42 views

difference between pagedpoolsize and total paging file size

Total Paging Size is set in Virtual memory Section in Advanced Settings. PagedPoolSize is a registry setting. What is the difference between the two? How do I change these values in order to increase ...
0
votes
0answers
40 views

saving up a new process information into TLB, during a context switch

I am implementing the virtual memory for this assignment http://www.eecg.toronto.edu/~yuan/teaching/ece344/asst3.html And i was just wondering, it says make sure that "TLB state is initialized ...
0
votes
2answers
60 views

What Virtual TLB?

Does anybody knows what does it mean by Virtual TLB, and what is the difference between this VTLB and the normal TLB .. I can't find a clear answer on Google?
5
votes
2answers
118 views

If you fork() and the forked (child) process exits are all the VM pages still marked COW in the parent?

On Linux, if you fork() and the forked (child) process exits are all the virtual memory pages still marked as copy-on-write in the parent? I think the pages will stay marked as COW as anything else ...
0
votes
0answers
64 views

How can I fill up the windows page file before physical memory?

There is a utility consume.exe that comes with Windows Server 2003 Resource Toolkit that can be used to max out CPU utilization, or fill up physical memory or disk-space, or even fill up the ...
0
votes
1answer
49 views

UIImage representations in virtual memory

I have a number of calls to [UIImage imageNamed:] and I know the caching keeps the bitmaps allocated in virtual memory. However I have a number of small images such as buttons and icons and the total ...
5
votes
2answers
554 views

virtual memory exhausted: Cannot allocate memory

My compilation fails on ubuntu 12.10 with 300mb memory available (750mb total, 350mb to MySQL), 1.5ghz, I am trying to rework wt's basic hello world file into a simple ajax page. I'm pretty sure it's ...
0
votes
5answers
800 views

Increasing Java heap size in Eclipse - using virtual memory

I am running a program in Eclipse(Windows) and need a relatively huge size of memory. Passing the -Xmx1500m to the program seems not sufficient, while Eclipse does not permit me to assign a greater ...
2
votes
1answer
2k views

'Could not reserve enough space for object heap' when running java -version

I know this is a common question/problem. I'm wondering where to get started with it. Running java on windows server 2008, we have 65GB memory, and it shows 25GB free. (Currently a couple of guys ...
0
votes
0answers
37 views

Determine largest CreateFileMapping using large pages that will succeed

I want to allocate up to 96gb of large pages for our server applications to share. I am using CreateFileMappingNuma to request 96/maxnumanodes on each numa node. What is the standard way, if any, to ...
4
votes
1answer
270 views

Difference between virtual memory consumption and real memory with Memory Monitor on iOS

I am stuck with an issue in my app. I have been testing up until now mostly on my iPad 3 with occasional checks on my iPad 1 to make sure all is well. I am playing a UIImageView animation in my app ...
1
vote
3answers
137 views

What's the actual page size for a 32-bit process running on WOW64?

I know the default page size of a 32-bit process running on 32-bit Windows is 4K, whereas that of a 64-bit process running on 64-bit Windows is 8K. However, what is the actual page size of a 32-bit ...
2
votes
2answers
164 views

Why do Linux program .text sections start at 0x0804800 and stack tops start at 0xbffffff?

According to Assembly Primer For Hackers (Part 2) Virtual Memory Organization, Linux program .text sections start at 0x0804800 and stack tops start at 0xbffffff. What is the significance of these ...
1
vote
2answers
38 views

Requesting memory more than available

Suppose there is 50 MB to allocate and there is this for loop which allocates memory in each iteration. What happens when the following for loop runs. for(int i=0; i < 20; i++) { int *p = ...
0
votes
0answers
42 views

Do VMMs use Virtual Memory on the hosts?

I am trying to understand how virtualization was performed in the past using shadow page tables. The articles I've read all talk about about the translation from Guest Virtual Memory to Host Physical ...
4
votes
0answers
127 views

kernel module, while being called from one process, writes to a page from another process

I am writing a kernel module that is to be called by process p1 to overwrite a data page that belongs to a target process p2. First, inside the kernel module and while responding to a write event to ...
0
votes
1answer
104 views

access data segment from kernel space

I would like to be able to tell which pages in the page table belonging to a process are used as data segment. I am using Linux kernel v 3.2 for amd64 here is what I did before and did not work: ...
0
votes
1answer
213 views

get virtual memory size of process in AIX in program

I write app on AIX 5.3 using C++. I want to get current size of process virtual memory. I use getprocs64 function, but with this data I can't get result as svmon shows. Please help me. Thanks.
0
votes
1answer
60 views

Referenced and Modified bit in TLB and PTE

You might know these as Accessed and Dirty bits. Now x86 PTE contains these bits. Lets say the TLB also contains these bits. In case of a TLB hit, these bits will be set by the hardware if the page ...
1
vote
1answer
62 views

Virtual memory - Page on RAM and in hard drive at the same time?

Can a page be, at the same time, in physical memory and in virtual memory? If I ask for an address that's on virtual memory, will it always trigger a page fault? If the first question is true, then ...
0
votes
1answer
1k views

virtual memory vs physical memory

I am often confused with the concept of Virtualization in operating systems.Considering RAM as the physical memory,why do we need the virtual memory for executing a process? Where doe this virtual ...
1
vote
1answer
176 views

memory address translation in hypervisor guest os

Assume there is a code like this. MOV [0x1234], EAX (intel assembly) let's say that CPU wants to process this instruction. and let's assume there is no hypervisor. we are just using normal x86 ...

1 2 3 4 5 6