Is it possible to have a computed jump in C? Maybe a jumptable with hundereds of entries. Don't want a switch case structure because every decision brings a time penalty. :-)
Just wondering: With an ARM, is it likely that a jump table would be more or less code efficient than an array of function pointers?