| 449 | |
| 450 | #ifdef CPPIA_JIT |
| 451 | void genCode(CppiaCompiler *compiler, const JitVal &inDest, ExprType destType) HXCPP_OVERRIDE |
| 452 | { |
| 453 | int n = expressions.size(); |
| 454 | int lineOffset = compiler->getLineOffset(); |
| 455 | //compiler->trace(filename); |
| 456 | for(int i=0;i<n;i++) |
| 457 | { |
| 458 | if (lineOffset) |
| 459 | compiler->move( sJitFrame.star(etInt)+lineOffset, expressions[i]->line ); |
| 460 | //compiler->traceInt("line",expressions[i]->line); |
| 461 | if (i<n-1) |
| 462 | expressions[i]->genCode(compiler); |
| 463 | else |
| 464 | expressions[i]->genCode(compiler, inDest, destType); |
| 465 | } |
| 466 | } |
| 467 | #endif |
| 468 | |
| 469 | }; |
no test coverage detected