This is precisely what constexpr functions exist for. constexpr functions were introduced in C++11. When invoked with constant expressions that can be evaluated at compile-time, they tend to be evaluated at compile time (and sometimes you can force this to occur). However, in general it is not possible to provide a guarantee. Otherwise, they are evaluated at run-time (and you can invoke them just as regular functions with constant or non-constant arguments computed at run-time).
Apart from the lack of guarantee of their compile-time evaluation, a constexpr function has constraints though: it must consist of only one single return statement, so if you're looking for a way to perform computations of any complexity, this won't fit your needs. Nevertheless, constexpr functions are probably the closest thing to what you are looking for.
Since you mention the example of the factorial() function, here is what this would look like with a constexpr function:
#include <iostream>
using namespace std;
constexpr int factorial(int n)
{
return (n == 0) ? 1 : factorial(n - 1);
}
int foo()
{
int result = 1;
// do some processing...
return result;
}
int main()
{
int v[factorial(5)]; // Evaluated at compile-time
cout << factorial(foo()); // Evaluated at run-time
}