Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Math.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Math.cs18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Math.cs b/src/System.Private.CoreLib/shared/System/Math.cs
index a175103f8..ef46869e2 100644
--- a/src/System.Private.CoreLib/shared/System/Math.cs
+++ b/src/System.Private.CoreLib/shared/System/Math.cs
@@ -123,15 +123,25 @@ namespace System
public static long DivRem(long a, long b, out long result)
{
- // TODO https://github.com/dotnet/coreclr/issues/3439:
- // Restore to using % and / when the JIT is able to eliminate one of the idivs.
- // In the meantime, a * and - is measurably faster than an extra /.
-
long div = a / b;
result = a - (div * b);
return div;
}
+ internal static uint DivRem(uint a, uint b, out uint result)
+ {
+ uint div = a / b;
+ result = a - (div * b);
+ return div;
+ }
+
+ internal static ulong DivRem(ulong a, ulong b, out ulong result)
+ {
+ ulong div = a / b;
+ result = a - (div * b);
+ return div;
+ }
+
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static decimal Ceiling(decimal d)
{