A CPU-Cache is a special kind of cache, implemented on hardware, which is used by the CPU to reduce the time access to the main memory.

learn more… | top users | synonyms

0
votes
0answers
6 views

Qemu, update dirty data in physical memory when pmemsave?

I modified pmemsave to dump data in the physical memory when the machine is powered off. (with q command) However, I was wonder if data is updated with CPU cache flush before it is dumped? I cannot ...
1
vote
2answers
31 views

Does the distance between a program's stack and data segment have an effect on CPU caching?

I've read that on linux, program memory layout can be broadly visualized as follows (and I assume it's similar on most other operating systems): Now, I'm not sure if I remember correctly, but I ...
1
vote
1answer
29 views

Role of cache stride while flushing CPU cache

I understand that the stride value of a CPU cache can be equal to or greater than the cache line size, but I don't understand why a stride value is required? 1) When will a CPU cache have a stride ...
0
votes
1answer
45 views

Manually flushing a write-through cache

Does it make any sense in flushing the CPU cache manually, if it is implemented as a write-through cache?
12
votes
3answers
146 views

How would you generically detect cache line associativity from user mode code?

I'm putting together a small patch for the cachegrind/callgrind tool in valgrind which will auto-detect, using completely generic code, CPU instruction and cache configuration (right now only x86/x64 ...
3
votes
3answers
119 views

Will a modern processor (like the i7) follow pointers and prefetch their data while iterating over a list of them?

I want to learn how to write better code that takes advantage of the CPU's cache. Working with contiguous memory seems to be the ideal situation. That being said, I'm curious if there are similar ...
6
votes
2answers
129 views

When is a CPU cache line flushed to memory after a write?

I'm working in C# and want to avoid unsafe code if possible. If I have an object or array that is sized to fill a cache line and I want to write to every field of the object or index of the array, ...
2
votes
1answer
57 views

Handing out addresses in a custom memory allocator w.r.t. cache conflicts

I've spent my afternoon reading up on processor caches after reading about the effect power of twos can have on cache conflicts. Now I wish to apply this new knowledge to my memory allocator for ...
1
vote
1answer
59 views

Error in equation of performance prediction time

I have used this equation in order to obtain the execution time: Execution time = Cpu time + memory time then, Execution time = (#instructions * average instruction execution time) + ...
1
vote
0answers
89 views

How does cpu cache handle large memory objects?

Scenario: Cache (L1) size (CS): 32kB Line size (LS): 64B Associativity (A): 8 Set size (SS): 512B (A * LS) Sets (S): 64 (C / SS) Read/written object (O) has size greater than LS Assumptions ...
1
vote
1answer
68 views

Interconnect between per-core L2 and L3 in Core i7

The Intel core i7 has per-core L1 and L2 caches, and a large shared L3 cache. I need to know what kind of an interconnect connects the multiple L2s to the single L3. I am a student, and need to write ...
6
votes
2answers
309 views

CPU cache critical stride test giving unexpected results based on access type

Inspired by this recent question on SO and the answers given, which made me feel very ignorant, I decided I'd spend some time to learn more about CPU caching and wrote a small program to verify ...
0
votes
5answers
88 views

Determine Values AND/OR Address of Values in CPU Cache

Is there a way to determine exactly what values, memory addresses, and/or other information currently resides in the CPU cache (L1, L2, etc.) - for current or all processes? I've been doing quite a ...
2
votes
0answers
159 views

Cache Addressing: Length of Index, Block offset, Byte offset & Tag?

Let's say I know the following values: W = Word length (= 32 bits) S = Cache size in words B = Block size in words M = Main memory size in words How do I calculate how many bits are needed for: - ...
2
votes
1answer
96 views

cpuinfo to decide processor affinity

I've tried to decide processor affinity rule for my applications according to /proc/cpuinfo , My redhat Linux showes processor : 0 to 47 , means server has 48 processor unit physical id : ...
8
votes
1answer
210 views

Optimising Java objects for CPU cache line efficiency

I'm writing a library where: It will need to run on a wide range of different platforms / Java implementations (the common case is likely to be OpenJDK or Oracle Java on Intel 64 bit machines with ...
1
vote
2answers
96 views

Does a cache write take longer with more caches to invalidate?

can you please help me to find out if it takes longer for a cache write to finish when there are more cores/caches holding a copy of that line. I also want to measure/quantify how much longer it ...
1
vote
1answer
81 views

Storing values in separate CPU cache banks

As part of a class project I am looking at ways to improve the performance of a path finding algorithm in a CPU architecture. The algorithm is implemented in C++. The basic operation is to read x,y ...
0
votes
2answers
78 views

Why is volatile necessary in Java

In Java, all threads uses the same heap. If a thread is caching the operations to the heap, when exactly will it flush to heap? I have read so many posts but not able to find the answers. Thanks.
1
vote
1answer
163 views

is mov rax,0x12345678; jmp rax still kills branch prediction?

I'm having trouble finding information specific to the two cases described above, And though of hearing your expert opinion. The first thing is: I know indirect jmps hurts branch prediction, and that ...
0
votes
0answers
93 views

Cache-concious design of Master-Worker processes

I recently started working on a server application designed with the familiar Master-Worker pattern with threads, where one privileged thread manages several worker threads. I have now realized how ...
0
votes
2answers
123 views

Cache-per-core & Thread pooling

Given (particularly) the following scenario: One thread per core, Each core having its own distinct cache, Programs where cache hit/miss ratios are central to good performance (i.e. most today) ...
6
votes
1answer
108 views

Lock-free check for modification of a global shared state in C using Cache-Line alignment

Edit: ST does not allow to post more than two links for newbies. Sorry for the missing references. I'm trying to reduce locking overhead in a C application where detecting changes on a global state ...
4
votes
5answers
741 views

How to produce the cpu cache effect in C and java?

In Ulrich Drepper's paper What every programmer should know about memory, the 3rd part: CPU Caches, he shows a graph that shows the relationship between "working set" size and the cpu cycle consuming ...
2
votes
2answers
121 views

Does prefetching a write ever affect single core performance?

Some architectures have a "prefetch write" instruction to indicate to the CPU that you're going to be writing to a memory location before you actually do it. I understand that on a multicore machine ...
4
votes
3answers
338 views

Tools to analyse CPU cache performance for Java applications?

I've no preference as regards OS; any tool will be fine so long as it allows me to measure cache performance on Core 2 and i7 architectures.
1
vote
1answer
670 views

Sandy-Bridge CPU specification

I was able to put together bits here and there about the Sandy Bridge-E architecture but I am not totally sure about all the parameters e.g. the size of the L2 cache. Can anyone please confirm they ...
1
vote
1answer
176 views

Get different cache line size

buddies Now, I use Ubuntu 12.04 and intel i5 450 on my computer. I used two methods to get the cache line size of my level 1 instrction cache. But resulted in difference. firo@snow:~/ws$ getconf ...
0
votes
2answers
152 views

How to check if an object is in the CPU cache?

Is there a way in java to check if a specific object is in the CPU cache? Is there a way to test if reading/writing one of its fields will make a cache miss? I wrote java programs in the past, but ...
8
votes
3answers
598 views

How is x86 instruction cache synchronized?

I like examples, so I wrote a bit of self-modifying code in c... #include <stdint.h> #include <stdio.h> #include <sys/mman.h> // linux int main(void) { uint8_t *a = mmap(NULL, ...
3
votes
2answers
255 views

Is movndq works?

My task is to calculate RAM Read/Write speed. I using asm inserts to avoid compiler optimizations. To measure time I use TSC and CPU frequency. To move data I use asm instruction MOVNTDQ which ...
1
vote
0answers
451 views

disable caching via /proc/mtrr

When I'm issuing this command sudo sh -c "echo \"base=0x110000 size=0xa000 type=uncachable\" >| /proc/mtrr" /proc/mtrr is not changed, while I would expect it to add a new entry. It works with ...
-2
votes
1answer
88 views

Cache Memory Confusion

Can CPU Cache still be utilized for memory use by the programmer while it is operating in the UC mode? Or is this impossible because the programmer is unable to address Cache memory? I mistakenly ...
4
votes
1answer
159 views

Profiling CPU cache for C# .net code?

I have seen a couple of tools whereby you can profile the cache for C and C++, but the tool (Valgrind) was intended for Linux and they state on their website it is too much work to develop for ...
0
votes
2answers
163 views

How far should one trust hardware counter profiling using VsPerfCmd.exe?

As already pointed out in this other question I asked some time ago, I'm attempting to use VsPerfCmd.exe to profile branch misprediction and last level cache misses in an instrumented native ...
0
votes
1answer
671 views

Cache miss & Cache Hit

Given the following code : typedef int array[4][4]; void transpose2(array dst, array src) { int i, j; for ( i=0; i<4; i++) { for ( j=0; j<4; j++) { dst[i][j] = ...
34
votes
9answers
2k views

Which of these two for loops is more efficient in terms of time and cache performance

Which of the following samples of code is more efficient in terms of cache performance? Why? int a[100][100]; for(i=0; i<100; i++) { for(j=0; j<100; j++) { a[i][j] = 10; } ...
3
votes
2answers
541 views

Does pinning a process to a CPU core or an SMP node help reduce cache coherency traffic?

It is possible to pin a process to a specific set of CPU cores using sched_setaffinity() call. The manual page says: Restricting a process to run on a single CPU also avoids the performance ...
1
vote
2answers
64 views

Book or graphic video that explains things like stack, calling conventions, registers, cpu stuff

Is there a one-book for it all .. the sad part is I can hold a superficial conversation about all these things. I've gone to Uni, and got A's in all these subjects, yet I frigging don't understand how ...
0
votes
2answers
231 views

mmap shared buffer read problems

I have a kernel module that allocates a large buffer of memory, this buffer is then mmap-ed into userspace. The module recieves some data from hardware, and then puts the new data into the buffer with ...
3
votes
1answer
175 views

Are two consequent CPU stores on x86 flushed to the cache keeping the order?

Assume there are two threads running on x86 CPU0 and CPU1 respectively. Thread running on CPU0 executes the following commands: A=1 B=1 Cache line containing A initially owned by CPU1 and that ...
5
votes
2answers
850 views

Allocate static memory in CPU cache in c/c++ : is it possible?

Is it possible to explicitly create static objects in the CPU cache, sort of to make sure those objects always stay in the cache so no performance hit is ever taken from reaching all the way into RAM ...
1
vote
2answers
326 views

What is the best way to detect CPU cache misses when running an algorithm?

We have an algorithm which is performing poorly and we believe it's because of CPU cache misses. Nevertheless, we can't prove it because we don't have any way of detecting them. Is there any way to ...
1
vote
1answer
1k views

How to calculate the size in bits of tag, index field for a CPU cache?

I'm writing a CPU cache emulator that will take the size of the cache in bytes, the length of each cache line in bytes, and the number of sets/groups in the cache. I have most of it written, but what ...
3
votes
2answers
626 views

CPU caches aware C++ / C programming [closed]

I was going through Scott Meyer's podcast on CPU CACHES AND WHY YOU CARE It seems this will make code run faster, is there any open source where such coding is done for reference. Or anybody has ...
0
votes
1answer
118 views

Benchmarking functions multiple times - All calls after first are instruction cached?

I'm writing a small benchmarking library in C which is used to benchmark single functions. The way it works is that you supply the benchmarking function with a pointer to a void function without ...
1
vote
1answer
140 views

Cache flush on CyclicBarrier or CountDownLatch like when using synchronized keyword

Is there some way how to ensure that java flushes the cache of writes that have been done before the CyclicBarrier or CountDownLatch allows us to continue (as the synchronized keyword does) without ...
2
votes
1answer
151 views

Can Intel processors delay TLB invalidations?

This in reference to InteI's Software Developer’s Manual (Order Number: 325384-039US May 2011), the section 4.10.4.4 "Delayed Invalidation" describes a potential delay in invalidation of TLB entries ...
1
vote
0answers
224 views

cache coherence protocol AMD Opteron chips (MOESI?)

If I may start with an example. Say we have a system of 4 sockets, where each socket has 4 cores and each socket has 2GB RAM ccNUMA (cache coherent non-uniform memory access) type of memory. Let's ...
1
vote
2answers
99 views

How small should be an algorithm to be stored in cache? (Need a clue)

I'm doing a chess moves generator, I have the opportunity to replace 'while/for loops' with many 'if statements' and I was wondering if adding those ~3000 lines would improve performance as in theory ...

1 2