| 1450 | } |
| 1451 | |
| 1452 | void CompilerUtils::moveIntoStack(unsigned _stackDepth, unsigned _itemSize) |
| 1453 | { |
| 1454 | if (_stackDepth <= _itemSize) |
| 1455 | for (unsigned i = 0; i < _stackDepth; ++i) |
| 1456 | rotateStackDown(_stackDepth + _itemSize); |
| 1457 | else |
| 1458 | for (unsigned i = 0; i < _itemSize; ++i) |
| 1459 | rotateStackUp(_stackDepth + _itemSize); |
| 1460 | } |
| 1461 | |
| 1462 | void CompilerUtils::rotateStackUp(unsigned _items) |
| 1463 | { |
no outgoing calls
no test coverage detected