Oxygen compiles to efficient asm/machine code so there is not much to be gained, except in very specific situations, where spare registers can be used instead of variables. But local variables are held on the stack, which is usually contained within the CPU cache (very fast memory).
To get the best performance, ensure that there are no unnecessary repetitions, and turn small, frequently used functions into macros.