1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 03:27:04 +09:00
Commit graph

2854 commits

Author SHA1 Message Date
github-actions[bot]
8109ace8f9
Update Azure Linux tag names (#110341)
Co-authored-by: Sven Boemer <sbomer@gmail.com>
2024-12-03 10:36:05 -08:00
Carlos Sánchez López
824bdd214e
[release/9.0-staging] Switch to non-incremental servicing (#109316)
* Change pre-release version label to servicing. Bump patch version to 1.
* Switch to non-incremental servicing.
- Remove incremental servicing docs.
- Update APICompat baseline.
- Remove some mentions of package servicing process.
- Remove redundant source build setting of GeneratePackageOnBuild.
* Change the S.D.DS. ProjectReference to `src` instead of `ref` in M.E.L.C.
* Update the template message
* Update backport.yml message
* Update library-servicing.md

---------

Co-authored-by: Eric StJohn <ericstj@microsoft.com>
2024-11-13 11:59:51 -06:00
github-actions[bot]
7e1c7c4f53
Mark the System.Formats.Nrbf assembly as [Experimental] with SYSLIB5005 (#107950)
Co-authored-by: Jeff Handley <jeffhandley@users.noreply.github.com>
2024-09-17 18:01:02 -07:00
github-actions[bot]
24889f9145
[release/9.0] Fix a case in MethodImpl overriding which wasn't handled as expected in ilc.exe for native aot (#107409)
* Fix a case in MethodImpl overriding which wasn't handled as expected in ilc.exe for native aot - This was causing real C# applications to fail to behave correctly on NativeAOT builds - Enable testing for covariant byref returns on nativeaot (split testing up so that the tests do not expect TypeLoadException, which NativeAOT doesn't reliably generate) - Fix implementation of SynthesizedPgoIncompatible project file flag for test script generation - Put copy of attributetesting.il test into the managed type system unit test suite - Add regression test of issue noted in #96175 into managed type system unit test suite - Update workflow documentation to include a better path to finding details on how to run CoreCLR and Libraries tests for Native AOT

Fixes #96175

* Fix test with incorrect IL

* Make the remaining TODO comments follow existing practice in this file for todo comments

* Fix test exclusion for mono llvmaot

* Address nits from code review

---------

Co-authored-by: David Wrighton <davidwr@microsoft.com>
Co-authored-by: Jeff Schwartz <jeffschw@microsoft.com>
2024-09-05 14:37:15 -07:00
Jakob Botsch Nielsen
0c67acb240
JIT: Sign/zero-extend small primitive arguments for pinvokes on arm32 and Apple arm64 (#106314)
Fix #101046
2024-08-15 01:54:52 +02:00
Rich Lander
03c42135c6
Add more images to table (#106336)
* Add more images to table

* Split table into two
2024-08-14 13:13:30 -07:00
Jeremy Koritzinsky
bfd964a91f
[cdac] Synthesize a valid ECMA-335 image for read/write metadata instead of providing a separate metadata reader (#106164)
* Synthesize a valid ECMA-335 image for read/write metadata instead of providing a separate metadata reader

* Remove copies

* Add a comment

* Create EcmaMetadata contract for handling all metadata retrieval and remove metadata handling completely from the Loader contract.

* Add EcmaMetadata contract to CoreCLR's list of implemented contracts

---------

Co-authored-by: Elinor Fung <elfung@microsoft.com>
2024-08-13 20:30:07 -07:00
Elinor Fung
527ab8fe46
[cdac] Implement ISOSDacInterface::GetPEFileName in cDAC (#106358)
- Include Module path in data descriptor
- Implement `GetPath` in `Loader` contract
- Make cDAC implement ISOSDacInterface::GetPEFileName
2024-08-13 18:04:18 -07:00
David Wrighton
272a83e0c8
Implementation of SOSDacApi GetMethodDescName for cDAC (#106169)
Add a number of new `MethodDesc` contract definitions

| Contract algorithm on RuntimeTypeSystem |
| --- |
| `IsGenericMethodDefinition`|
|`GetGenericMethodInstantiation`|
|`GetMethodToken`|
|`IsArrayMethod`|
|`IsDynamicMethod`|
|`IsStoredSigMethodDesc`|
|`IsNoMetadataMethod`|
|`IsILStub`|

Update cDAC compat asserts in cDAC to always be enabled by using a tls variable in `mscordaccore`

Implement `GetMethodDescName` on `ISOSDacInterface` in the `cdacreader`

Stub out an implementation of `GetPath` in the `Loader` contract used in a fallback after a fallback. This will need further work, but is included to make sure the code path isn't lost.

Fix the `EcmaMetadataReader` to be able to find blobs in the metadata

Add ability to read target data from a buffer held on the cdac side using the `Target` class. This was needed to handle signature containing a `CorElementType.Internal`.

And finally actually implement the name generation algorithm via a line for line port from the CoreCLR codebase.

Contributes to https://github.com/dotnet/runtime/issues/99302
2024-08-13 08:55:56 -07:00
Immo Landwerth
ff11036015
Add area ownership for System.ClientModel (#106281)
* Add area ownership for System.ClientModel

* Clarify how to route requests regarding System.ClientModel
2024-08-13 07:42:19 -07:00
Aleksey Kliger (λgeek)
d7a3f760fa
[cdac] Change Module data descriptor for lookup maps (#106291)
1. Add the MethodDefToILCodeVersioningState lookup map, too.

2. In future work (for example the SOS GetMethodDescData method) we will need to perform lookups in some of these lookup maps, so we will want the offsets of their Count and Next fields, not just a pointer to the table data.  Change the data descriptor to return the offsets of the LookupMap structs themselves, not their `pTable` member

3. Update SOSDacImpl.GetModuleData implementation to manually add the table data offset to the lookup map addresses that are used by that method.
2024-08-12 18:50:46 -04:00
Eric StJohn
6e440de5b4
Avoid package dependencies on libraries in the shared framework (#106172)
* Avoid package dependencies on libraries in the shared framework

We can avoid these dependencies since we can count on the library being
part of the shared framework.  Fewer dependencies means less packages
downloaded, less for customers to service, less copied into the output
directory when serviced.

* Add warning code.

* Address feedback
2024-08-12 11:15:19 -07:00
Eirik Tsarpalis
c1ab6c5b25
[System.Text.Json] Improve error handling of ref structs, including collection types with ref struct elements. (#106083)
* STJ-SG: tolerate ref struct members with JsonIgnore.

* * Skip all ref like members and emit warnings.
* Add detection for collections with ref struct elements.

* Update src/libraries/System.Text.Json/gen/JsonSourceGenerator.Parser.cs

Co-authored-by: David Cantú <dacantu@microsoft.com>

* Update src/libraries/System.Text.Json/gen/JsonSourceGenerator.Parser.cs

Co-authored-by: David Cantú <dacantu@microsoft.com>

---------

Co-authored-by: David Cantú <dacantu@microsoft.com>
2024-08-12 09:16:39 +01:00
Jeremy Koritzinsky
0074d77112
Add some basic guidelines around using C++ standard headers now that our build allows us to (#101088) 2024-08-08 22:18:18 -07:00
Jeremy Koritzinsky
1563fec7ea
Implement basic (recommended against) support for inheriting from COM interfaces defined in different assemblies (#105119) 2024-08-06 14:27:43 -07:00
Elinor Fung
c5a89d4429
[cdac] Implement ISOSDacInterface::GetObjectData getting COM RCW/CCW (#105846)
- Add `SyncTableEntry`, `SyncBlock`, `InteropSyncBlockInfo` data descriptors, `SyncTableEntries` global
- Get the sync block corresponding to a given object address in `Object` contract
- Add `GetComData` to `Object` contract
- Finish implementation of `ISOSDacInterface::GetObjectData` such that it populates the RCW/CCW
- Add test helpers for mocking out sync blocks
2024-08-06 12:38:18 -07:00
Jeff Handley
22f382e7ef
Mark ericstj as lead for area-System.Formats.Tar (#105990) 2024-08-05 12:57:58 -07:00
Rich Lander
ed044bd35c
Add cross-linking between files (#105884) 2024-08-02 13:10:19 -07:00
SingleAccretion
7911e709c0
Do not separate header comments from function definitions (#105754)
* Do not separate header comments from function definitions

Separating them with a space defeats a VS feature that shows
the header comments when you hover over a function in code.

* Remove // static as well
2024-07-31 10:52:37 -07:00
Jeff Handley
50bc6a1ed6
Update Preview/Experimental Attributes in Intrinsics (#105579)
* Arm.Sve - Switch from RequiresPreviewFeatures to Experimental

* X86.AvxVnni no longer requires preview features

* X86.X86Base.DivRem no longer requires preview features

* GenericVectorTests no longer requires preview features (generic math)

* Arm.Sve - Switch from RequiresPreviewFeatures to Experimental (fix mono build)

* Arm.Sve - Switch from RequiresPreviewFeatures to Experimental (fix JIT tests)

* Update SYSLIB5001 suppressions to have consistent comments

* Apply [Experimental] to X86Base.DivRem
2024-07-30 16:20:06 -07:00
Jeremy Kuhne
63cb7ec3af
Add alternate system color experimental feature (#105525)
Allows overriding KnownColor system values with an alternate set, which in the initial iteration is "dark mode" colors. Enables "dark mode" features in Windows Forms.

This is from the approved part of https://github.com/dotnet/winforms/issues/7641 with further naming iteration done offline with API review.
2024-07-29 13:30:04 -07:00
Elinor Fung
868d75660b
[cdac] Add GetArrayData to Object contract, partially implement ISOSDacInterface::GetObjectData (#105534)
- Add `Array` data descriptor
- Add `GetArrayData` to `Object` contract
  - Introduces a dependency on `RuntimeTypeSystem` contract
- Make cDAC implement `ISOSDacInterface::GetObjectData` except for handling CCW/RCWs
  - Returns E_NOTIMPL when runtime supports COM
  - Validated in debugger that cDAC and DAC return the same values for some test single and multidimensional arrays
- Pull out shared test helpers for adding different data to the mock target
2024-07-29 11:27:16 -07:00
shangchenglumetro
cb65d110ea
chore: fix some comments (#105504)
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
2024-07-27 14:49:26 -04:00
Lakshan Fernando
432c4a0941
Add 4 new feature switches that are not going to be publicly documented (#105496) 2024-07-26 09:54:39 -07:00
Aaron Robinson
7134e1e6a4
Update docs for ByRefLike with generics for work in .NET 10 (#103318)
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
2024-07-25 13:31:36 -07:00
Carl Walsh
9fcd60deea
Fix ECMA 355 Partition download links (#105454)
On https://github.com/dotnet/runtime/blob/main/docs/project/dotnet-standards.md the Partition with Notes download links using HTTP protocol fail to download in Chrome:

>Mixed Content: The site at 'https://github.com/' was loaded over a secure connection, but the file at 'https://download.microsoft.com/download/7/3/3/733AD403-90B2-4064-A81E-01035A7FE13C/MS%20Partition%20I.pdf' was redirected through an insecure connection. This file should be served over HTTPS. See https://blog.chromium.org/2020/02/protecting-users-from-insecure.html for more details.

(It might be reasonble for somebody else to followup fixing all domains on all pages with regex `\(http://([.a-z0-9-]+)` replacing with `(https://$1`, but I didn't test each blog site supports HTTPS.)
2024-07-25 11:15:34 -04:00
Jan Kotas
f6b4960fd2
Revert "Remove zlib from requirements script and instruction files (#105419)" (#105449)
This reverts commit 3ec6286e99.
2024-07-25 00:07:11 -04:00
Carlos Sánchez López
3ec6286e99
Remove zlib from requirements script and instruction files (#105419)
* Remove zlib from requirements instructions

* Remove zlib from native requirements installation script
2024-07-24 23:43:11 -04:00
Ilona Tomkowicz
59efb31d43
Bumping clang and llvm - make docs less ambiguous. (#105401) 2024-07-24 16:36:48 +02:00
Ilona Tomkowicz
d91d9a116f
Fix codespaces build by bumping clang llvm (#105385)
* Replace system clang.

* Unify dockerfiles.

* Update docs.

* Feedback: typo
2024-07-24 11:20:32 +02:00
Tanner Gooding
5998f88eef
Mark the new tensor APIs as experimental for .NET 9 (#105268)
* Mark the new tensor APIs as experimental for .NET 9

* Apply SNTEXP0001 to other internal API

* Suppress SNTEXP0001 in System.Numerics.Tensors.Tests

* Use SYSLIB5001. Central registration of experimental API diagnostic ids.

* Add Experimentals.cs (missed in prior commit)

* Revert SLN changes. Add UrlFormat property to attributes where missing.

* Ensure the net8 tensors tests also don't warn for the experimental API usage

---------

Co-authored-by: Eric StJohn <ericstj@microsoft.com>
Co-authored-by: Jeff Handley <jeffhandley@users.noreply.github.com>
2024-07-23 18:59:34 -07:00
Carlos Sánchez López
4399da8e8d
Revert "Migrate to zlib-ng, part 3: Remove zlib and zlib-intel source code an…" (#105284)
This reverts commit 4d2d3d3ef5.
2024-07-22 14:58:04 -07:00
Dan Moseley
b252fa50ad
remove corefx from md (#105275) 2024-07-22 14:55:00 -06:00
Carlos Sánchez López
4d2d3d3ef5
Migrate to zlib-ng, part 3: Remove zlib and zlib-intel source code and license mentions (#104399)
* Remove zlib/
* Remove zlib-intel/
* Remove third party notice
* Remove patches
* Remove version txts
* Remove cgmanifest.json entries
* Remove installer third party notice
* Update docs
---------
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
2024-07-22 12:23:27 -07:00
Lakshan Fernando
cc96c132b1
Update feature switch doc to remove duplication of official docs (#104673)
* Sort the current table by the build properties

* Document WinForms feature switches

* FB
2024-07-22 10:40:18 -04:00
Thorsten Reichert
7e273c6df6
Fix method numbering in Memory-model.md example code (#105168)
Comments are numbering ThreadFuncs as 1,2,3 while method names are ThreadFunc1, ThreadFunc1, ThreadFunc2.
2024-07-21 08:41:21 -07:00
Aleksey Kliger (λgeek)
27086b7125
[cdac] Begin adding MethodDesc APIs to the RuntimeTypeSystem contract (#104811)
This is largely a placeholder just to get the MethodDesc/MethodDescChunk infrastructure in place. To further fill out ValidateMethodDesc and to implement the GetMethodDescData DAC API, I also need to add an executable code manager contract for mapping between native code pointer values and methods. I'd like to do that as a separate PR.

Debugged WinDbg enough to verify that GetMethodDescData is implemented enough to extract the correct MethodTable pointer value from a MethodDesc.

* start GetMethodDescDataImpl

* add MethodDesc and MethodDescChunk

* checkpoint: MethodDesc validation

* update contract

* fix RuntimeTypeSystem unit tests

   mock the additional data and globals

* fix GetMethodDescChunkPointerMayThrow

* add data descriptor description to the contract

* Apply suggestions from code review

Co-authored-by: Elinor Fung <elfung@microsoft.com>

* MayThrow -> Throwing

* Slot is ushort not byte

* remove unused property

* add TargetPointer 32-/64-bit max constants

* use NewArrayHolder

* spelling

* add globals to RTS contract

* remove unused usings

* constexpr cdac_offsets, not const

* Apply suggestions from code review

Co-authored-by: Elinor Fung <elfung@microsoft.com>

* make GetNumVtableSlots private

---------

Co-authored-by: Elinor Fung <elfung@microsoft.com>
2024-07-20 19:02:39 -04:00
Elinor Fung
5fd965d7bf
[cdac] Implement GetObjectStringData (#105061)
- Include `String` and `Object` in data descriptor
- Start an `Object` contract for getting information about known managed objects
- Make cDAC implement `ISOSDacInterface::GetObjectStringData`
2024-07-19 06:25:47 -07:00
Elinor Fung
d123560a23
Enable embedding install location options in apphost (#104749)
- Add placeholder value in `apphost` for .NET install search options. Format:
  - `<search_location_flags> /0 <app_relative_dotnet_path>`
- Make `apphost` conditionally look at app-local, app-relative, environment variables, and global locations based on configured behaviour
  - Default (placeholder not changed) is to look at app-local, environment variables, and global locations.
- Update error and tracing messages to include information about any configured search options
- Allow specifying search options in `HostWriter.CreateAppHost`
- Add unit/integration tests

Part of https://github.com/dotnet/designs/blob/main/proposed/apphost-embed-install-location.md.
There still needs to be a corresponding change on the SDK side to allow configuration via `AppHostDotNetSearch` and `AppHostRelativeDotNet` properties.
2024-07-18 15:17:35 -07:00
David Wrighton
22630598e4
cDac work necessary to get the MethodTableName (#104759)
Add new details to the RuntimeTypeSystem and Loader contracts as needed to load metadata and examine and identify all of the kinds of type that the CoreCLR type system can represent

Add a type name generator based on a line by line copy from the CoreCLR codebase

Add an Ecma335 metadata parser which is pure safe managed code, and is capable of loading metadata that is not structured as a single array. This implementation is heavily based on the dnmd implementation. It is intended that this implementation is short-lived, and really ought to be replaced by dnmd or System.Reflection.Metadata when those apis become suitable for use in this scenario.

Provide implementations and documentation for all of the new contracts except for the RW metadata one. (Its rarely needed, so we can add it later)

Enhance the target infrastructure to better handle various forms of arrays, and contracts which do math based on target pointer sizes.

Contributes to https://github.com/dotnet/runtime/issues/99302
2024-07-17 13:19:36 -07:00
David Wrighton
dacf9dbdd4
Change temporary entrypoints to be lazily allocated (#101580)
* WorkingOnIt

* It basically works for a single example.

Baseline
Loader Heap:
----------------------------------------
System Domain:        7ffab916ec00
LoaderAllocator:      7ffab916ec00
LowFrequencyHeap:     Size: 0xf0000 (983040) bytes total.
HighFrequencyHeap:    Size: 0x16a000 (1482752) bytes total, 0x3000 (12288) bytes wasted.
StubHeap:             Size: 0x1000 (4096) bytes total.
FixupPrecodeHeap:     Size: 0x168000 (1474560) bytes total.
NewStubPrecodeHeap:   Size: 0x18000 (98304) bytes total.
IndirectionCellHeap:  Size: 0x1000 (4096) bytes total.
CacheEntryHeap:       Size: 0x1000 (4096) bytes total.
Total size:           Size: 0x3dd000 (4050944) bytes total, 0x3000 (12288) bytes wasted.

Compare
Loader Heap:
----------------------------------------
System Domain:        7ff9eb49dc00
LoaderAllocator:      7ff9eb49dc00
LowFrequencyHeap:     Size: 0xef000 (978944) bytes total.
HighFrequencyHeap:    Size: 0x1b2000 (1777664) bytes total, 0x3000 (12288) bytes wasted.
StubHeap:             Size: 0x1000 (4096) bytes total.
FixupPrecodeHeap:     Size: 0x70000 (458752) bytes total.
NewStubPrecodeHeap:   Size: 0x10000 (65536) bytes total.
IndirectionCellHeap:  Size: 0x1000 (4096) bytes total.
CacheEntryHeap:       Size: 0x1000 (4096) bytes total.
Total size:           Size: 0x324000 (3293184) bytes total, 0x3000 (12288) bytes wasted.

LowFrequencyHeap is 4KB bigger
HighFrequencyHeap is 288KB bigger
FixupPrecodeHeap is 992KB smaller
NewstubPrecodeHeap is 32KB smaller

* If there isn't a parent methodtable and the slot matches... then it by definition the method is defining the slot

* Fix a couple more issues found when running a subset of the coreclr tests

* Get X86 building again

* Attempt to use a consistent api to force slots to be set

* Put cache around RequiresStableEntryPoint

* Fix typo

* Fix interop identified issue where we sometime set a non Precode into an interface

* Move ARM and X86 to disable compact entry points

* Attempt to fix build breaks

* fix typo

* Fix another Musl validation issue

* More tweaks around NULL handling

* Hopefully the last NULL issue

* Fix more NULL issues

* Fixup obvious issues

* Fix allocation behavior so we don't free the data too early or too late

* Fix musl validation issue

* Fix tiered compilation

* Remove Compact Entrypoint logic

* Add new ISOSDacInterface15 api

* Fix some naming of NoAlloc to a more clear IfExists suffix

* Remove way in which GetTemporaryEntryPoint behaves differently for DAC builds, and then remove GetTemporaryEntrypoint usage from DAC entirely in favor of GetTemporaryEntryPointIfExists

* Attempt to reduce most of the use of EnsureSlotFilled. Untested, but its late.

* Fix the build before sending to github

* Fix unix build break, and invalid assert

* Improve assertion checks to validate that we don't allocate temporary entrypoints that will be orphaned if the type doesn't actually end up published.

* Remove unused parameters and add contracts

* Update method-descriptor.md

* Fix musl validation issue

* Adjust SOS api to be an enumerator

* Fix assertion issues noted
Fix ISOSDacInterface15 to actually work

* Remove GetRestoredSlotIfExists
- Its the same as GetSlot ....  just replace it with that function.

* Update src/coreclr/debug/daccess/daccess.cpp

Co-authored-by: Jan Kotas <jkotas@microsoft.com>

* Update docs/design/coreclr/botr/method-descriptor.md

Co-authored-by: Jan Kotas <jkotas@microsoft.com>

* Update src/coreclr/vm/methodtable.inl

Co-authored-by: Jan Kotas <jkotas@microsoft.com>

* Update src/coreclr/vm/methodtable.h

Co-authored-by: Jan Kotas <jkotas@microsoft.com>

* Fix GetMethodDescForSlot_NoThrow
Try removing EnsureSlotFilled
Implement IsEligibleForTieredCompilation in terms of IsEligibleForTieredCompilation_NoCheckMethodDescChunk

* Fix missing change intended in last commit

* Fix some more IsPublished memory use issues

* Call the right GetSlot method

* Move another scenario to NoThrow, I think this should clear up our tests...

* Add additional IsPublished check

* Fix MUSL validation build error and Windows x86 build error

* Address code review feedback

* Fix classcompat build

* Update src/coreclr/vm/method.cpp

Co-authored-by: Aaron Robinson <arobins@microsoft.com>

* Remove assert that is invalid because TryGetMulticCallableAddrOfCode can return NULL ... and then another thread could produce a stable entrypoint and the assert could lose the race

* Final (hopefully) code review tweaks.

* Its possible for GetOrCreatePrecode to be called for cases where it isn't REQUIRED. we need to handle that case.

---------

Co-authored-by: Jan Kotas <jkotas@microsoft.com>
Co-authored-by: Aaron Robinson <arobins@microsoft.com>
2024-07-14 12:20:21 -07:00
Adeel Mujahid
e4c4ab464c
Add fedora in install script (#104860)
* Add fedora in install script

* Update linux-requirements.md

---------

Co-authored-by: Jan Kotas <jkotas@microsoft.com>
2024-07-14 09:37:16 -07:00
Kevin Jones
74af205a64
Add toolchain instructions for Fedora (#104859)
* Add toolchain instructions for Fedora

* Put Ubuntu / Debian first

* Fix table of contents

---------

Co-authored-by: Jan Kotas <jkotas@microsoft.com>
2024-07-13 10:14:15 -07:00
Elinor Fung
663dc18eba
Update thread contract doc to align with implementation and other contract docs (#104832) 2024-07-12 19:34:34 -07:00
Sven Boemer
9407c9cfa8
Fix type parsing issues in ILLink and ILC (#104060)
- Fixes https://github.com/dotnet/runtime/issues/98955

   We will now produce a warning when a non-assembly-qualified type
   flows into a string location annotated with
   DynamicallyAccessedMembers, and we don't try to look up or mark the
   type (since we don't know which assemblies will be searched at
   runtime by the Type.GetType call).

- Fixes https://github.com/dotnet/runtime/issues/103906

   The ILLink intrinsic handling for `Type.GetType` will now look in
   corelib for generic arguments, matching native AOT.

This replaces the existing warning IL2105. This uses a new warning
instead of repurposing IL2105, because we already documented IL2105
and older versions of ILLink will produce it. Best to avoid any
confusion about them.
2024-07-12 14:07:32 -07:00
Eirik Tsarpalis
42b2fc819b
Document arm PreferredMachine settings (#104812)
* Document PreferredMachine workaround for x64 compiler toolset

* Update docs/workflow/requirements/windows-requirements.md

Co-authored-by: Jan Kotas <jkotas@microsoft.com>

* Address feedback

* Address feedback

* simplify

---------

Co-authored-by: Jan Kotas <jkotas@microsoft.com>
2024-07-12 19:13:50 +01:00
Kevin Jones
029007daba
Update SYSLIB0026 with new message 2024-07-10 10:35:18 -04:00
Kevin Jones
e805e47249
Add SYSLIB0056 to list of diagnostics
Co-authored-by: Stephen Toub <stoub@microsoft.com>
2024-07-10 10:34:49 -04:00
Elinor Fung
e733c2f227
[cdac] Implement ISOSDacInterface2::GetObjectExceptionData (#104343)
- Make cDac implement `ISOSDacInterface2`
- Add `Exception` (managed type) to data descriptor
- Add `GetExceptionData` to `Exception` contract which gets all the data that SOS-DAC API uses
2024-07-09 14:15:09 -07:00
Elinor Fung
04a40c1d59
[cdac] Start Loader contract and implement ISOSDacInterface::GetModuleData in cDAC (#104257)
- Start a `Loader` contract - currently contains what is needed for GetModuleData
- Implement `ISOSDacInterface::GetModuleData` in cDAC
- Store base address and is reflection emit bit on `Module` for easier diagnostics access
2024-07-09 08:36:24 -07:00