Skip to content

Performance degradation when switching from 8.1 to 8.10 version #679

@buko1234

Description

@buko1234

I have created simple java application covering standard library operations, translated it with both versions and noticed that 8.10 version works visibly slower. The application covers:

  1. List operations - add, remove
  2. Set operations - add, remove
  3. String and StringBuilder operations - append, substring, deleteCharAt
  4. System.identityHashCode() method

Results(miliseconds):

JAVA
List: 1426
Set: 1206
String: 15009
Identity: 2075
ALL: 19718

.NET IKVM 8.1
List: 6978
Set: 5339
String: 29609
Identity: 2730
ALL: 44657

.NET IKVM 8.10
List: 9385 (+34% comparing to 8.1 version)
Set: 11611 (+117%)
String: 66506 (+125%)
Identity: 18215 (+567%)
ALL: 105718 (+137%)

As I am aware of time degradation after translating jar into dll, it seems there is big difference after version update.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions