Changes between Initial Version and Version 1 of Ticket #226, comment 1
- Timestamp:
- Dec 31, 2020, 5:41:50 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #226, comment 1
initial v1 1 Partially improved performance by reducing resolver environment size to O(N). Previously was O(4^N ).1 Partially improved performance by reducing resolver environment size to O(N). Previously was O(4^N^). 2 2 3 Note 1: generated code size is also O(4^N ) due to thunk functions not being reused in otype assertions. This implies a heavy runtime penalty as too many local functions are created.3 Note 1: generated code size is also O(4^N^) due to thunk functions not being reused in otype assertions. This implies a heavy runtime penalty as too many local functions are created. 4 4 Caching is required to improve code generation. 5 5