1. 23 11月, 2019 4 次提交
    • F
      Unifying many of the R2R and COR constants between crossgen2 and the r2rdump tools (#172) · 75afc580
      Fadi Hanna 提交于
      * Unifying many of the R2R and COR constants between crossgen2 and the r2rdump tools
      
      * Move tools/crossgen2/Common to tools/Common
      
      * Adjust paths in csproj files
      75afc580
    • E
      Fix printing switching to MinOpts or Optimized (#214) · 1767c688
      Egor Chesakov 提交于
      * Initialize compSwitchedToOptimized and compSwitchedToMinOpts before calling to compInitOptions in jit/compiler.cpp
      
      * Add LF to switchedToOptimized and switchedToMinOpts messages in jit/compiler.cpp
      1767c688
    • J
      Fix getting affinity set on MUSL on Jetson TX2 (#206) · 82d10491
      Jan Vorlicek 提交于
      * Fix getting affinity set on MUSL on Jetson TX2
      
      The code in PAL_GetCurrentThreadAffinitySet relied on the fact that the
      number of processors reported as configured in the system is always
      larger than the maximum CPU index. However, it turns out that it is not
      true on some devices / distros. The Jetson TX2 reports CPUs 0, 3, 4 and
      5 in the affinity mask and the 1 and 2 are never reported. GLIBC reports
      6 as the number of configured CPUs, however MUSL reports just 4. The
      PAL_GetCurrentThreadAffinitySet was using the number of CPUs reported as
      configured as the upper bound for scanning affinity set, so on Jetson
      TX2, the affinity mask returned had just two bits set while there were
      4 CPUs. That triggered an assert in the GCToOSInterface::Initialize.
      
      This change fixes that by looping over all cpu indices in the affinity set.
      Similar fix went to GetProcessorForHeap and related stuff in gcenv.unix.cpp
      82d10491
    • J
      Delete unnecessary intrinsic attributes (#216) · 0bd58320
      Jan Kotas 提交于
      These are left-over from .NET Native. Not needed for RyuJIT or Mono.
      0bd58320
  2. 22 11月, 2019 29 次提交
  3. 21 11月, 2019 7 次提交