This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Unoptimized LLVM IR for System.Number:TryInt32ToHexStr *** | |
; Function Attrs: uwtable | |
define monocc i8 @"System.Number:TryInt32ToHexStr (int,char,int,System.Span`1<char>,int&)"(i32 %arg_value, i32 %arg_hexBase, i32 %arg_digits, i64 %arg_destination, i64, i64* %arg_charsWritten) #0 { | |
BB0: | |
%1 = alloca %"System.Span`1<char>", align 8 | |
%2 = alloca %"System.Span`1<char>", align 8 | |
%3 = alloca %"System.Span`1<char>", align 8 | |
%4 = bitcast %"System.Span`1<char>"* %1 to i64* | |
%5 = getelementptr i64, i64* %4, i32 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Assertion at appdomain.c:2255, condition `alc' not met | |
================================================================= | |
Native Crash Reporting | |
================================================================= | |
Got a SIGABRT while executing native code. This usually indicates | |
a fatal error in the mono runtime or one of the native libraries | |
used by your application. | |
================================================================= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. --> | |
<Project> | |
<PropertyGroup> | |
<_RoslynTargetDirectoryName Condition="'$(MSBuildRuntimeType)' == 'Core'">netcoreapp2.1</_RoslynTargetDirectoryName> | |
<_RoslynTargetDirectoryName Condition="'$(MSBuildRuntimeType)' != 'Core'">net472</_RoslynTargetDirectoryName> | |
<_RoslynTasksDirectory>$(MSBuildThisFileDirectory)..\tasks\$(_RoslynTargetDirectoryName)\</_RoslynTasksDirectory> | |
<RoslynTasksAssembly>$(_RoslynTasksDirectory)Microsoft.Build.Tasks.CodeAnalysis.dll</RoslynTasksAssembly> | |
<UseSharedCompilation Condition="'$(UseSharedCompilation)' == ''">true</UseSharedCompilation> | |
<CSharpCoreTargetsPath>$(_RoslynTasksDirectory)Microsoft.CSharp.Core.targets</CSharpCoreTargetsPath> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <search.h> | |
typedef struct { int32_t key; void* UCollator; } TCollatorMap; | |
static int TreeComparer(const void* left, const void* right) | |
{ | |
const TCollatorMap* leftMap = left; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
================================================================= | |
Native Crash Reporting | |
================================================================= | |
Got a SIGSEGV while executing native code. This usually indicates | |
a fatal error in the mono runtime or one of the native libraries | |
used by your application. | |
================================================================= | |
================================================================= | |
Native stacktrace: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Assertion at method-to-ir.c:12303, condition `load_opcode != OP_LOADV_MEMBASE' not met | |
================================================================= | |
Native Crash Reporting | |
================================================================= | |
Got a SIGABRT while executing native code. This usually indicates | |
a fatal error in the mono runtime or one of the native libraries | |
used by your application. | |
================================================================= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.Memory.Tests - Total: 45033 Failed: 14 | |
System.Runtime.Tests - Total: 32363 Failed: 44 | |
System.Linq.Expressions.Tests - Total: 31027 Failed: 65 | |
System.Collections.Tests - Total: 30406 Failed: 8 | |
System.Linq.Parallel.Tests - Total: 28883 Failed: 4 | |
System.Xml.RW.XmlWriterApi.Tests - Total: 23385 Failed: 0 | |
Microsoft.VisualBasic.Core.Tests - Total: 19079 Failed: 0 | |
System.Text.Encoding.Tests - Total: 9943 Failed: 23 | |
System.ComponentModel.TypeConverter.Tests - Total: 6662 Failed: 0 | |
System.Runtime.Extensions.Tests - Total: 6499 Failed: 16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log --oneline b49e72950e31975cdd3f0062e112b87ebf12d9d9..cfdcf29478ff3f3aeb634ed525fe00744020f845 | |
cfdcf29478f (upstream/master) Remove redundant check of llvm_acfg->aot_opts.direct_icalls. (#14028) | |
7ac572217da [netcore] Make System.Private.CoreLib and host APIs compilable on Windows (#13943) | |
568c822ae9c Remove constant parameter to mono_tls_get_tls_setter and mono_tls_get_tls_getter. (#13894) | |
233f5ad0961 Reflect shared partition changes | |
30d94ae5298 Fix AssemblyName regression | |
1baa703c921 Move GCMemoryInfo to shared partition | |
592dac20f97 Update BuildTools, CoreClr to preview4-03913-01, preview5-27612-73, respectively (master) (#23916) | |
88c35b4974d Delete unused AssemblyName._hashForControl and related code (#23972) | |
64c07332129 EnterContextualReflection handle null (dotnet/coreclr#23953) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp30</TargetFramework> | |
</PropertyGroup> | |
<PropertyGroup> | |
<MicrosoftPrivateCoreFxNETCoreAppVersion>4.6.0-preview5.19208.1</MicrosoftPrivateCoreFxNETCoreAppVersion> | |
<MicrosoftNETCorePlatformsVersion>3.0.0-preview5.19208.1</MicrosoftNETCorePlatformsVersion> | |
</PropertyGroup> | |
<ItemGroup> |