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
AgeCommit message (Collapse)Author
2019-02-01[Number] make double 0.0 cmp more portable (#30)mono-2018-08Bernhard Urban
Related: https://github.com/mono/mono/issues/11965
2018-07-20remove `using System.Diagnostics.Private;`EgorBo
2018-07-18Removes System.Diagnostics.PrivateMarek Safar
2018-07-16Cherry-pick changes from dotnet/corertEgorBo
2018-07-16Get Fast Span to compileAlexander Köplinger
2018-06-18Add dependency tracking to string constructorsMarek Safar
2018-06-14use icall for DoubleToString on mono (#16)Egor Bogatov
2018-06-04add to Number.Unix.csEgor Bogatov
2018-05-31Add `using System.Diagnostics.Private;` to DecimalEgorBo
2018-05-09hide TypeForwarders from monoEgorBo
2018-04-30Add `using System.Diagnostics.Private;` for monoEgorBo
2018-04-20Replace LowLevelConcurrentQueue with ConcurrentQueueEgorBo
2018-04-05Add `using System.Diagnostics.Private;` to Task-related sourcesEgorBo
2018-03-28[wasm] Ignore TaskCreationOptions.LongRunning under WebAssembly as ↵Rodrigo Kumpera
multiple-threads are not supported.
2018-03-20FastCompareStringHelper has alignment issues on arm64Marek Safar
2018-03-19Fixes memory alignment issuesMarek Safar
2018-03-15Don't depend on crash handler when null argument is usedMarek Safar
2018-03-09Switch to legacy hashcode for stringMarek Safar
2018-03-07add 'using System.Diagnostics.Private' to TaskAwaiterEgorBo
2018-03-05Mono tweaks for String class supportMarek Safar
2018-03-03Hide ReflectionBlockedAttribute from public surfaceMarek Safar
2018-03-02Mono tweaksMarek Safar
2018-03-02Merge remote-tracking branch 'upstream/master'Marek Safar
2018-03-02Move CoreRT specific String class bits to its own file (#5478)Marek Safar
2018-03-02CppCodeGen workaroundJan Kotas
2018-03-02Vectorize String.IndexOf(char) and String.LastIndexOf(char) (#16392)Eric Erhardt
* Vectorize String.IndexOf(char) using the same algorithm as SpanHelpers IndexOf(byte). * Respond to feedback. * Vectorize String.LastIndexOf Clean up IndexOf vectorization. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Fix Adar month name in Hebrew calendar (dotnet/coreclr#16697)Tarek Mahmoud Sayed
The returned data from ICU has 6th month name as 'Adar I' and 7th month name as 'Adar' We need to adjust that in the list used with non-leap year to have 6th month as 'Adar' and 7th month as 'Adar II' note that when formatting non-leap year dates, 7th month shouldn't get used at all. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Work around MCG bug around `ref char` marshalling (#5481)Michal Strehovský
The change in the P/invoke signature that came from CoreCLR triggers a bug in MCG on the TFS side.
2018-03-02Fix build breakJan Kotas
2018-03-021-base Dictionary buckets to reduce initalizationBen Adams
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Use EqualityComparer<TKey>.Default IntrinsicBen Adams
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Improve Dictionary TryInsert CQBen Adams
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Improve Dictionary FindEntry CQBen Adams
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Change several ValueTask properties to methods (dotnet/coreclr#16691)Stephen Toub
These do unsafe casts on an object, and we don't want a debugger's automatic evaluation accidentally invoking them. That means either making them methods or adding [DebuggerBrowsable(DebuggerBrowsableState.Never)], and the former seems cleaner. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Move MemoryExtensions.TryGetString to MemoryMarshal and remove TryGetArray ↵Ahson Khan
(#16692) * Remove Span.NonGenerics and update leftover AsRoS -> AsSpan changes * Move MemoryExtensions.TryGetString to MemoryMarshal and remove TryGetArray * Move TryGetString to common MemoryMarshal.cs * Remove the `this` keyword, not an extension method Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Remove Span.NonGenerics and update leftover AsRoS -> AsSpan changes (#16689)Ahson Khan
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Adjust corert's System.Private.CoreLib for Stream.WriteAsync changeStephen Toub
2018-03-02Adjust System.Threading.Tasks.Extensions for IValueTaskSourceStephen Toub
Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com> Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Improve MemoryMarshal.Cast (dotnet/coreclr#16659)mikedn
Avoid unnecessary checked and signed arithmetic. Handle special cases such as cast between same size types and from byte sized types, the JIT is unable to optimize these cases currently. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Merge pull request dotnet/coreclr#16618 from stephentoub/valuetaskextensibilityStephen Toub
Implement ValueTask extensibility Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-02Remove span helpers, use mirrored PathInternal helper (#27585)Jeremy Kuhne
* Remove span helpers, use mirrored PathInternal helper Remove other unnecessary helpers (notably with Path.Join available) * Fix Unix Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com> Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-01Add back argument check for TypeForwardedFromAttribute (#16680)Jan Kotas
Fixes dotnet/corefx#27554 Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-01Fix GetPathRoot issues (dotnet/corefx#27572)Jeremy Kuhne
Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com> Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-01Edits to fix conflicts in generated Vector.cs file (dotnet/coreclr#16666)Mandar Sahasrabuddhe
Fixed minor space changes and one syntax error that causes conflict between checked in Vector.cs file and the freshly auto-generated Vector.cs file. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-01Fix ILVerification.Tests project (#5471)Julien Couvreur
* Use correct name to fetch embedded resource * Fix the test project * Use GetTypeInfo().Assembly
2018-03-01Use correct name to fetch embedded resource (#5464)Julien Couvreur
2018-03-01Merge pull request #4970 from luqunl/CA2111Luqun Lou
Add CA2111 SuppressMessage for these MSDN documented public Pointers
2018-03-01Add Path.Join() methods. (dotnet/coreclr#16561)Jeremy Kuhne
* Add Path.Join() methods. See #25536. * Address feedback and fix a couple issues now that I've got tests running correctly. * Update per final API approval * Fix Unix, remove redundant helper. * Merge and tweak join methods in GetFullPath(string, string) * Tweak again Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-03-01Tests For GetPathRoot and Enabling NormalizeDirectorySeparatorTests (#27494)Anirudh Agnihotry
Corrects its Implementation too Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com> Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-02-28Cache the results of CanCompareValueTypeBits (#5468)Michal Strehovský
This is a recursive algorithm and there's a pathological test in the CoreCLR test assets that has been timing out ever since the code was introduced. Made the cache a bit more general purpose, since I'm expecting this to be reused for more things later.