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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-05-18Always call CloseHandle in AsmMan::EmitManifest (#50372)Omair Majid
Unless it's an ERROR_INVALID_HANDLE. Otherwise, we can leak the file handle.
2021-04-16Fix memory leaks in Assembler::CreateExportDirectory (#50431)Omair Majid
Use smart pointers to avoid having to manually deallocate memory. - szOutputFileName was never being deallocated - `pAlias` and `exportDirData` were only being deallocated on the success path and not on any of the error paths.
2021-04-07Remove IAssemblyName (and various fusion remnants) (#50755)Elinor Fung
2021-04-06Reorganize CoreCLR native build to reduce CMake reconfigures when the build ↵Jeremy Koritzinsky
system is untouched (#49906)
2021-03-27Delete unreachable code for emitting PE fixups and obj files (#50259)Jan Kotas
* Delete unrechable code for emitting PE fixups and obj files * Fold ICeeGen into ICeeGenInternal and change IID
2021-03-17Big-endian fixes for ilasm/ildasm (#49685)Ulrich Weigand
* Add byte swap when accessing PublicKeyBlob in AsmMan::EndAssembly * Fix access beyond end of pszString in DumpUnicodeString * Remove unneccessary assert in _FillMDDefaultValue
2021-02-21Enable Hot Reload API on Linux (#48497)Mike McLaughlin
Enable Hot Reload API on Linux Only define EnC_SUPPORTED for vm/ee on xplat. Doesn't enable the ENC ICorDebug API. Enable hotreload api tests on Linux/MacOS. API not implemented on arm/arm64 Remove all the ENC_DELTA_HACK code. Remove more ENC_DELTA_HACK code from ilasm
2021-01-30Use memmove instead of memcpy for overlapping copy (#47468)Omair Majid
memcpy is defined to only work when the source and destination memory regions do not overlap. In here, they do. So let's use memmove instead.
2021-01-27Delete dead code (#47452)Jan Kotas
2021-01-26Public sign ilasm output by default (#47448)Jan Kotas
Fixes #47426
2020-12-21Fix for ilasm generating invalid blob heap index for empty body methods ↵Ivan Povazan
(#46124) (#46289) Co-authored-by: Ivan Povazan <ivan@raincode.com>
2020-12-20 Fix for ilasm generation of malformed PDB files due to empty body methods ↵Ivan Povazan
(#46250) * Fix malformed portable PDB generation for methods with empty body (#46124) * Adding a test case for ilasm which verifies that the MethodDef and MethodDebugInformation tables have the same number of rows (#46124)
2020-12-16Fix ilasm crash on empty local variable name (#46080)Jan Kotas
Fixes #45908
2020-12-12Delete non-supported handling of Windows-specific PDBs in ilasm (#45979)Jan Kotas
I do not expect we will ever add the classic PDB support back in ilasm. Fixes #45492
2020-12-08December infra rollout - remove duplicated 'src' from coreclr subrepo ↵Tomáš Rylek
(src/coreclr/src becomes src/coreclr) (#44973) * Move src/coreclr/src/Directory.Build.targets to src/coreclr Merge src/coreclr/src/CMakeLists.txt into src/coreclr/CMakeLists.txt * Mechanical move of src/coreclr/src to src/coreclr * Scripts adjustments to reflect the changed paths