1. 27 8月, 2022 5 次提交
  2. 26 8月, 2022 25 次提交
  3. 25 8月, 2022 10 次提交
    • S
      Disable distributed transaction tests on ARM (#74572) · 7a8af49f
      Shay Rojansky 提交于
      To unblock CI build failures, works around #74170
      7a8af49f
    • M
      f26c91bb
    • A
      [wasm] Move all the wasm jobs from runtime-staging to runtime (#73596) · e130a89c
      Ankit Jain 提交于
      * [wasm] Move stable jobs from runtime-staging to runtime
      
      - library tests: windows
      - AOT tests: windows
      - Debugger tests (chrome): windows, and linux
      - Wasm.Build.Tests: windows
      
      * Move last remaining wasm-firefox tests to runtime too
      
      * Move firefox debugger tests to runtime-extra-platforms
      
      * Fix browser-eventpipe build
      
      ```
      src/mono/sample/wasm/browser-eventpipe/Program.cs(80,13): error IDE0074: (NETCORE_ENGINEERING_TELEMETRY=Build) Use compound assignment
      ```
      e130a89c
    • A
      Add server1.pfx to CredScanSuppressions.json (#74559) · 0e13ffaa
      Alexander Köplinger 提交于
      **BYPASS_SECRET_SCANNING**
      0e13ffaa
    • E
      Add NuGet package for System.Runtime.Serialization.Schema (#74533) · 3e7d5964
      Eric Erhardt 提交于
      System.Runtime.Serialization.Schema isn't getting a NuGet package created for it because it doesn't set IsPackable=true.
      3e7d5964
    • J
      Switch to unified fully managed Overlapped implementation (#74532) · 4cf2e3bb
      Jan Kotas 提交于
      This change was attempted before in https://github.com/dotnet/coreclr/pull/23029 and rejected due to performance impact. Things have changed since then that makes it feasible now.
      
      Sockets and file I/O do not use pinning feature of Overlapped anymore. They pin memory on their own using `{ReadOnly}Memory<T>.Pin` instead. It means that the async pinned handles are typically not pinning anything. The async pinned handles come with some extra overhead in this common use case. Also, they cause confusion during GC behavior drill downs. This change removes the support for async pinned handles from the GC:
      - It makes the current most common Overlapped use cheaper. It is hard to measure the impact of eliminating async pinned handles exactly since they are just a small part of the total GC costs. The unified fully managed implementation enabled simplificication of the implementation and reduced allocations.
      - It gets rid of confusing async pinned handles behavior. The change was actually motivated by a recent discussion with a customer who was surprised by the async pinned handles not pinning anything. They were not sure whether it is expected behavior or whether it is a bug in the diagnostic tools.
      
      Micro-benchmarks for pinning feature of Overlapped are going to regress with this change. The regression in a micro-benchmark that runs Overlapped.Pack/Unpack in a tight loop is about 20% for each pinned object. If there is 3rd party code still using the pinning feature of Overlapped, Overlapped.Pack/Unpack is expected to be a tiny part of the end-to-end async flow and the regression for end-to-end scenarios is expected to be in noise range.
      4cf2e3bb
    • M
      #50575 colorbehavior default should disable colors in android/applemobile (#74496) · ebdb0455
      Meri Khamoyan 提交于
      * #50575 colorbehavior default should disable colors in android/applemobile
      ebdb0455
    • M
      Only stack allocate when marshalling Utf8 arguments (#74478) · 442c1378
      Michal Strehovský 提交于
      * Only stack allocate when marshalling Utf8 arguments
      
      Fixes #74394.
      
      * Review feedback
      442c1378
    • A
      5764faf1
    • J
      Enable caching of writeable W^X mappings (#74526) · 16414dd1
      Jan Vorlicek 提交于
      This change enables caching of the last used writeable mapping for
      W^X. It was originally disabled by an ifdef, but after we've turned W^X
      on by default, performance tests have shown a regression in some regex
      tests. I have investigated those and found that they do excessive amount
      of jitting (around 50000 methods). Enabling the caching of the last used
      writeable mapping fixes the regression completely.
      The caching implementation was present in the sources ever since I've
      implemented the W^X stuff, but if was disabled by an ifdef. So this
      change just defines the related symbol and enables the code.
      
      The caching basically just keeps a writeable mapping after unmapping
      until the next mapping request arrives, so it gives an opportunity to
      reuse it in case of series of mappings of sequential range of executable
      memory, which happens e.g. in the case mentioned.
      16414dd1