Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
6answers
6k views

Binary search in a sorted (memory-mapped ?) file in Java

I am struggling to port a Perl program to Java, and learning Java as I go. A central component of the original program is a Perl module that does string prefix lookups in a +500 GB sorted text file ...
11
votes
1answer
120 views

Why data and stack segments are executable?

I have just noticed that my simple program has its data and stack segments executable. I saw it in /proc/[pid]/maps, and simple code confirmed it. For example: ; prog.asm section .data code: ...
10
votes
5answers
284 views

“live C++ objects that live in memory mapped files”?

So I read this interview with John Carmack in Gamasutra, in which he talks about what he calls "live C++ objects that live in memory mapped files". Here are some quotes: JC: Yeah. And I actually ...
6
votes
5answers
298 views

Controlling read and write access width to memory mapped registers in C

I'm using and x86 based core to manipulate a 32-bit memory mapped register. My hardware behaves correctly only if the CPU generates 32-bit wide reads and writes to this register. The register is ...
6
votes
1answer
167 views

Why is memory area $1020 unwriteable on M68HC12 with staa?

I have the following asm code: org $1000 ;Table Origin is at $1000 fcb $02,$04,$06,$08 ; values of table from $1001 - $1004 fcb $0a,$0c,$0e,$10 ; values of table from $1005 - ...
5
votes
3answers
70 views

What is serial copy? And why it is implemented like this?

What is serial copy? Is it different from deep-copy and shallow-copy? According to the wiki entry under Duff's device, it is traditionally implemented as: do { //count > 0 assumed ...
5
votes
2answers
355 views

Why 16-bit address with 12-bit offset results in 4KB page size?

I'm reading the "Modern Operating System" book. And I'm confused about the "Page Size". In the book, the author says, The incoming 16-bit virtual address is split into a 4-bit page number and ...
4
votes
1answer
58 views

Mapped memory and SSE

I found this paragraph in the Intel developer manual: From the chaper "PROGRAMMING WITH SSE3, SSSE3, SSE4 AND AESNI" Streaming loads must not be used to reference memory addresses that are ...
4
votes
1answer
588 views

Mapping files bigger than 2GB with Java

It could be generally stated: how do you implement a method byte[] get(offset, length) for a memory-mapped file that is bigger than 2GB in Java. With context: I'm trying to read efficiently files ...
4
votes
1answer
587 views

Open Source memory mapped hash table utilities for Java

Are there any open source implementations of the following: given a set of keys and values, and a hash function, build up a hash table in a file image, such that it can then be mapped with a java.nio ...
4
votes
4answers
6k views

Memory-mapped files in Java

I've been trying to write some very fast Java code that has to do a lot of I/O. I'm using a memory mapped file that returns a ByteBuffer: public static ByteBuffer byteBufferForFile(String fname){ ...
3
votes
3answers
113 views

memory mapped using linker

How can I force the linker to put some of my variables to specific place in memory. For example I want to allocate integer name in 0x8100000. If I didn't miss understand I can use: int name ...
3
votes
3answers
148 views

Internal Working of Copy_from_user

Can anybody explain me how exactly the copy_from_user function works internal?Does it use any buffers or is there any memory mapping done considering the fact that kernel does have the privilege to ...
3
votes
3answers
147 views

ELF64/x86_64 and start address of the memory mapping segment (for shared objects)

I have written several program and found out that when compiled in 64bit, the memory mapping segment (where for example shared objects and shared memory are kept) is always located somewhere around ...
3
votes
3answers
1k views

Retrieving the memory map of its own process in OS X 10.5/10.6

In Linux, the easiest way to look at a process' memory map is looking at /proc/PID/maps, giving something like this: 08048000-08056000 r-xp 00000000 03:0c 64593 /usr/sbin/gpm 08056000-08058000 ...
2
votes
2answers
180 views

How to export a struct to a file, and then memory map the file?

I have a struct that I'd like to export to a file, and then mmap() that file. One issue is that the struct has a member variable that is a string, and I'm not sure how mmap would handle that. In this ...
2
votes
8answers
195 views

What real platforms map hardware ports to memory addresses?

I sometimes see statements that on some platforms the following C or C++ code: int* ptr; *ptr = 0; can result in writing to a hardware input-output port if ptr happens to store the address to which ...
2
votes
4answers
323 views

Reading integers from a memory mapped formatted file

I have memory mapped a large formatted (text) file containing one integer per line like so: 123 345 34324 3232 ... So, I have a pointer to the memory at the first byte and also a pointer to the ...
2
votes
1answer
373 views

how to get the memory mapping for a core on Linux/HPUX (pmap)

On solaris i can run the pmap command on a core file to get the memory map of a crashed process. Unfortunately the pmap command available on HPUX and Linux doesn't provide this option. Any pointers ...
1
vote
1answer
70 views

Concerns using Shared Memory with CreateFileMapping and MapViewofFile

I have 2 questions concerns about using shared memory. I'm using CreateFileMapping to create a shared memory area between two processes. 1) I understand that I need to call CloseHandle on every ...
1
vote
3answers
125 views

How to emulate memory-mapped I/O

I have some hardware that i want to emulate; i wonder if i can do it at a low level like this. The hardware has many registers, which i arrange in a struct: #include <stdint.h> struct ...
1
vote
1answer
73 views

Memory page write detection on Windows & Linux

I'm currently working on a generational garbage collector. This means that only the most recent objects get traversed, surviving objects (= reachable from known roots) being promoted to the older ...
1
vote
1answer
56 views

mmapping in Python C modules - any pitfalls to be aware of?

I'm writing a Python module in C and I intend to mmap largeish blocks of memory (perhaps 500 MB). Is there anything about working in the same process space as the Python interpreter that I should be ...
1
vote
2answers
92 views

Further question with memory mapped interface

I still have some issues with my c code that deals with an memory mapped device. At the moment I declare the address space for the registers I write as volatile pointer and I write data to them as ...
1
vote
3answers
343 views

Why does MapViewOfFile return an unusable pointer for rapidxml?

As suggested: I have a file which is larger than 2 giga. I am mapping to memory using the following function: char* ptr = (char*) MapViewOfFile( map_handle, FILE_MAP_WRITE | FILE_MAP_READ, 0, ...
1
vote
3answers
672 views

Memory mapped files causes low physical memory

I have a 2GB RAM and running a memory intensive application and going to low available physical memory state and system is not responding to user actions, like opening any application or menu ...
1
vote
6answers
4k views

Convert a pointer to an array in C++

The CreateFileMapping function returns a pointer to a memory mapped file, and I want to treat that memory mapping as an array. Here's what I basically want to do: char Array[] = (char*) ...
0
votes
1answer
144 views

How to repeat call to MapViewOfFile with a different range on a file, to write bigger buffer.?

I am using shared memory functions, to write data into file. Problem: When I want to write the buffer 10MB, to file using below function, i am able to write only in first iteration, second iteration i ...
0
votes
3answers
127 views

Is there any limitation for using MapViewOfFile?

I am trying to use memory-mapped files as: hFile = ::CreateFile(State.Path, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, 0, ...
0
votes
1answer
74 views

When the processor accesses a memory mapped register, is it actually accessing the device

Suppose a device has one register, and the CPU has a x86-like architecture. This register is memory mapped at physical address 0x50000. The processor writes 0X00ABCDEF to 0x50000 (phys.). If I were ...
0
votes
0answers
57 views

How does device ROM get mapped into computer memory space?

I know how MMIO programming works, but I do not understand how do ROM and registers of particular device get mapped into memory-space? Are the addresses necessarily fixed or can they be dynamically ...
0
votes
1answer
85 views

Identifying memory-mapped files

I'm identifying parts of process's virtual memory using VirtualQuery. I identify regions taken by mapped files (MEM_MAPPED), but how to determine actual files (filenames) of files allocated there? I ...
0
votes
1answer
156 views

Looking for an explanation of kernel driver I/O interface capability

I am looking at ways of interfacing to specific hardware I/O addresses from various Windows versions from 32-bit XP up 64-bit Win7 and beyond. There seem to be various solutions published with varying ...
0
votes
1answer
85 views

Why does MAP_GROWSDOWN cause SIGBUS errors after upgrading to Centos 5.5?

I was upgrading the OS on one of our build from Centos 5.3 32bit to Centos 5.5 32bit. After doing the package update I rebooted, checked out a clean copy of the source, built and ran the unit tests. ...
0
votes
2answers
115 views

Possible to convert an address assignment to function argument via C macro?

I am working on embedded code and attempting to convert a lot of memory-mapped register assignments to get()/set() function calls. I was wondering if it would be possible to maintain the address ...
0
votes
2answers
319 views

Java GZip an object and serialize it using MappedByteBuffer

I'm serializing a large 3d array to disk.The original data is around 50MB and GZiped output is in Kb's size.But the operation takes around 5 sec's.I would like to optimize it for time.I was thinking ...
0
votes
1answer
73 views

Looking for more details about memory map in MongoDB

Hi I am looking for more details/docs or anything else about 'memory map mechanism' in MongoDB, and wondering how they use this to achieve high performance. Anyone could help? Thanks in advance~
0
votes
1answer
660 views

How comes .array() doesn't work on ByteBuffers returned from map'ed FileChannels?

I'm doing memory-mapped IO in Java. The FileChannel class allows you to map a ByteBuffer to a particular part of a file. I'm doing that with a file opened read only. The problem I am having is that ...
0
votes
2answers
264 views

How to transfer sensitive data between processes in Windows?

I would like to transfer user name and password information from one process to another process running on the same server in Windows. What is the best approach to achieve this transfer in a secure ...