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 I've been struggling with for hours is to figure out how many bits I need to shift left/right to extract the tag and index fields of the given address.
For example, given the address 48, I need to determine the tag and index.
Here's what I have for extracting the tag, but I'm pretty sure it's incorrect.
int extractTag(int address, int sets){
int bits = exp2(sets); // number of bits to shift: 2^sets
unsigned int tag;
int tag = address >> (32 - bits);
return tag;
}