Windows error 0x8013153A, -2146233030

Detailed Error Information

COR_E_INVALIDPROGRAM[1]

Message"Invalid IL or CLR metadata."
Comment A program contained invalid IL or bad metadata. Usually this is a compiler bug.

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code5434 (0x153a)

Questions

1vote
1answer

Emit IL Like C# Method IL But Get System.InvalidProgramException : Common Language Runtime detected an invalid program

Emit IL Like C# Method IL But Get System.InvalidProgramException : Common Language Runtime detected an invalid program. Example : public static int BoolToInt(this bool input) { return input ? 1 : 0; } IL Code Is : ExtensionDataGetter.BoolToInt: IL_0000: nop IL_0001: ldarg.0 IL_0002: brtrue.s IL_0007 IL_0004: ldc.i4.0 IL_0005: br.s IL_0008 [...] read more
c#
clr
emit
0votes
1answer

JIT Compiler encountered an internal limitation. C#, VS 2019

I'm starting learning C# and came up with this exception: System.InvalidProgramException HResult=0x8013153A Message=JIT Compiler encountered an internal limitation. Source=<Cannot evaluate the exception source> StackTrace: <Cannot evaluate the exception stack trace> This exception happens when I try to get data from database using the stored procedure with a DateTime parameter passed [...] read more
c#
compiler-errors
compilation
cil

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0