Can someone explain the mechanics of a jump table and why is would be needed in embedded systems?
|
|
A jump table can be either an array of pointers to functions or an array of machine code jump instructions. If you have a relatively static set of functions (such as system calls or virtual functions for a class) then you can create this table once and call the functions using a simple index into the array. This would mean retrieving the pointer and calling a function or jumping to the machine code depending on the type of table used. The benefits of doing this in embedded programming are:
If does cost you a tiny bit of performance for accessing the table, but this is no worse than any other virtual function call. |
||
|
|
|
|
|
||
|
|
|
|
A jump table is described here, but briefly, it's an array of addresses the CPU should jump to based on certain conditions. As an example, a C switch statement is often implemented as a jump table where each jump entry will go to a particular "case" label. In embedded systems, where memory usage is at a premium, many constructs are better served by using a jump table instead of more memory-intensive methods (like a massive if-else-if). |
||
|
|
|
|
Wikipedia sums it up pretty well:
In other words, it's a useful construct to use when your system is extremely memory and/or CPU limited, as is often the case in an embedded platform. |
||
|
|
|
|
Jump tables, more often known as a Branch table, are usually used only by the machine. The compiler creates a list of all labels in a assembly program and links all labels to a a memory location. A jump table pretty much is a reference card to where, a function or variable or what ever the label maybe, is stored in memory. So as a function executes, on finishing it jumps back to it's previous memory location or jumps to the next function, etc. And If your talking about what I think you are, you don't just need them in embedded systems but in any type of compiled/interpreted environment. Brian Gianforcaro |
||
|
|
|
|
A jump table, also known as a branch table, is a series of instructions, all unconditionally branching to another point in code. You can think of them as a switch (or select) statement where all the cases are filled:
Note that there's no return - the code that it jumps to will execute the return, and it will jump back to wherever myjump was called. This is useful for state machines where you execute certain code based on the state variable. There are many, many other uses, but this is one of the main uses. It's used where you don't want to waste time fiddling with the stack, and want to save code space. It is especially of use in interrupt handlers where speed is extremely important, and the peripheral that caused the interrupt is only known by a single variable. This is similar to the vector table in processors with interrupt controllers. One use would be taking a $0.60 microcontroller and generating a composite (TV) signal for video applications. the micro isn't powerful - in fact it's just barely fast enough to write each scan line. A jump table would be used to draw characters, because it would take too long to load a bitmap from memory, and use a for() loop to shove the bitmap out. Instead there's a separate jump to the letter and scan line, and then 8 or so instructions that actually write the data directly to the port. -Adam |
||
|
|
