Tagged Questions
The memory-access tag has no wiki summary.
21
votes
9answers
5k views
What is the Cost of an L1 Cache Miss?
Edit: For reference purposes (if anyone stumbles across this question), Igor Ostrovsky wrote a great post about cache misses. It discusses several different issues and shows example numbers. End ...
7
votes
10answers
3k views
Efficiency: arrays vs pointers
Memory access through pointers is said to be more efficient than memory access through an array. I am learning C and the above is stated in K&R. Specifically they say
Any operation that can ...
5
votes
5answers
357 views
SSE instructions: single memory access
Consider a single memory access (a single read or a single write, not read+write) SSE instruction on an x86 CPU. The instruction is accessing 16 bytes (128 bits) of memory and the accessed memory ...
4
votes
3answers
146 views
Can I read any readable valid memory location via a (unsigned) char* in C++?
My search foo seems lacking today.
I would like to know if it is legal according to std C++ to inspect "any" memory location via an (unsigned(?)) char*. By any location I mean any valid address of an ...
4
votes
2answers
422 views
ARM Cortex-A8: How many bytes are fetched in one memory read?
I'm trying to improve my image processing project running on an ARM cortex-a8 processor.
I was accessing 8-bit Grayscale Image data from memory. In my function, right now I'm accessing individual ...
4
votes
3answers
352 views
What happens if two threads read & write the same piece of memory
It's my understanding that if two threads are reading from the same piece of memory, and no thread is writing to that memory, then the operation is safe. However, I'm not sure what happens if one ...
3
votes
5answers
4k views
Shared memory access permissions on Windows
I've developed a windows application that uses shared memory---that is---memory mapped files for interprocess communication. I have a windows service that does some processing and periodically writes ...
2
votes
3answers
316 views
Accessing Memory of other applications C++
I am thinking about a problem I have been having for some time now.. I would like to write a C/C++ program (under windows first) that can access(read/change values) the memory(stack, heap, everything) ...
2
votes
3answers
267 views
How are variables on the stack accessed?
Suppose we have these local variables:
int a = 0;
int b = 1;
int c = 2;
int d = 3;
As far as I know, these will be allocated on the system stack, like this:
| |
| 3 | d
| 2 | c
| 1 | b
|_0_| a
...
1
vote
1answer
408 views
EXC_BAD_ACCESS (KERN_INVALID_ADDRESS) during execution of malloc()
I am compiling a C library in Mac OS X Snow Leopard with the folloing GCC:
Diderot:~ brandizzi$ gcc -v
Using built-in specs.
Target: i686-apple-darwin10
Configured with: ...
1
vote
3answers
156 views
OpenMP C parallelisation algorithm
in the book "Using OpenMP" is an example for bad memory access in C and I think this is the main problem in my attempt to parallelism the gaussian algorithm.
The example looks something like this:
...
1
vote
4answers
130 views
Using C, how can I access the same block of memory as another C program?
So, I'm on hour one of learning C. Maybe I'll jump over to C++ tonight.
I'd like to create two command line programs using C that can "talk" to each other. The first thought that came to mind is to ...
1
vote
1answer
111 views
Can a single core saturate a CPU's memory IO bandwidth?
Assuming an ideal situation: nothing is paged out, all code is really well written and fits in cache, the scheduler never interrupts you, etc.: can a single core in a multi-core CPU generate enough ...
1
vote
2answers
188 views
Is reading from remote networked memory mapped file or device block faster than reading from Local 7200rpm HDDs?
Or rather how does remote RAM compare against local Disk access?
If the answer is "it depends", what are the conditions?
Data access patterns, ratio of read-to-writes, distance etc.
Finally, what if ...
0
votes
1answer
34 views
Non-Constant Generator Single-Pass Initialization during Construction
Is there a way to construct a new std::vector with uninitialized (non-zero) values or even prettier through a generator (similar to std::generate_n()) constructor argument that produces the desired ...
0
votes
0answers
145 views
arm7tdmi-s, jtag and reading memory?
I'm trying to write a jtag driver for the lpc2148 which has an arm7tdmi-s core as part of a school project (I actually have "inherited" code which I am using).
I am trying to read memory and send it ...
0
votes
1answer
475 views
Memory (sbrk) 16-byte aligned shifting on pointer access
I wrote a reasonably basic memory allocator using sbrk. I ask for a chunk of memory, say 65k and carve it up as needed for variables requesting dynamic memory. I free the memory by adding it back to ...