BoostC Inline Functions

From OpenCircuits
Revision as of 11:34, 6 March 2009 by Russ hensel (talk | contribs) (New page: Inline functions are statements that look like functions but do not really call anyting or return, the code is generated right "inline" with the statements before and after the "function c...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Inline functions are statements that look like functions but do not really call anyting or return, the code is generated right "inline" with the statements before and after the "function call". There are a couple of different ways to do this, and a couple of different reasons to do it.

Ways

Using a #DEFINE Using a inline qualifier in the function definition.


Reasons

  • Smaller faster code -- sometimes, sometimes not.
  • Avoiding too deep a call return stack.

Since there is no call/return the stack usage is zip.

  • Make changes to code easier.

If the code would normally have to be changed in many places, changing the definition of the "function" can allow all the changes to be made in one place.

  • Make code more readable.

If a subroutine is called only in one place, it may still make the code more readable by using an inline function to hide or "chunk" low level details.

  • Remove the chance of calling a function from both the main line and the interrupt

Because there are actually two different versions of the function.


#DEFINE Details