Let me start by saying that I know how function pointers work. If you would like to explain them in more detail please go ahead, however what I ask from you is how can I implement them in a dispatch table using C.
I have searched for what a dispatch table is but wasn't really able to comprehend anything more than a vague understanding about how it might possibly work.
Please be kind enough to share it's practical uses and how I can create my own dispatch table in C. Help is very much appreciated.
Dispatch tables can be implemented in several ways. One is with a table of pointers to functions:
One might also jump into a table of branch instructions. This is more common in assembly than in higher level languages.
Essentially, a dispatch table is some method of transferring program control to a location selected via an index, rather than by individual selections such as with
if
orswitch
statements. In some situations, it is easier or cleaner to compute an index to select a function than to write some convoluted selection statements.(This example shows homogeneous functions—they all have the same parameter type list and return type. If functions are not homogeneous, it may be trickier to use a dispatch table in C.)
Although dispatch tables are not frequently encountered in much source code (nor are they uncommon), they can be used for a variety of things, such as:
On some processors, interrupt service routines are handled through a dispatch table: There are fixed locations in memory where addresses of routines are stored, forming a table of addresses. When an interrupt occurs, the hardware looks up the address and transfers control to it.
In code that should be high-performance on a variety of hardware, we might prepare several functions that each use a different algorithm designed for particular hardware. When the program starts, it could test what hardware it is executing on (such as specific processor model) and record an index into the table. That index would indicate which routine to execute. Then calls to the function can use the index table for quick dispatching, without needing to test-and-branch for each call.