arithmetischer Ausdruck
⇒
3*x + 1
push c;
code(x); code(y); o;
x <- pop; y <- pop; push (x o y);
Beispiele: Java-Bytecode (javac, javap),
CIL (gmcs, monodis)
Bemerkung: soweit scheint alles trivial--interessant
wird es bei Teilausdrücken mit Nebenwirkungen,
Bsp. x++ - --x
;