In C, if I have a function pointer
int (*f_ptr) (int)
it will be in the instruction cache or in the data cache ? I wouldn't be surprised to find f_ptr
in either of those caches. There is a way to debug this under linux maybe with perf
, kinda like a bird eye view of the data cache, instruction cache and translation lookaside buffer ?
The code of the function will enter the instruction cache when the function is executed.
But I assume you are talking about the function pointer variable itself. Since it's a variable, it's going to end up in the data cache. It's only a variable containing an address. A pointer in short.