https://bugzilla.novell.com/show_bug.cgi?id=413247
Summary: [perf regression] slowdown with linear IR
Product: Mono: Runtime
Version: SVN
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: JIT
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
QAContact: [email protected]
Found By: ---
The following bench is 3-4 times slower on x86 after the switch to the linear
IR.
using System;
class Program {
public static void Main() {
double d = 0;
for (double i = 0; i < 100000000; i++) {
d += i + 1000.0;
d += i - 1000.0;
d += i * 1000.0;
d += i / 1000.0;
d += i % 1000.0;
}
Console.WriteLine (d);
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs