platform/upstream/dotnet/runtime.git
8 years agoPort from tfs: onload exception debugger crash fix (dotnet/coreclr#4868)
sbomer [Wed, 18 May 2016 23:40:12 +0000 (16:40 -0700)]
Port from tfs: onload exception debugger crash fix (dotnet/coreclr#4868)

The ExceptionHijackPersonalityRoutine was retrieving a context from a
particular stack frame, but the calling conventions for the function
executing in that frame allow it to overwrite the context. This was
causing the debugger to crash for exceptions thrown from the onload
method in winforms on x64.

The fix is to instead retrieve the context from the previous stack
frame, whose layout is set up explicitly in ExceptionHijack.

Commit migrated from https://github.com/dotnet/coreclr/commit/f1d6f7abbc5dd716cea4dc75b3da8043b9759ded

8 years agoMerge pull request dotnet/coreclr#5070 from dotnet-bot/from-tfs
Bruce Forstall [Wed, 18 May 2016 23:18:38 +0000 (16:18 -0700)]
Merge pull request dotnet/coreclr#5070 from dotnet-bot/from-tfs

Merge changes from TFS

Commit migrated from https://github.com/dotnet/coreclr/commit/cc70bf864bb915c0541cfba86f8998fc905174b5

8 years agoMerge pull request dotnet/coreclr#5039 from adityamandaleeka/sigterm_chaining
Aditya Mandaleeka [Wed, 18 May 2016 21:51:05 +0000 (14:51 -0700)]
Merge pull request dotnet/coreclr#5039 from adityamandaleeka/sigterm_chaining

Put SIGTERM registration behind a PAL initialization flag

Commit migrated from https://github.com/dotnet/coreclr/commit/c9dff80a222f30d1ff74e9ad1d5b8cdcb953897a

8 years agoCache GetLowerBound in Array.Reverse and Array.Sort (dotnet/coreclr#5019)
Hugh Bellamy [Wed, 18 May 2016 21:27:37 +0000 (22:27 +0100)]
Cache GetLowerBound in Array.Reverse and Array.Sort (dotnet/coreclr#5019)

- Avoids calling internal native method 4 times per sort: 2 times is
enough
- Avoids calling internal native method 2 times per reverse: 1 time is
enough

Commit migrated from https://github.com/dotnet/coreclr/commit/a2fb9c1cead47d21723a137e6fc13ba4577c5c66

8 years agoMerge pull request dotnet/coreclr#5069 from ramarag/R2RCleanup
Rama krishnan Raghupathy [Wed, 18 May 2016 21:17:54 +0000 (14:17 -0700)]
Merge pull request dotnet/coreclr#5069 from ramarag/R2RCleanup

Removing hard coded path Fixes dotnet/coreclr#5065

Commit migrated from https://github.com/dotnet/coreclr/commit/a338ace5295674f967054dd5452a9a7c379e33ad

8 years agoMerge pull request dotnet/coreclr#5048 from yizhang82/hostpath-fix
Yi Zhang (CLR) [Wed, 18 May 2016 20:36:13 +0000 (13:36 -0700)]
Merge pull request dotnet/coreclr#5048 from yizhang82/hostpath-fix

Move NATIVE_DLL_SEARCH_DIRECTORIES probing earlier right before we pr…

Commit migrated from https://github.com/dotnet/coreclr/commit/0d5171c791f03e9b27e7f3370778e6d3debef40a

8 years agoMerge pull request dotnet/coreclr#5044 from RussKeldorph/lifetime2
Russ Keldorph [Wed, 18 May 2016 20:10:28 +0000 (13:10 -0700)]
Merge pull request dotnet/coreclr#5044 from RussKeldorph/lifetime2

Fix and reenable lifetime2

Commit migrated from https://github.com/dotnet/coreclr/commit/298ab3215d1c2cd34b96b3b2a0253d5a25fed47f

8 years agoRemove Encoding FEATURE_* defines from mscorlib (dotnet/coreclr#5026)
James Ko [Wed, 18 May 2016 20:09:33 +0000 (16:09 -0400)]
Remove Encoding FEATURE_* defines from mscorlib (dotnet/coreclr#5026)

* Remove Encoding FEATURE_* defines from mscorlib

* Remove strange character from Encoding.cs

Commit migrated from https://github.com/dotnet/coreclr/commit/6cd92b2da7b3aac86598e7b8d7b6fad063239b6b

8 years agoRemoving hard coded path
Rama Krishnan Raghupathy [Wed, 18 May 2016 19:28:20 +0000 (12:28 -0700)]
Removing hard coded path

Commit migrated from https://github.com/dotnet/coreclr/commit/384667276402262556cbb805bceab42cc3389ac7

8 years agoMerge pull request dotnet/coreclr#5062 from dotnet-bot/from-tfs
Bruce Forstall [Wed, 18 May 2016 19:33:06 +0000 (12:33 -0700)]
Merge pull request dotnet/coreclr#5062 from dotnet-bot/from-tfs

Merge changes from TFS

Commit migrated from https://github.com/dotnet/coreclr/commit/7c441feb2cb34cce5cc8b76a11d8860eb462836e

8 years agoMerge pull request dotnet/coreclr#5036 from rahku/fixes
Rahul Kumar [Wed, 18 May 2016 19:16:50 +0000 (12:16 -0700)]
Merge pull request dotnet/coreclr#5036 from rahku/fixes

Fix for issue# 3651

Commit migrated from https://github.com/dotnet/coreclr/commit/fbab51323adafc986914e8a94b47db643d313ee6

8 years agoFix to Jit32 test b46659.exe failure.
Venkata Sivaramakrishna Ramadugu [Wed, 18 May 2016 17:59:02 +0000 (10:59 -0700)]
Fix to Jit32 test b46659.exe  failure.

Here is the git hub issue: https://github.com/dotnet/coreclr/issues/4547

The repro case is

     i = -111
     while ( i > 0)
     {
         // another nested loop goes here
     }
     return 100

     After assertionProp, due to while loop condition lot of blocks/stmts get deleted as unreachable but optLoopCount is never decremented.  Later when optLoopCodeMotion() gets called, it iterates through optLoopTable[] and tries to access head

     if  ((loopRmv & loopBit)     ||
            tail == 0               ||
            head->bbTreeList == 0    )

     Since entire method reduces to a single basic block, head will be nullptr and accessing head->bbTreeList is leading to an AV.

     Fix: As a safe fix for RTM, also check whether head is nullptr.

[tfs-changeset: 1605919]

Commit migrated from https://github.com/dotnet/coreclr/commit/3bb9ddf1c6318655d9e6f46f29af02e0648fcebc

8 years agoMerge pull request dotnet/coreclr#4902 from JeremyKuhne/WindowsLongPath
Jeremy Kuhne [Wed, 18 May 2016 17:41:27 +0000 (10:41 -0700)]
Merge pull request dotnet/coreclr#4902 from JeremyKuhne/WindowsLongPath

Allow long paths in CoreCLR managed code

Commit migrated from https://github.com/dotnet/coreclr/commit/08832577f09faf9176de87bf49765ae7bbdf8e62

8 years agoRollback CSdotnet/coreclr#1603899 that led to a JIT assert ngen'ing System.Windows...
Bruce Forstall [Wed, 18 May 2016 17:33:28 +0000 (10:33 -0700)]
Rollback CSdotnet/coreclr#1603899 that led to a JIT assert ngen'ing System.Windows.Forms.dll

====================
007551: Merge pull request dotnet/coreclr#1241 from mikedn/modopt

Extend the DIV/MOD dividend into RDX:RAX only if needed
====================

Assert failure(PID 33656 [0x00008378], Thread: 17792 [0x4580]): Assertion failed 'addr->OperIsAddrMode() || (addr->IsCnsIntOrI() && addr->isContained()) || !addr->isContained()' in 'System.Windows.Forms.CheckedListBox:OnDrawItem(ref):this' (IL size 1216)

    File: e:\dd\projectk\src\ndp\clr\src\jit\emitxarch.cpp Line: 2698
    Image: C:\Windows\Microsoft.NET\Framework64\v4.0.rb1605209\mscorsvw.exe

The tree:

***** BB41, stmt 82 (embedded)
     (  6,  8) [003723] ------------             *  stmtExpr  void  (embedded) (IL 0x109...  ???)
N1045 (  3,  2) [000115] ------------             |        /--*  lclVar    ref    V00 this         u:2 REG rcx $80
N1047 (  1,  4) [002642] ------------             |        +--*  const     long   344 field offset Fseq[idealCheckSize] REG NA $10b
N1049 (  4,  6) [002643] -------N----             |     /--*  +         byref  REG NA $356
N1051 (  6,  8) [000116] ----GO------             |  /--*  indir     int    REG rcx <l:$685, c:$2ef>
N1053 (  6,  8) [003669] DA--GO------             \--*  st.lclVar int    V172 cse1         rcx REG rcx RV

During codegen:

Generating BB41, stmt 71        Holding variables: [rbx rsi rdi r12-r15]

Generating: N1043 (  3,  2) [000114] ------------             *  lclVar    int    V05 loc3         u:3 r12 (last use) REG r12 RV $31a
Generating: N1045 (  3,  2) [000115] ------------             *  lclVar    ref    V00 this         u:2 REG rcx $80
IN00db:        mov      rcx, gword ptr [V00 rbp+10H]
                            GC regs: 00000040 {rsi} => 00000042 {rcx rsi}
Generating: N1047 (  1,  4) [002642] ------------             *  const     long   344 field offset Fseq[idealCheckSize] REG NA $10b
Generating: N1049 (  4,  6) [002643] -------N----             *  +         byref  REG NA $356
Generating: N1051 (  6,  8) [000116] ----GO------             *  indir     int    REG rcx <l:$685, c:$2ef>
... assert ...

(This is rollback dotnet/coreclr#2: the TFS/GitHub mirror unfortunately undid rollback CSdotnet/coreclr#1605814 with CSdotnet/coreclr#1605840. This change should avoid that problem.)

[tfs-changeset: 1605917]

Commit migrated from https://github.com/dotnet/coreclr/commit/ce8e7e3a0d6ad3dd34a8b3487c8068e49c6b45e0

8 years agoPorting the changes to support generic dictionaries lookups in R2R images to the...
Fadi Hanna [Wed, 18 May 2016 17:18:53 +0000 (10:18 -0700)]
Porting the changes to support generic dictionaries lookups in R2R images to the JIT32 implementation, to support the x86 architecture.

All of the changes in importer.cpp were ported from JIT\importer.cpp, which was merged to the coreclr master branch last Friday evening (reviewed and signed-off in a PR on GitHub).

The remaining changes include:
         1) Adjusting #ifdefs to enable the x86 scenario
         2) Implementation of the R2R stub for generic dictionary lookups
         3) Small change in prestub.cpp required for x86 to work correctly

[tfs-changeset: 1605906]

Commit migrated from https://github.com/dotnet/coreclr/commit/7d78bb285816c69f39c016950d3add07f650483e

8 years agoExplicitly specify the location from where to pick up the model.corelib.xml
Alex Ghiondea [Wed, 18 May 2016 16:21:25 +0000 (09:21 -0700)]
Explicitly specify the location from where to pick up the model.corelib.xml

[tfs-changeset: 1605881]

Commit migrated from https://github.com/dotnet/coreclr/commit/1ab27c57d093f073429117e6312108bc9ed2e171

8 years agoFix Interop TCs to use long long instead of long (dotnet/coreclr#5054)
Dongyun Jin [Wed, 18 May 2016 15:44:36 +0000 (00:44 +0900)]
Fix Interop TCs to use long long instead of long (dotnet/coreclr#5054)

Some TCs were using long for 64bit variable.
While it is correct on x86, long is 32bit on ARM.
Fix TCs to use long long instead so that they can pass on ARM as well.

Fix dotnet/coreclr#5053

Signed-off-by: Dongyun Jin <dongyun.jin@samsung.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/b7704374e683a8d3644a0640010936a22296967a

8 years agoMerge pull request dotnet/coreclr#5055 from dotnet-bot/from-tfs
Bruce Forstall [Wed, 18 May 2016 14:19:23 +0000 (07:19 -0700)]
Merge pull request dotnet/coreclr#5055 from dotnet-bot/from-tfs

Merge changes from TFS

Commit migrated from https://github.com/dotnet/coreclr/commit/4716d27c9550f4ce24f32e6248b4b350fe1e08ac

8 years agoFix crossgen /createpdb when input filename is given without path (dotnet/coreclr...
John Chen [Wed, 18 May 2016 09:46:23 +0000 (02:46 -0700)]
Fix crossgen /createpdb when input filename is given without path (dotnet/coreclr#5045)

Fix a bug in "crossgen /createpdb" command that can cause it to fail
if the input filename is given without a path.

Commit migrated from https://github.com/dotnet/coreclr/commit/acd2bba2231e07f006846b44e790c5073d7c6019

8 years agoARM64: Fix LR update in a few stubs (dotnet/coreclr#5013)
Swaroop Sridhar [Wed, 18 May 2016 09:44:44 +0000 (02:44 -0700)]
ARM64: Fix LR update in a few stubs (dotnet/coreclr#5013)

Fix LR capture/restore in a few stubs helpers.
This change fixed failures in 6 GC tests under GCStress.

Commit migrated from https://github.com/dotnet/coreclr/commit/7e9bd0570ed853e7fcf524537388b1bc43ce086f

8 years agoAdd private properties for debugger access to Task fields (dotnet/coreclr#5024)
Stephen Toub [Wed, 18 May 2016 09:43:08 +0000 (05:43 -0400)]
Add private properties for debugger access to Task fields (dotnet/coreclr#5024)

Commit migrated from https://github.com/dotnet/coreclr/commit/e4d83dff604197c78f7de2e01e51674f90932209

8 years agoAdd missing method contract
Jan Kotas [Wed, 18 May 2016 09:37:56 +0000 (02:37 -0700)]
Add missing method contract

[tfs-changeset: 1605842]

Commit migrated from https://github.com/dotnet/coreclr/commit/1bbb6e4941b26053ec81be3f5bedf187fc336076

8 years agoString.Equals: Don't typecast if object refs are the same (dotnet/coreclr#5021)
James Ko [Wed, 18 May 2016 09:19:30 +0000 (05:19 -0400)]
String.Equals: Don't typecast if object refs are the same (dotnet/coreclr#5021)

Commit migrated from https://github.com/dotnet/coreclr/commit/32a621023b6ddd639e8aa4d1ab749d87c558c40a

8 years agoMerge pull request dotnet/coreclr#5050 from dotnet-bot/from-tfs
Jan Kotas [Wed, 18 May 2016 09:18:20 +0000 (02:18 -0700)]
Merge pull request dotnet/coreclr#5050 from dotnet-bot/from-tfs

Merge changes from TFS

Commit migrated from https://github.com/dotnet/coreclr/commit/681fa0cdce34d28cfe844dc5788da1c37fc40271

8 years agoMerge pull request dotnet/coreclr#5028 from ramarag/R2Rtests
Rama krishnan Raghupathy [Wed, 18 May 2016 07:59:10 +0000 (00:59 -0700)]
Merge pull request dotnet/coreclr#5028 from ramarag/R2Rtests

Guard Crossgen Test Runtime logic with RunCrossGen Env
this fixes https://github.com/dotnet/coreclr/issues/3759

Commit migrated from https://github.com/dotnet/coreclr/commit/c3fc0101166fd9bbd878bda8c5a83e3fa4b4b18b

8 years agoAdd missing .gitmirrorall file
Matt Ellis [Wed, 18 May 2016 06:39:18 +0000 (23:39 -0700)]
Add missing .gitmirrorall file

[tfs-changeset: 1605815]

Commit migrated from https://github.com/dotnet/coreclr/commit/103b370789ed107639e77b2e47028e1621243d12

8 years agoMove NATIVE_DLL_SEARCH_DIRECTORIES probing earlier right before we probe for absolute...
Yi Zhang [Wed, 18 May 2016 06:01:51 +0000 (23:01 -0700)]
Move NATIVE_DLL_SEARCH_DIRECTORIES probing earlier right before we probe for absolute path and assembly path. This is needed to make sure servicing directories (set in NATIVE_DLL_SEARCH_DIRECTORIES by host) are honored correctly before everything else, along with rest of the NATIVE_DLL_SEARCH_DIRECTORIES probing path. In order to preserve compat with UWP host, I kept the rest of the interop probing logic even when NATIVE_DLL_SEARCH_DIRECTORIES probing path is specified.
To my horror I discovered the fact that we actually never set hmod when loading DLL from NATIVE_DLL_SEARCH_DIRECTORIES probing, and the probably the only saving grace is that our ultimate fallback LoadLibrary call after that would "just work" and return the HMODULE we just loaded... This is now fixed.

Commit migrated from https://github.com/dotnet/coreclr/commit/63dda33bc66c04ed24eb17e75b69dcfb0a6485a5

8 years agoMerge pull request dotnet/coreclr#5034 from dotnet/revert-4969-RelaxALC
Gaurav Khanna [Wed, 18 May 2016 05:50:26 +0000 (22:50 -0700)]
Merge pull request dotnet/coreclr#5034 from dotnet/revert-4969-RelaxALC

Revert "Enable overriding assemblies from TPA"

Commit migrated from https://github.com/dotnet/coreclr/commit/4a0396065857a0292fafbdfc357f0830f71ea99b

8 years agoMerge pull request dotnet/coreclr#5016 from tijoytom/master
tijoytom [Wed, 18 May 2016 05:36:25 +0000 (22:36 -0700)]
Merge pull request dotnet/coreclr#5016 from tijoytom/master

[Do not Merge]Renaming ZeroFreeAllocMemUTF8 to ZeroFreeCoTaskMemUTF8

Commit migrated from https://github.com/dotnet/coreclr/commit/06b47df44b35cd545398c446919b89de2c5d14f0

8 years agoMerge branch 'master' of https://github.com/dotnet/coreclr
tijoytom [Wed, 18 May 2016 05:29:45 +0000 (22:29 -0700)]
Merge branch 'master' of https://github.com/dotnet/coreclr

Commit migrated from https://github.com/dotnet/coreclr/commit/ccc289b60b9a95ee28cdc56e5c785f607e34b1cf

8 years agoMerge pull request dotnet/coreclr#5032 from kspawa/r2rngen
Kshama Pawar [Wed, 18 May 2016 04:50:56 +0000 (21:50 -0700)]
Merge pull request dotnet/coreclr#5032 from kspawa/r2rngen

Treat R2R images as NI for profiling

Commit migrated from https://github.com/dotnet/coreclr/commit/0177a7affbe3c09c0be8b753e1907612fff62d46

8 years agoFix and reenable lifetime2
Russ Keldorph [Wed, 18 May 2016 04:33:51 +0000 (21:33 -0700)]
Fix and reenable lifetime2

lifetime2 is another questionable test case that relies on lifetime
guarantees that don't exist.  Per our convention, force optimization on
and mark it as "optimization sensitive" to make a best effort to get it to
pass.

Fixes dotnet/coreclr#1037

Commit migrated from https://github.com/dotnet/coreclr/commit/63694e982108508057ce0a1d02e43019997292ed

8 years agoLinux/ARM: Change default clang version from 3.5 to 3.6 (dotnet/coreclr#4928)
Geunsik Lim [Wed, 18 May 2016 02:44:23 +0000 (11:44 +0900)]
Linux/ARM: Change default clang version from 3.5 to 3.6 (dotnet/coreclr#4928)

In case of the cross compilation on the ubuntu 14.04 x64
for Linux/ARM, the default version of clang/llvm that is
generated by "#> sudo ./cross/build-rootfs.sh arm" command
is 3.6 without 3.5 as following:

u14.04@x64> ls ./coreclr/cross/rootfs/arm/usr/lib/clang/3.6
include  lib
u14.04@x64> ls ./coreclr/cross/rootfs/arm/usr/lib/llvm-3.6/
bin  build  include  lib  share

Let's keep the clang/llvm version consistently by moving
the default version from 'clang3.5' to 'clang3.6' at build-time
for Linux/ARM.

Signed-off-by: Geunsik Lim <geunsik.lim@samsung.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/f39cef776f14ca0c4004e384bd4f331f07fe3e69

8 years agoFix for issue# 3651
Rahul Kumar [Wed, 18 May 2016 02:26:06 +0000 (19:26 -0700)]
Fix for issue# 3651

Commit migrated from https://github.com/dotnet/coreclr/commit/e8ad0d136fedc30ac31d2d38648ae81cda88af89

8 years agoRevert "Enable overriding assemblies from TPA"
Gaurav Khanna [Wed, 18 May 2016 01:46:21 +0000 (18:46 -0700)]
Revert "Enable overriding assemblies from TPA"

Commit migrated from https://github.com/dotnet/coreclr/commit/d1df1851846e35703c9b0606748fe90423af464f

8 years agoGuard Crossgen Test Runtime logic with RunCrossGen Env
Rama Krishnan Raghupathy [Sat, 14 May 2016 02:41:46 +0000 (19:41 -0700)]
Guard Crossgen Test Runtime logic with RunCrossGen Env
Adds Semaphores to prevent race conditions

Commit migrated from https://github.com/dotnet/coreclr/commit/dc3168d8d4dd2cf60cdcfad4c8a9a68174612eff

8 years agoMerge pull request dotnet/coreclr#4994 from pgavlin/gh4912.PAGE_SIZE.jit
Pat Gavlin [Wed, 18 May 2016 00:19:37 +0000 (17:19 -0700)]
Merge pull request dotnet/coreclr#4994 from pgavlin/gh4912.PAGE_SIZE.jit

Encapsulate or replace references to CORINFO_PAGE_SIZE.

Commit migrated from https://github.com/dotnet/coreclr/commit/e78338ef715dc6fd89d9cbd0bf93c7f88d211c20

8 years agoMerge pull request dotnet/coreclr#5015 from pgavlin/jitOnDllHooks
Pat Gavlin [Wed, 18 May 2016 00:18:07 +0000 (17:18 -0700)]
Merge pull request dotnet/coreclr#5015 from pgavlin/jitOnDllHooks

Remove jitOnDllProcess{Attach,Detach}.

Commit migrated from https://github.com/dotnet/coreclr/commit/ed1bde4534e2093f3f4dac949c07f358bdd01044

8 years agoAdd more help options to corerun (dotnet/coreclr#4973)
James Ko [Wed, 18 May 2016 00:16:32 +0000 (20:16 -0400)]
Add more help options to corerun (dotnet/coreclr#4973)

Commit migrated from https://github.com/dotnet/coreclr/commit/f4fe31a03dca4ede37bd6451d0c81365ee9ee7e4

8 years agoRemove redundant Rank checks from SZArrayHelper/Enumerator (dotnet/coreclr#5022)
James Ko [Wed, 18 May 2016 00:12:15 +0000 (20:12 -0400)]
Remove redundant Rank checks from SZArrayHelper/Enumerator (dotnet/coreclr#5022)

Commit migrated from https://github.com/dotnet/coreclr/commit/c96cd5643e4eb9bdc1e59f4b651baaf49bc942b8

8 years agoPut SIGTERM registration behind a PAL initialization flag.
Aditya Mandaleeka [Wed, 18 May 2016 00:06:28 +0000 (17:06 -0700)]
Put SIGTERM registration behind a PAL initialization flag.

Commit migrated from https://github.com/dotnet/coreclr/commit/c9eb779c20731a1d560ca76f48a6cd327b02dd03

8 years agoSome test cases require more than 2GB RAM (dotnet/coreclr#4778)
Dongyun Jin [Wed, 18 May 2016 00:01:05 +0000 (09:01 +0900)]
Some test cases require more than 2GB RAM (dotnet/coreclr#4778)

Some test cases try to allocate 2GB, which is huge
for some testing environments.

Fix dotnet/coreclr#4714

Signed-off-by: Dongyun Jin <dongyun.jin@samsung.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/b78e02a61c537a554906f5c8ec936492e55a525c

8 years agoTreat R2R images as NI for profiling
Kshama Pawar [Tue, 17 May 2016 23:42:35 +0000 (16:42 -0700)]
Treat R2R images as NI for profiling

Commit migrated from https://github.com/dotnet/coreclr/commit/8c425e520615f7546befcf10693fbdd02b4aa492

8 years agoMerge pull request dotnet/coreclr#4995 from adityamandaleeka/reenable_native_callable
Aditya Mandaleeka [Tue, 17 May 2016 23:37:35 +0000 (16:37 -0700)]
Merge pull request dotnet/coreclr#4995 from adityamandaleeka/reenable_native_callable

Reenable NativeCallable test on x86 legacy backend

Commit migrated from https://github.com/dotnet/coreclr/commit/988835820b229b406069b34c93204acd17845f4b

8 years agoUpdate contributing-workflow.md
Aditya Mandaleeka [Tue, 17 May 2016 23:35:45 +0000 (16:35 -0700)]
Update contributing-workflow.md

Fix broken link to CODE_OWNERS file.

Commit migrated from https://github.com/dotnet/coreclr/commit/2b9ff45af4aaac65a9b07a1bdcb5299e8671e010

8 years agoFix breakpoints on jitted code for Linux/ARM (dotnet/coreclr#5014)
Dmitri-Botcharnikov [Tue, 17 May 2016 23:21:36 +0000 (03:21 +0400)]
Fix breakpoints on jitted code for Linux/ARM (dotnet/coreclr#5014)

Commit migrated from https://github.com/dotnet/coreclr/commit/a92eac6b4b635285525c80dcd9dadf3616d96370

8 years agoStart using CODE_OWNERS.TXT (dotnet/coreclr#5027)
noahfalk [Tue, 17 May 2016 23:18:15 +0000 (16:18 -0700)]
Start using CODE_OWNERS.TXT (dotnet/coreclr#5027)

Commit migrated from https://github.com/dotnet/coreclr/commit/1d80088b7ced953c7b9de1a29f4d77cb039dd8d2

8 years agoEnable Checksum csc param for mscorlib (dotnet/coreclr#4996)
Jose Perez Rodriguez [Tue, 17 May 2016 22:21:08 +0000 (17:21 -0500)]
Enable Checksum csc param for mscorlib (dotnet/coreclr#4996)

Enable Checksum csc param for mscorlib

Commit migrated from https://github.com/dotnet/coreclr/commit/c396cf15da1ddbf1fd7dcf256357adac44829679

8 years agoMerge pull request dotnet/coreclr#4954 from kvochko/sos_tests
noahfalk [Tue, 17 May 2016 22:10:20 +0000 (15:10 -0700)]
Merge pull request dotnet/coreclr#4954 from kvochko/sos_tests

Added tests for libsosplugin

Commit migrated from https://github.com/dotnet/coreclr/commit/4da260c3ffe401021b2e16dc8e29d4261c13da54

8 years agoupdating model.corlib.xml
tijoytom [Tue, 17 May 2016 22:03:35 +0000 (15:03 -0700)]
updating model.corlib.xml

Commit migrated from https://github.com/dotnet/coreclr/commit/20f179df2381b31f3bb6e9d36a8fce8e692d93bb

8 years agoMerge branch 'master' of https://github.com/dotnet/coreclr
tijoytom [Tue, 17 May 2016 22:01:38 +0000 (15:01 -0700)]
Merge branch 'master' of https://github.com/dotnet/coreclr

Commit migrated from https://github.com/dotnet/coreclr/commit/417f93764b1ab79e4c048db626b90a8ec7d6e18e

8 years agoMerge pull request dotnet/coreclr#5023 from wtgodbe/pipeline
William Godbe [Tue, 17 May 2016 21:07:45 +0000 (14:07 -0700)]
Merge pull request dotnet/coreclr#5023 from wtgodbe/pipeline

Add dev workflow scripts for build pipeline

Commit migrated from https://github.com/dotnet/coreclr/commit/ef78a67d1ced9fdf25beed75845c687951b46fcf

8 years agoAdd dev workflow scripts for build pipeline
wtgodbe [Wed, 27 Apr 2016 21:35:45 +0000 (14:35 -0700)]
Add dev workflow scripts for build pipeline

Commit migrated from https://github.com/dotnet/coreclr/commit/8568bf1d9722657c602a1f1fe0148e28a93ea8ce

8 years agoMerge pull request dotnet/coreclr#4874 from gkhanna79/SPC_S1
AlexGhiondea [Tue, 17 May 2016 20:45:59 +0000 (13:45 -0700)]
Merge pull request dotnet/coreclr#4874 from gkhanna79/SPC_S1

Add support for System.Private.CoreLib to be core library

Commit migrated from https://github.com/dotnet/coreclr/commit/41a4ad5054cf877db6aa331855b43ad8678a93ad

8 years agoMerge pull request dotnet/coreclr#4999 from sejongoh/avoid_ti_method_check
Sejong Oh [Tue, 17 May 2016 20:35:32 +0000 (13:35 -0700)]
Merge pull request dotnet/coreclr#4999 from sejongoh/avoid_ti_method_check

Add typeInfo::GetMehtod2 to avoid checking GetType == TI_METHOD.

Commit migrated from https://github.com/dotnet/coreclr/commit/80f3d4f3a73abff6c90b331bc7b3eb97d365cf2c

8 years agoEncapsulate or replace references to CORINFO_PAGE_SIZE.
Pat Gavlin [Mon, 16 May 2016 21:05:17 +0000 (14:05 -0700)]
Encapsulate or replace references to CORINFO_PAGE_SIZE.

This symbol will be replaced with a new field in CORINFO_EE_INFO as part of dotnet/coreclr#4912.
These changes prepare the JIT and EE for that change by (respectively) encapsulating
references to CORINFO_PAGE_SIZE in Compiler::eeGetPageSize and replacing
CORINFO_PAGE_SIZE with OS_PAGE_SIZE.

Commit migrated from https://github.com/dotnet/coreclr/commit/e8ee195d3fc8e6cbece1e0a69fc0586149a21a2f

8 years agoRemove jitOnDllProcess{Attach,Detach}.
Pat Gavlin [Tue, 17 May 2016 16:05:04 +0000 (09:05 -0700)]
Remove jitOnDllProcess{Attach,Detach}.

These functions have been obviated by a more clearly-defined JIT
startup and shutdown interface.

This fixes a crash in coreclr.dll during DLL unload: the runtime was
calling jitOnDllProcessDetach (which calls jitShutdown) without having
called jitStartup to initialized the JIT.

Commit migrated from https://github.com/dotnet/coreclr/commit/265a27c75cada08509a5f0474cdb2938902370c0

8 years agoImplementing the Unix calling convention for the generic dictionary access stubs...
Fadi Hanna [Tue, 17 May 2016 18:51:14 +0000 (11:51 -0700)]
Implementing the Unix calling convention for the generic dictionary access stubs in R2R (dotnet/coreclr#4998)

Commit migrated from https://github.com/dotnet/coreclr/commit/182bea3c657856c90e9c5c0bab32bdc63c35352e

8 years agoAdd typeInfo::GetMehtod2 to avoid checking GetType == TI_METHOD.
Sejong OH [Mon, 16 May 2016 22:42:07 +0000 (15:42 -0700)]
Add typeInfo::GetMehtod2 to avoid checking GetType == TI_METHOD.

If FEATURE_CORECLR is enabled, the pointer type is not known to be a method pointer type when GetMethod is called in the importer.

Commit migrated from https://github.com/dotnet/coreclr/commit/5e664c56ec991b9d73a00a0628e114d0c2b0dfec

8 years agoMerge pull request dotnet/coreclr#4789 from sejongoh/always_download_coredistools
Sejong Oh [Tue, 17 May 2016 18:16:27 +0000 (11:16 -0700)]
Merge pull request dotnet/coreclr#4789 from sejongoh/always_download_coredistools

Always download coredistools package

Commit migrated from https://github.com/dotnet/coreclr/commit/bdae3b2145cd0b427cd0efb4d254f10655133fe7

8 years agoMerge pull request dotnet/coreclr#5008 from yizhang82/dllimportpath-fix2
Yi Zhang (CLR) [Tue, 17 May 2016 17:12:04 +0000 (10:12 -0700)]
Merge pull request dotnet/coreclr#5008 from yizhang82/dllimportpath-fix2

Enable DefaultDllImportSearchPathsAttribute in CoreCLR Windows. Host …

Commit migrated from https://github.com/dotnet/coreclr/commit/a47cf1cba1018875aff41f90bc8eddef7963218d

8 years agoMerge pull request dotnet/coreclr#5002 from CarolEidt/Long32Doc
Carol Eidt [Tue, 17 May 2016 16:41:30 +0000 (09:41 -0700)]
Merge pull request dotnet/coreclr#5002 from CarolEidt/Long32Doc

Document about supporting long on 32-bit architectures.

Commit migrated from https://github.com/dotnet/coreclr/commit/0f8053d72670ce815f49906c98deeb5f71f4a1c1

8 years agoOptimize Array.GetLength, GetUpperBound, GetLowerBound (dotnet/coreclr#4993)
James Ko [Tue, 17 May 2016 15:46:08 +0000 (11:46 -0400)]
Optimize Array.GetLength, GetUpperBound, GetLowerBound (dotnet/coreclr#4993)

... if the argument is 0. As the rank will always be greater, this is safe.

Commit migrated from https://github.com/dotnet/coreclr/commit/ee683a09634c967240bd63b3c925d6a99e0ac014

8 years agoUpdate StringObject comment in object.h (dotnet/coreclr#5011)
Matt Warren [Tue, 17 May 2016 15:42:25 +0000 (16:42 +0100)]
Update StringObject comment in object.h (dotnet/coreclr#5011)

* m_ArrayLength is no longer present (I did a search of the source and couldn't find it), so this comment is misleading.
* Also removing mis-leading comment about high two bits of field

Commit migrated from https://github.com/dotnet/coreclr/commit/1cb362e337c062a6f5945e6c8afd18b6830aeb75

8 years agoMove notion of restricted physical memory behind the GCToOSInterface (dotnet/coreclr...
Jan Kotas [Tue, 17 May 2016 15:36:57 +0000 (08:36 -0700)]
Move notion of restricted physical memory behind the GCToOSInterface (dotnet/coreclr#5007)

Commit migrated from https://github.com/dotnet/coreclr/commit/0f94239fadf20295b4fc7e8935ffd27a289f9d5e

8 years agoMerge pull request dotnet/coreclr#4997 from RussKeldorph/fix3379
Russ Keldorph [Tue, 17 May 2016 15:32:15 +0000 (08:32 -0700)]
Merge pull request dotnet/coreclr#4997 from RussKeldorph/fix3379

Rename some IL tests whose names conflicted with C# tests

Commit migrated from https://github.com/dotnet/coreclr/commit/8162628ae3bcbe805abf9266f67d4c42880bc2e8

8 years agoEnable DefaultDllImportSearchPathsAttribute in CoreCLR Windows. Host NATIVE_DLL_SEARC...
Yi Zhang (CLR) [Wed, 4 May 2016 06:02:10 +0000 (23:02 -0700)]
Enable DefaultDllImportSearchPathsAttribute in CoreCLR Windows. Host NATIVE_DLL_SEARCH_DIRECTORIES has higher priority.

Commit migrated from https://github.com/dotnet/coreclr/commit/8c85c81d4a0cb4d2ba9fd14fdcbce51c9d715e25

8 years agoMerge pull request dotnet/coreclr#5003 from jkotas/corert-gc
Jan Kotas [Tue, 17 May 2016 05:46:36 +0000 (22:46 -0700)]
Merge pull request dotnet/coreclr#5003 from jkotas/corert-gc

Update GC from CoreRT

Commit migrated from https://github.com/dotnet/coreclr/commit/4941764c8ee3812f7f3cce36ad258d3c0b10d3b3

8 years agoInitial change to support System.Private.CoreLib.dll as Core Library.
Gaurav Khanna [Mon, 9 May 2016 22:57:44 +0000 (15:57 -0700)]
Initial change to support System.Private.CoreLib.dll as Core Library.

Commit migrated from https://github.com/dotnet/coreclr/commit/54d45a3f4ed052ddc23d367e2cd46a7c7eb831ea

8 years agoMerge pull request dotnet/coreclr#4975 from kspawa/ldiv
Kshama Pawar [Tue, 17 May 2016 02:25:33 +0000 (19:25 -0700)]
Merge pull request dotnet/coreclr#4975 from kspawa/ldiv

Replace ldiv with normal division for PAL

Commit migrated from https://github.com/dotnet/coreclr/commit/8da89acc3a4f5a57a7346d627ddab32e86b442f4

8 years agoAlways download coredistools package
Sejong Oh [Wed, 4 May 2016 21:06:16 +0000 (14:06 -0700)]
Always download coredistools package

runtest.sh/cmd currently downloads the coredistools package if COMPlus_GCStress variable is set by TestEnv or test-env options. This is a bit complicated and this doesn't work with a new option for GC stress testing in build/buildtest.cmd. This changeset moves downloading the coredistools package to buildtest.cmd where it takes gcstress option and downloads other packages.

Linux build doesn't have buildtest.sh, so package donwloading is still in
runtest.sh

Commit migrated from https://github.com/dotnet/coreclr/commit/3fa109c73de2b56059f8b7204503efab40d66d86

8 years agoUpdate GC from CoreRT
Jan Kotas [Mon, 16 May 2016 23:50:07 +0000 (16:50 -0700)]
Update GC from CoreRT

https://github.com/dotnet/corert/tree/master/src/Native/gc dotnet/coreclr@854b9ea7accfbd24423a10382c1a5a2bd6753450

Commit migrated from https://github.com/dotnet/coreclr/commit/8348ba3744cefc37460147f1540165fba27833e7

8 years agoRename some IL tests whose names conflicted with C# tests
Russ Keldorph [Mon, 16 May 2016 22:23:15 +0000 (15:23 -0700)]
Rename some IL tests whose names conflicted with C# tests

For catchrettoinnertry, we appeared to have some redundant test projects.
I removed the redundant ones and cleaned up the remaining.

Fixes dotnet/coreclr#3379

Commit migrated from https://github.com/dotnet/coreclr/commit/e3160d95cfb337c051c8e5873055981d9b0d7aac

8 years agoDocument about supporting long on 32-bit architectures.
Carol Eidt [Tue, 17 May 2016 00:03:30 +0000 (17:03 -0700)]
Document about supporting long on 32-bit architectures.

Commit migrated from https://github.com/dotnet/coreclr/commit/d964a04e363998f06665a2eaf7afef1ff532f94a

8 years agoMerge pull request dotnet/coreclr#4962 from CarolEidt/FixIssue3964
Carol Eidt [Mon, 16 May 2016 23:29:13 +0000 (16:29 -0700)]
Merge pull request dotnet/coreclr#4962 from CarolEidt/FixIssue3964

Fix CircleInConvex to check result within 1 ULP

Commit migrated from https://github.com/dotnet/coreclr/commit/b0de8b0bc7c1274442ed8a64d41d72c7c2a0f8c3

8 years agoMerge pull request dotnet/coreclr#4620 from dagood/remove-infer-runtimes
Davis Goodin [Mon, 16 May 2016 22:28:47 +0000 (17:28 -0500)]
Merge pull request dotnet/coreclr#4620 from dagood/remove-infer-runtimes

Remove --infer-runtimes restore argument

Commit migrated from https://github.com/dotnet/coreclr/commit/d84bcf4426bdff27b2b06137c6816861970f0f43

8 years agoMerge pull request dotnet/coreclr#4985 from adiaaida/2442
Michelle McDaniel [Mon, 16 May 2016 22:03:35 +0000 (15:03 -0700)]
Merge pull request dotnet/coreclr#4985 from adiaaida/2442

Update Boxing\xlang projs with correct project includes

Commit migrated from https://github.com/dotnet/coreclr/commit/6180404fa0227614338c01e656e32dcee8757455

8 years agoReenable NativeCallable test on x86.
Aditya Mandaleeka [Mon, 16 May 2016 21:31:05 +0000 (14:31 -0700)]
Reenable NativeCallable test on x86.

Commit migrated from https://github.com/dotnet/coreclr/commit/513b5db7e0e9745ed538e3c1857c5601f01d793c

8 years agoMerge pull request dotnet/coreclr#4982 from LLITCHEV/Issue4853
Lubomir Litchev [Mon, 16 May 2016 20:42:06 +0000 (13:42 -0700)]
Merge pull request dotnet/coreclr#4982 from LLITCHEV/Issue4853

Remove invalid tests.

Commit migrated from https://github.com/dotnet/coreclr/commit/b6af6ea39a20cfd1fe2630c555693bd3b1fd06df

8 years agoUpdate sin projs with correct project includes
Michelle McDaniel [Fri, 13 May 2016 15:15:20 +0000 (08:15 -0700)]
Update sin projs with correct project includes

All of the xlang sin ilprojs were missing includes to the correct
references. This change updates the proj files with those
ProjectReferences. Additionally, this change updates the includes in the
il tests to match the name of sinlib assemblies.

Fixes dotnet/coreclr#2442.

Commit migrated from https://github.com/dotnet/coreclr/commit/2c648cae7d94091ea4ae005dead77d6d6e474878

8 years agoMerge pull request dotnet/coreclr#4965 from adiaaida/disableRegPair
Michelle McDaniel [Mon, 16 May 2016 19:47:52 +0000 (12:47 -0700)]
Merge pull request dotnet/coreclr#4965 from adiaaida/disableRegPair

Disable RegPair for x86 Longs

Commit migrated from https://github.com/dotnet/coreclr/commit/ac9360d0569c498e4032c49462dd064b699fe185

8 years agoFix CircleInConvex to check result within 1 ULP
Carol Eidt [Fri, 13 May 2016 17:57:18 +0000 (10:57 -0700)]
Fix CircleInConvex to check result within 1 ULP

This test was checking for the result to be within epsilon of the
expected result, but this is not correct unless the algorithm is
evaluating all interim results to a larger precision.
It would also be more reasonable for the test to compute the expected
result (e.g. using an alternate algorithm), and it would also be nice
to have a method to compute ULP for a given value, but those are beyond
the scope of this fix.
Re-enable the test except for RyuJIT/x86.

Fix dotnet/coreclr#3964

Commit migrated from https://github.com/dotnet/coreclr/commit/cde5a27915541a3d9388d4c16145e1b67441a3f6

8 years agoMerge pull request dotnet/coreclr#4905 from JeremyKuhne/JeremyKuhne-buildupdate
Jeremy Kuhne [Mon, 16 May 2016 18:52:36 +0000 (11:52 -0700)]
Merge pull request dotnet/coreclr#4905 from JeremyKuhne/JeremyKuhne-buildupdate

Update windows instructions

Commit migrated from https://github.com/dotnet/coreclr/commit/8309b5b86a24cfa2879d58bcc84e2ac4dc98a036

8 years agoMerge pull request dotnet/coreclr#4978 from ellismg/add-fedora-23
Matt Ellis [Mon, 16 May 2016 18:19:23 +0000 (11:19 -0700)]
Merge pull request dotnet/coreclr#4978 from ellismg/add-fedora-23

Add Fedora 23 runs

Commit migrated from https://github.com/dotnet/coreclr/commit/76b78407b9038c8fe0d4adb7d1b0280eedd5ce6e

8 years agoRenaming ZeroFreeAllocMemUTF8 to ZeroFreeCoTaskMemUTF8
tijoytk [Mon, 16 May 2016 17:41:23 +0000 (10:41 -0700)]
Renaming ZeroFreeAllocMemUTF8 to ZeroFreeCoTaskMemUTF8

Commit migrated from https://github.com/dotnet/coreclr/commit/42929098cb110c62a2605cdf789239950e85dadf

8 years agoMerge remote-tracking branch 'origin/master' into Issue4853
Lubomir Litchev [Mon, 16 May 2016 17:35:30 +0000 (10:35 -0700)]
Merge remote-tracking branch 'origin/master' into Issue4853

Conflicts:
tests/testsFailingOutsideWindows.txt

Commit migrated from https://github.com/dotnet/coreclr/commit/f99d8d5a2f1bcee49a8975ec86182e95629f074f

8 years agoMerge pull request dotnet/coreclr#4974 from RussKeldorph/xfails
Russ Keldorph [Mon, 16 May 2016 17:24:42 +0000 (10:24 -0700)]
Merge pull request dotnet/coreclr#4974 from RussKeldorph/xfails

Test cleanup (mostly non-Windows failures)

Commit migrated from https://github.com/dotnet/coreclr/commit/fc908d4d4e12bc6799e45f989e40c35df3c524aa

8 years agoDisable RegPair for x86 Longs
Michelle McDaniel [Fri, 13 May 2016 15:35:23 +0000 (08:35 -0700)]
Disable RegPair for x86 Longs

We are not using regpairs for longs on x86 ryujit, so we need to turn off
CPU_LONG_USES_REGPAIR. This is the first step to getting var = call for
GT_CALLs with long return types on x86.

Commit migrated from https://github.com/dotnet/coreclr/commit/f11e4f4f49162e33e46614c4d3a3c36584eca2f4

8 years agoAdd runtimes to each project.json in tests/src missing a runtimes section.
Davis Goodin [Wed, 27 Apr 2016 16:42:54 +0000 (11:42 -0500)]
Add runtimes to each project.json in tests/src missing a runtimes section.

Commit migrated from https://github.com/dotnet/coreclr/commit/7dbb65b43ae67e46d4ccd8a3df128c5c7db1ae6a

8 years agoRemove --infer-runtimes restore arg: runtimes specified in project.json files.
Davis Goodin [Tue, 26 Apr 2016 23:17:22 +0000 (18:17 -0500)]
Remove --infer-runtimes restore arg: runtimes specified in project.json files.

Commit migrated from https://github.com/dotnet/coreclr/commit/90bea6f3ed374a1bc6041e31cf3bdca06ac93dc4

8 years agoAdded a README with instructions on running and writing tests.
Andrey Kvochko [Mon, 16 May 2016 12:07:14 +0000 (15:07 +0300)]
Added a README with instructions on running and writing tests.

Commit migrated from https://github.com/dotnet/coreclr/commit/86bc1b7b031201d935c3e97ed038e8b2f8e225c8

8 years agoMerge remote-tracking branch 'origin/master' into Issue4853
Lubomir Litchev [Mon, 16 May 2016 06:42:55 +0000 (23:42 -0700)]
Merge remote-tracking branch 'origin/master' into Issue4853

Conflicts:
tests/issues.targets
tests/src/JIT/Methodical/cctor/misc/tail.il
tests/src/JIT/Methodical/cctor/misc/threads3.il
tests/src/JIT/Methodical/cctor/simple/precise3.il
tests/x86_legacy_backend_issues.targets

Commit migrated from https://github.com/dotnet/coreclr/commit/b802f5398c52f2b87f8a684d8aebb713f605b0de

8 years agoMerge pull request dotnet/coreclr#4969 from gkhanna79/RelaxALC
Gaurav Khanna [Mon, 16 May 2016 03:55:02 +0000 (20:55 -0700)]
Merge pull request dotnet/coreclr#4969 from gkhanna79/RelaxALC

Enable overriding assemblies from TPA

Commit migrated from https://github.com/dotnet/coreclr/commit/71fe847d72f7b6a4d019c3bd2715ceba3bc1b33b

8 years agoRemove invalid tests.
Lubomir Litchev [Sun, 15 May 2016 22:54:30 +0000 (15:54 -0700)]
Remove invalid tests.

See comments at issue dotnet/coreclr#4853 for the why these tests are invalid.

Other tests in the same directories are covering the valid cases, so
removing these.

Fixes dotnet/coreclr#4853

Commit migrated from https://github.com/dotnet/coreclr/commit/89266652a8ff548cb676cabe4247374ba13faaa8

8 years agoMerge pull request dotnet/coreclr#4979 from dotnet-bot/from-tfs
Jan Kotas [Sun, 15 May 2016 19:57:06 +0000 (12:57 -0700)]
Merge pull request dotnet/coreclr#4979 from dotnet-bot/from-tfs

Merge changes from TFS

Commit migrated from https://github.com/dotnet/coreclr/commit/06e38c02a88c6d0f290bacf7900eab1a523a0ccb

8 years agoEnable overriding assemblies from TPA
Gaurav Khanna [Fri, 13 May 2016 16:55:19 +0000 (09:55 -0700)]
Enable overriding assemblies from TPA

Commit migrated from https://github.com/dotnet/coreclr/commit/dd9317c7958f4fb65f45420433c587ea5e122ab2

8 years agoFix arm and x86 build breaks
Jan Kotas [Sun, 15 May 2016 07:28:02 +0000 (00:28 -0700)]
Fix arm and x86 build breaks

[tfs-changeset: 1604843]

Commit migrated from https://github.com/dotnet/coreclr/commit/80948d58cdbd98c0027774cc9fab472f620ff3c6

8 years agoAdd Fedora 23 runs
Matt Ellis [Sun, 15 May 2016 06:54:21 +0000 (23:54 -0700)]
Add Fedora 23 runs

Commit migrated from https://github.com/dotnet/coreclr/commit/b6b262866dc8681a04fc689c73e903f1c90b6568

8 years agoRemove unneeded INLINE_NDIRECT and INLINE_PINVOKE #ifdefs (dotnet/coreclr#4977)
Bruce Forstall [Sun, 15 May 2016 06:53:51 +0000 (23:53 -0700)]
Remove unneeded INLINE_NDIRECT and INLINE_PINVOKE #ifdefs (dotnet/coreclr#4977)

Commit migrated from https://github.com/dotnet/coreclr/commit/a3777d85f0c65a552b0f3d9e43035ffaca14261d

8 years agoMerge pull request dotnet/coreclr#4976 from dotnet-bot/from-tfs
Matt Ellis [Sun, 15 May 2016 06:09:52 +0000 (23:09 -0700)]
Merge pull request dotnet/coreclr#4976 from dotnet-bot/from-tfs

Merge changes from TFS

Commit migrated from https://github.com/dotnet/coreclr/commit/bd7549da15efca09231ac09091c7b8b1a9c29f17