Lines Matching refs:table
12 ROM. The "library at ROM" contains a jump table with the list of functions that
49 table. Also, for additional flexibility and modularity, the index file can
63 BL image --> wrapper function --> jump table entry --> library at ROM
65 The index file is used to create a jump table which is placed in ROM. Then, the
66 wrappers refer to the jump table to call the "library at ROM" functions. The
67 wrappers essentially contain a branch instruction to the jump table entry
77 the romlib jump table includes an entry for ``fn_b``, ``fn_a`` will include
89 1. ``romlib_generator.py gentbl [args]`` - Generates the jump table by parsing
92 2. ``romlib_generator.py genvar [args]`` - Generates the jump table global
93 variable (**not** the jump table itself) with the absolute address in ROM.
94 This global variable is, basically, a pointer to the jump table.