I have a performance critical inline function. It generates some data, based on a parameter. I want the compiler to optimize the data generation for all invocations, where the parameter is known at compile-time. The problem is that I can't force the compiler to put the optimized data out of the stack to a static constant, since marking the data static would break the case when parameter is not a compile-time constant. Having constant data on the stack hurts performance. Is there a way to deduce (maybe using templates/boost::enable_if), that the parameter is a compile-time constant and choose appropriate implementation of the data generation?
CLARIFICATION
Basically I have something like the following:
struct Data {
int d_[16];
};
inline Data fun(int param)
{ //param can sometimes be a compile-time constant
... //generate the data
Data res = {gen0, gen2, gen3, ..., gen15}; //put the data into result
return res;
}
So when param isn't compile-time constant, we just generate all the data and return.
When param is known, the compiler can optimize data generation out. But then it fails to optimize the following line out and generates a lot of code, that just sets res members to known data (the data is embedded to program code). I want the compiler to create a static constant, and then copy it to the return object (that is faster than executing much code with embedded data). Since this is an inline function, even the copy may be not necessary.
Disclaimer
This question is not the same as How to use different overload of an inline function, depending on a compile time parameter?. This is more generic problem.