Trampoline (computers)

From Wikipedia, the free encyclopedia

In computer programming, the word "trampoline" has a number of meanings, associated with jumps.

  • Trampolines (sometimes referred to as indirect jump vectors) are memory locations holding addresses pointing to interrupt service routines, I/O routines, etc. The idea of "bouncing" off a trampoline is to overcome the limitations imposed by a CPU architecture that expects to always find vectors in fixed locations.
  • In the GCC compiler, trampoline refers to a technique for implementing pointers to nested functions. The trampoline is a small piece of code which is constructed on the fly on the stack when the address of a nested function is taken. The trampoline sets up the static link pointer, which allows the nested function to access local variables of the enclosing functions. The function pointer is then simply the address of the trampoline. This avoids having to use "fat" function pointers for nested functions which carry both the code address and the static link. See GCC internals: Trampolines for Nested Functions.
  • Used in some LISP implementations, a trampoline is a loop that iteratively invokes thunk-returning functions. A single trampoline is sufficient to express all control transfers of a program; a program so expressed is trampolined or in "trampolined style"; converting a program to trampolined style is trampolining. Trampolined functions can be used to implement tail recursive function calls in stack-oriented languages.[1]
  • When an operating system is booted on an SMP machine, only one processor, the boot-strap processor, will be active. After the operating system has configured itself it will instruct the other processors to jump to a piece of trampoline code which will initialize the processors and wait for the operating system to start scheduling threads on them.
  • In Java, a trampoline refers to using reflection to avoid using inner classes, for example in event listeners. The time overhead of a reflection call is traded for the space overhead of an inner class. Trampolines in Java usually involve the creation of a GenericListener to pass events to an outer class.
  • In Objective-C, a trampoline is an object returned by a method that acts like a delegate, "bouncing" a message on to another object.
  • When interfacing pieces of code with incompatible calling conventions, a trampoline is used to convert the caller's convention into the callee's convention.
    • In embedded systems, "trampolines are short snippets of code that start up other snippets of code". Rather than write interrupt handlers entirely in assembly language, another option is to write interrupt handlers mostly in C, and use a short trampoline to convert the assembly-language interrupt calling convention into the C calling convention. See "Trampolines for Embedded Systems: Minimizing interrupt handlers latency" by Joseph M. Link.
    • When passing a Callback to a system that expects to call a C function, but one wants it to execute the method function of a particular instance of an object written in C++, one uses a short trampoline to convert the C function-calling convention to the C++ method-calling convention. One method of writing such a trampoline is to use a thunk -- see "Thunking in Win32 with C++" by Einar Otto Stangvik. Another method is to use a "generic listener" -- see "Trampolines in Java" by Hans Muller.
  • Trampoline! is also an extension to the Tcl/Tk script programming language to get PDF files from the canvas widget, an interface component of the Tk graphical tookit that provides structured graphics.

[edit] External links

In other languages