Hi, does anyone know if Keil has added support for calls through a function pointer table, or if they are about to do so? Right now it is a bomb, especially when using banked memory. /Christian
Can you make a compiler that can handle function trees through function pointers? The answer is without question yes! Perhaps yes when the pointer table has constant values, but if the function pointers are 'dynamic', I think probably not practically.
Yes, that is right. Dynamic function pointers are impossible to work with (optimization wise). But for static pointers it should be. Thanks to you Hans-Bernhard for a very detailed reply. You know what you are talking about /Christian