Kyungwoo Lee [Fri, 22 Apr 2016 13:49:35 +0000 (06:49 -0700)]
ARM64: Fix Frame with VarArg
Fixes https://github.com/dotnet/coreclr/issues/4424
JIT homes incoming vararg (8) registers to the top of the stack.
When stack location is computed for local vars, JIT didn't
take it into consideration causing the overlapped stack
offsets for local vars and varargs. The stack offsets of local vars
corresponding to varargs should point to this home area instead of
the newly alloacted slot.
Mikhail Pilin [Fri, 22 Apr 2016 09:52:07 +0000 (11:52 +0200)]
Partly fix the build issue when path to git repository has spaces (for example "d:\z z\coreclr"). (#4388)
The same issue in "d:\z z\coreclr\Tools\versioning.targets"(288): $(IntermediateOutputPath) should be "$(IntermediateOutputPath.TrimEnd('\'))" and all other path should be quoted with " in this line.
Mark Hurd [Fri, 22 Apr 2016 09:49:10 +0000 (19:19 +0930)]
Update ParamArrayAttribute.cs (#4442)
A minor doc error (presumably some copy'n'paste issue).
Bruce Bowyer-Smyth [Fri, 22 Apr 2016 09:47:45 +0000 (19:47 +1000)]
Fixes https://github.com/dotnet/coreclr/issues/4252 (#4384)
Change Join and Concat to access iterator.Current value once. Delegate null checking to StringBuilder.Append
Jan Kotas [Fri, 22 Apr 2016 09:12:59 +0000 (02:12 -0700)]
Merge pull request #4501 from dotnet-bot/from-tfs
Merge changes from TFS
Sejong Oh [Fri, 22 Apr 2016 07:24:25 +0000 (00:24 -0700)]
Merge pull request #4398 from sejongoh/vector3_testcase
Vector3 Interop tests
Jan Kotas [Fri, 22 Apr 2016 04:03:29 +0000 (21:03 -0700)]
Remove __ConsoleStream from CoreCLR
[tfs-changeset: 1598441]
Gregg Miskelly [Fri, 22 Apr 2016 03:38:51 +0000 (20:38 -0700)]
Fix heap corruption in CPalSynchronizationManager::DoMonitorProcesses (#4454)
The PAL's WaitFor*Object support had a bug where if one waited on a process,
stopped, waiting and closed the process handle before the process exitted, then
later on when the process exitted it would corrupt the heap here:
LONG CPalSynchronizationManager::DoMonitorProcesses(
CPalThread * pthrCurrent)
{
...
if (lRemovingCount > 0)
{
...
// Set process status to PS_DONE
pNode->pProcLocalData->ps = PS_DONE;
The issue is that the local process data would be delete when the process
handle was closed. But the synchronization manager would still have a reference
to it.
To fix this, I changed the synchronization manager to hold onto the PAL object in
addition to the local process data.
Aditya Mandaleeka [Fri, 22 Apr 2016 03:35:46 +0000 (20:35 -0700)]
Remove GOLDEN macro. (#4484)
Swaroop Sridhar [Fri, 22 Apr 2016 00:54:48 +0000 (17:54 -0700)]
Merge pull request #4481 from swaroop-sridhar/aagc2
GCInfo: Fix code-offset normalization on ARM
James Ko [Fri, 22 Apr 2016 00:14:21 +0000 (20:14 -0400)]
Don't allocate in NullStream.CopyToAsync (#4383)
Sejong OH [Mon, 18 Apr 2016 10:31:33 +0000 (03:31 -0700)]
Vector3 Interop tests
The native type of Vector3 is struct {float x,y,z} whose size is 12 bytes. RyuJit uses 16-byte register or stack location to store a Vector3 variable with the assumptions below. New testcases are added to check whether RyuJit properly handle interop cases.
RyuJIt back-end makes two assumptions about Vector3 types.
Assumption1: Vector3 type args passed in registers or on stack is rounded to POINTER_SIZE and hence on 64-bit targets it can be read/written as if it were TYP_SIMD16.
Assumption2: Vector3 args passed in registers (e.g. unix) or on stack have their upper 4-bytes being zero. Similarly Vector3 return type value returned from a method will have its upper 4-bytes zeroed out.
Mike McLaughlin [Thu, 21 Apr 2016 22:59:46 +0000 (15:59 -0700)]
Merge pull request #4450 from mikem8361/shiminit
Fix dbgshim race conditions
William Godbe [Thu, 21 Apr 2016 22:35:41 +0000 (15:35 -0700)]
Merge pull request #4486 from wtgodbe/coverage
Move deletion of PAL tests to after they need to be run
wtgodbe [Thu, 21 Apr 2016 22:23:29 +0000 (15:23 -0700)]
Move deletion of PAL tests to after they need to be run
William Godbe [Thu, 21 Apr 2016 21:49:13 +0000 (14:49 -0700)]
Merge pull request #4444 from wtgodbe/covrTest
Add coverage test to CI that will run once a week
Maoni Stephens [Thu, 21 Apr 2016 21:47:28 +0000 (14:47 -0700)]
Merge pull request #4480 from Maoni0/enable_vh
enable heap verification for coreclr on all builds
Maoni0 [Thu, 21 Apr 2016 21:45:04 +0000 (14:45 -0700)]
enable heap verification for coreclr on all builds
Aditya Mandaleeka [Thu, 21 Apr 2016 21:38:38 +0000 (14:38 -0700)]
Merge pull request #4455 from adityamandaleeka/configKnobDoc
Update configuration knob documentation to reflect host configuration options
Swaroop Sridhar [Thu, 21 Apr 2016 21:00:26 +0000 (14:00 -0700)]
GCInfo: Fix code-offset normalization on ARM
Fix NORMALIZE_CODE_OFFSET() on ARM to be a loss-less encoding
because safepoint code-offsets are encoded with a -1 adjustment.
Rama krishnan Raghupathy [Thu, 21 Apr 2016 20:27:21 +0000 (13:27 -0700)]
Merge pull request #4458 from ramarag/CrossDefinitions
Correcting the definition for crosscomponents
Eugene Rozenfeld [Thu, 21 Apr 2016 20:22:46 +0000 (13:22 -0700)]
Merge pull request #4399 from erozenfeld/HandleConstantProp
Don't perform constant propagation when relocatable handles are involved
Sivarv [Thu, 21 Apr 2016 18:48:52 +0000 (11:48 -0700)]
Merge pull request #4451 from sivarv/stopforgc
Model kill set of CORINFO_HELP_STOP_FOR_GC correctly on unix.
Mike McLaughlin [Wed, 13 Apr 2016 20:42:51 +0000 (13:42 -0700)]
Fix dbgshim race conditions
There are two race conditions in the register runtime startup logic: 1) in
CreateProcess (or CreateProcessForLaunch) between the fork() and the execv()
where for VS and mdbg we "see" the coreclr module loaded because the debugger
process and newly created child have the same modules loaded. 2) in attach
between when the child/debuggee loads the coreclr module and when coreclr
finishes initializes the global dac table. In both causes DebugActiveProcess
returns an error when one of the race conditions is hit.
The fix is to create the "continue" named semaphore on the coreclr/debuggee
process side and dbgshim uses that to determine if the coreclr process is
ready and initialized. Fixes issue #4244.
Open the old continue semaphore name and if it doesn't exists create a the new
continue semaphore name for backwards compatibility (see issue 4410).
Do PAL initalization on entry to the public functions instead of the DLLMain handler
which will only be called if the PAL's LoadLibrary is used to load dbgshim. It will be
a lot easier on the debuggers like mdbg to just use dlopen/dlsym and not have to
also call DLLMain.
wtgodbe [Wed, 20 Apr 2016 17:14:30 +0000 (10:14 -0700)]
Add coverage test to CI that will run once a week
Andy Ayers [Thu, 21 Apr 2016 17:24:12 +0000 (10:24 -0700)]
Merge pull request #4453 from AndyAyersMS/InlineCleanup
Inliner: restore ability to dump jit time, plus some cleanup
Kyungwoo Lee [Thu, 21 Apr 2016 17:01:10 +0000 (10:01 -0700)]
Merge pull request #4472 from kyulee1/delarm64
Delete Non-Windows Arm64 Job
Kyungwoo Lee [Thu, 21 Apr 2016 16:21:09 +0000 (09:21 -0700)]
Delete Non-Windows Arm64 Job
Jose Perez Rodriguez [Thu, 21 Apr 2016 15:45:23 +0000 (08:45 -0700)]
Adding Versioning to Native components in non-Windows builds. (#4393)
Adding Versioning to Native components in non-Windows builds.
Kyungwoo Lee [Thu, 21 Apr 2016 14:47:32 +0000 (07:47 -0700)]
Merge pull request #4470 from kyulee1/ryutoclr
Package Name Update from RyuJit to ClrJit
Jan Kotas [Thu, 21 Apr 2016 14:40:57 +0000 (07:40 -0700)]
Merge pull request #4459 from brianrob/nativeimage_perfmap
Fix empty perf map files generated by crossgen
Kyungwoo Lee [Thu, 21 Apr 2016 14:40:05 +0000 (07:40 -0700)]
Name Update from RyuJit to ClrJit for or package
Kyungwoo Lee [Thu, 21 Apr 2016 13:49:35 +0000 (06:49 -0700)]
Merge pull request #4469 from kyulee1/ryujit8
RyuJit Version Update
Kyungwoo Lee [Thu, 21 Apr 2016 13:42:45 +0000 (06:42 -0700)]
RyuJit Version Update
Jan Kotas [Thu, 21 Apr 2016 06:05:24 +0000 (23:05 -0700)]
Merge pull request #4464 from Maoni0/docfix
added missing step in vs install
Maoni Stephens [Thu, 21 Apr 2016 04:57:57 +0000 (21:57 -0700)]
added missing step in vs install
Brian Robbins [Thu, 21 Apr 2016 04:10:16 +0000 (21:10 -0700)]
Fix empty perf map files generated by crossgen.
Rama Krishnan Raghupathy [Thu, 21 Apr 2016 03:05:07 +0000 (20:05 -0700)]
Correcting the definition for crosscomponents
Aditya Mandaleeka [Thu, 21 Apr 2016 01:31:49 +0000 (18:31 -0700)]
Update configuration docs to reflect host configuration options.
Brian Sullivan [Thu, 21 Apr 2016 01:28:04 +0000 (18:28 -0700)]
Merge pull request #4434 from briansull/struct16-abi
ARM64 Work Item 3817, 3524 - Struct16 decomposition
Pat Gavlin [Thu, 21 Apr 2016 00:34:45 +0000 (17:34 -0700)]
Merge pull request #4449 from pgavlin/JitBuildName
Change the names of the JIT products to `clrjit`.
Andy Ayers [Wed, 20 Apr 2016 23:35:20 +0000 (16:35 -0700)]
Inliner: restore ability to dump jit time, plus some cleanup
I zeroed out the jit time measurement when refactoring the data dumping
code to live in the InlineStrategy class, because it required adding a
helper to the Compiler class. Didn't mean to leave it this way, but did.
So, fixing it how I'd meant to all along.
Also, move a few of the inlining related constants and setup computation
over to InlineStrategy. I'd move `DEFAULT_MAX_INLINE_SIZE` too, but it
ends up getting used for some non-inlining purposes, so will hold off on
cleaning that part up.
Eugene Rozenfeld [Mon, 18 Apr 2016 23:04:05 +0000 (16:04 -0700)]
Don't perform constant propagation when relocatable handles are involved.
This change ensures that value-number-based constant propagation won't
attempt to propagate constants whose value calculations involve handles
when those handles are relocatable and have to be recorded with the VM.
DDR is clean.
4 methods are affected in SuperPMI:
33.09: Code Size improvements (code sizes in bytes):
33.09: <filename> baseline diff improvement %improvement #funcs
33.09: CLR_SH_1_Clean_Thin_Unique_all.dasm 41 49 -8 -19.51 1
33.09: 1 functions regressed (8 total bytes regression)
33.09: Regression # 1 goes from 41 to 49, diff of 8 (16.33%) :: <Module>:main():int
33.09: JIT_SH_Clean_Thin_Unique_all.dasm 3952 3973 -21 -0.53 9
33.09: 1 aggregated functions improved (4 total bytes improvement)
33.09: Improvement # 1 goes from 3056 to 3052, diff of 4 ( 0.13%) :: 7 x Exploit:ExploitTarget()
33.09: 2 functions regressed (25 total bytes regression)
33.09: Regression # 1 goes from 54 to 62, diff of 8 (12.90%) :: <Module>:main():int
33.09: Regression # 2 goes from 842 to 859, diff of 17 ( 1.98%) :: <Module>:BadFunc(long)
33.09: TOTAL 3993 4022 -29 -0.73 10
sivarv [Wed, 20 Apr 2016 23:36:53 +0000 (16:36 -0700)]
Model kill set of CORINFO_HELP_STOP_FOR_GC correctly on unix.
Andy Ayers [Wed, 20 Apr 2016 23:04:18 +0000 (16:04 -0700)]
Merge pull request #4427 from AndyAyersMS/InlineSizeAccumulation
Inliner: estimate overall code size impact
Pat Gavlin [Wed, 20 Apr 2016 22:31:53 +0000 (15:31 -0700)]
Change the names of the JIT products to `clrjit`.
- The static library to be linked into the CLR is now
`clrjit_static`
- The static library to be linked into crossgen is now
`clrjit_crossgen`
- The dynamic library is now `clrjit`
Jan Kotas [Wed, 20 Apr 2016 18:25:33 +0000 (11:25 -0700)]
Merge pull request #4443 from jkotas/gitignore
Add *.VC.db to .gitignore
Brian Sullivan [Tue, 19 Apr 2016 18:02:32 +0000 (11:02 -0700)]
ARM64 Work Item 3817, 3524 - Struct16 decomposition
Changes to support passing of MultiReg structs using GT_LISTs
Optional support for struct promotion for multireg structs:
To enable set FEATURE_MULTIREG_STRUCT_PROMOTE to 1
Morphs the 16-byte structs at the end of fgMorphArgs
Careful refactoring to avoid changes to UNIX_AMD64 code
Covers all of the 16-byte struct expansion cases in fgMorph
Added function header comments
Passing the tests for Arm64
No AsmDiffs for non-Arm64 targets.
Codegen uses Contained nodes for PUTARG_STK 16-byte stack args
Created a genPutArgStk method for Arm64
Updated Tests.lst with 16 additional passing tests
Kyungwoo Lee [Wed, 20 Apr 2016 18:04:39 +0000 (11:04 -0700)]
Merge pull request #4425 from kyulee1/cleantest2
ARM64: Another round of clean-up Tests.lst
Andy Ayers [Tue, 19 Apr 2016 18:34:06 +0000 (11:34 -0700)]
Inliner: estimate overall code size impact
Accumulate the per-inline size impact estimates into an overall inline
size impact estimate. No size budgeting (yet); this just provides data
for further study.
Pat Gavlin [Wed, 20 Apr 2016 17:21:01 +0000 (10:21 -0700)]
Merge pull request #4396 from pgavlin/AMD64UnwindHeader
Define the AMD64 unwind codes in their own header.
Kyungwoo Lee [Wed, 20 Apr 2016 16:58:17 +0000 (09:58 -0700)]
Merge pull request #4439 from kyulee1/winonly
ARM64: CI triggered by Push for Windows only
Jan Kotas [Wed, 20 Apr 2016 16:42:05 +0000 (09:42 -0700)]
Add *.VC.db to .gitignore
Russ Keldorph [Wed, 20 Apr 2016 16:18:51 +0000 (09:18 -0700)]
Merge pull request #4397 from RussKeldorph/reenable
Reenable tests per #3664
Russ Keldorph [Wed, 20 Apr 2016 16:17:45 +0000 (09:17 -0700)]
Merge pull request #4416 from RussKeldorph/cs8002
Suppress CS8002 for JIT test projects
Swaroop Sridhar [Wed, 20 Apr 2016 15:55:06 +0000 (08:55 -0700)]
Merge pull request #4377 from swaroop-sridhar/aagc1
ARM64: Fix GC encoding settings
Jan Vorlicek [Wed, 20 Apr 2016 14:44:45 +0000 (07:44 -0700)]
Merge pull request #4433 from krytarowski/netbsd-support-69
Fix issue building mscorlib.dll
Kyungwoo Lee [Wed, 20 Apr 2016 13:09:31 +0000 (06:09 -0700)]
ARM64: CI triggered by Push for Windows only
Rahul Kumar [Wed, 20 Apr 2016 05:40:03 +0000 (22:40 -0700)]
Merge pull request #4418 from rahku/arm64EnableCrossgen
Enable running crossgen as part of arm64 build
Jan Kotas [Wed, 20 Apr 2016 04:58:26 +0000 (21:58 -0700)]
Merge pull request #3879 from manu-silicon/xplat
Enable XplatEventLogger on all non-Windows platforms
Jan Kotas [Wed, 20 Apr 2016 03:20:32 +0000 (20:20 -0700)]
Merge pull request #4405 from yizhang82/delegate_fix
Fix SysV calling convention bug in interop. We need to treat delegate…
Brian Robbins [Wed, 20 Apr 2016 02:39:12 +0000 (19:39 -0700)]
Merge pull request #4387 from brianrob/ngenrundown
Add support for ready to run to NGEN rundown
Kamil Rytarowski [Wed, 20 Apr 2016 01:57:28 +0000 (03:57 +0200)]
Cast function pointer to void*
Fix issue building mscorlib.dll
/home/kamil/tmp/coreclr/src/vm/win32threadpool.cpp:2672:13: error: no matching function for call to 'FireEtwThreadPoolIOEnqueue'
FireEtwThreadPoolIOEnqueue((LPOVERLAPPED)waitInfo, Callback, (dwFlag & WAIT_SINGLE_EXECUTION) == 0, reinterpret_cast<void*>(GetClrInstanceId()));
^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/kamil/tmp/coreclr/bin/obj/Linux.x64.Debug/src/inc/clretwallmain.h:972:14: note: candidate function not viable: no known conversion from
'WAITORTIMERCALLBACK' (aka 'void (*)(void *, unsigned char)') to 'const void *' for 2nd argument; take the address of the argument with &
inline ULONG FireEtwThreadPoolIOEnqueue(
^
/home/kamil/tmp/coreclr/src/vm/win32threadpool.cpp:3236:13: error: no matching function for call to 'FireEtwThreadPoolIODequeue'
FireEtwThreadPoolIODequeue(waitInfo, waitInfo->Callback, reinterpret_cast<void*>(GetClrInstanceId()));
^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/kamil/tmp/coreclr/bin/obj/Linux.x64.Debug/src/inc/clretwallmain.h:985:14: note: candidate function not viable: no known conversion from
'WAITORTIMERCALLBACK' (aka 'void (*)(void *, unsigned char)') to 'const void *' for 2nd argument; take the address of the argument with &
inline ULONG FireEtwThreadPoolIODequeue(
^
Reported on Ubuntu-14.04.2 LTS with clang 3.8.0
Lakshmi Priya [Wed, 20 Apr 2016 01:47:05 +0000 (18:47 -0700)]
Merge pull request #4423 from Priya91/osxcorefx
Reflect osx innerloop changes from corefx.
Kyungwoo Lee [Tue, 19 Apr 2016 22:38:45 +0000 (15:38 -0700)]
ARM64: Another round of clean-up Tests.lst
- Removed UNREACHED category completely
- Tag more issues to failure cases
Lakshmi Priya Sekar [Tue, 19 Apr 2016 22:32:22 +0000 (15:32 -0700)]
Reflect osx innerloop changes from corefx.
Kyungwoo Lee [Tue, 19 Apr 2016 22:12:04 +0000 (15:12 -0700)]
Merge pull request #4414 from kyulee1/cleantest
ARM64: Clean Up Tests.lst
Rahul Kumar [Tue, 19 Apr 2016 14:52:22 +0000 (07:52 -0700)]
Enable running crossgen as part of arm64 build
Swaroop Sridhar [Fri, 15 Apr 2016 22:04:40 +0000 (15:04 -0700)]
ARM64: Fix GC encoding settings
This change fixes certain settings in the GCInfo encoder/decoders.
It also fixes the debug info for the stack pointer.
Kyungwoo Lee [Tue, 19 Apr 2016 18:11:03 +0000 (11:11 -0700)]
ARM64: Clean Up Tests.lst
- Remove all the issue tags that are resolved, or correct the issue number.
- Try to move UNSTABLE to either EXPECTED_PASS or EXPECTED_FAIL.
- Delete security transparency tests unavailable in .NET Core -- NonVirtualCall/OverwriterArray
Matt Mitchell [Tue, 19 Apr 2016 19:55:50 +0000 (12:55 -0700)]
Merge pull request #4415 from mmitche/update-ubuntu-deps
Update coreclr dependencies
Russ Keldorph [Tue, 19 Apr 2016 18:27:19 +0000 (11:27 -0700)]
Suppress CS8002 for JIT test projects
"Referenced assembly 'Foo, ...' does not have a strong name."
Happens when a .csproj has a ProjectReference for a .ilproj. It's not
particularly interesting to give these test assemblies strong names, so
I'm just suppressing the warning.
Fixes #4232
Fixes #4233
Fixes #4234
Fixes #4235
Fixes #4236
Fixes #4237
Matt Mitchell [Tue, 19 Apr 2016 18:26:47 +0000 (11:26 -0700)]
Update coreclr dependencies
Yi Zhang (CLR) [Tue, 19 Apr 2016 07:32:10 +0000 (00:32 -0700)]
Fix SysV calling convention bug in interop. We need to treat delegate field (NFT_DELEGATE) as INTEGER (as per SysV spec) since it is marshaled as a function pointer, otherwise we would end up passing it via stack which would cause all sorts of badness. Same for SAFEHANDLE/CRITICALHANDLE. It's not clear to me what the right semantics for DATE/CURRENCY is but they are Windows-only types, so we probably don't care yet.
This fixes MarshalStructAsLayoutSeq test on mac/linux.
Andy Ayers [Tue, 19 Apr 2016 06:21:02 +0000 (23:21 -0700)]
Merge pull request #4374 from AndyAyersMS/CheckToolRestore
Detect if powershell version is suitable for restoring build tools
Manu [Mon, 28 Mar 2016 01:47:28 +0000 (10:47 +0900)]
Enable XplatEventLogger on all non-Windows platforms
Because on non-Windows platform, we assume event tracing, we also requires
it to compile native code for non-Windows platform.
Event tracing is only enabled on AMD64 devices for now on Unix platforms.
Brian Robbins [Sun, 17 Apr 2016 21:56:12 +0000 (14:56 -0700)]
Add support for ready to run to NGEN rundown.
Rahul Kumar [Tue, 19 Apr 2016 05:18:43 +0000 (22:18 -0700)]
Merge pull request #4349 from rahku/master
enable build of cross target components.
This enables the build of following cross target components:
1. crossgen
2. mscordacore.dll
3. sos.dll
4. mscordbi.dll
This is currently only enabled for arm64 and generates x64 binaries. For cross builds it uses the same hierarchy of cmake files from source root folder. At the end of build, build calls cmake again to generate solution for cross build specifying both host & target arch. This PR adds host & target arch configuration in cmake. I decided to reuse CLR_CMAKE_PLATFORM_ARCH_* to be as the host arch and CLR_CMAKE_TARGET_ARCH_* to be as target arch. For non-cross builds they are one and same and differ in cross builds. I have also refactored root CMakeLists.txt into smaller files. Binaries for cross builds are placed at bin\product<OS.Arch.Type><hostArch> (eg for arm64 they will be at bin\product\OS.arm64.debug\x64)
Rahul Kumar [Tue, 12 Apr 2016 21:40:23 +0000 (14:40 -0700)]
enable build of cross target components.
Currently only enabled for arm64
Jan Kotas [Tue, 19 Apr 2016 04:54:30 +0000 (21:54 -0700)]
Merge pull request #3915 from hughbe/region-info-params
Add parameter names to RegionInfo constructor
Jan Kotas [Tue, 19 Apr 2016 04:53:06 +0000 (21:53 -0700)]
Merge pull request #3535 from hughbe/patch-3
Add parameter names to ArgumentExceptions in Guid
Jan Kotas [Tue, 19 Apr 2016 04:50:56 +0000 (21:50 -0700)]
Merge pull request #4247 from leemgs/upstream-cross-toolchain-unify2
Linux/ARM: Unifying the redundant usages of objcopy
Jan Kotas [Tue, 19 Apr 2016 04:41:33 +0000 (21:41 -0700)]
Merge pull request #4283 from krytarowski/netbsd-support-61
Implement GetEntrypointExecutableAbsolutePath() on NetBSD
Jan Kotas [Tue, 19 Apr 2016 04:38:47 +0000 (21:38 -0700)]
Merge pull request #4371 from krytarowski/netbsd-support-65
Add NetBSD support in dir.props
Jan Kotas [Tue, 19 Apr 2016 04:38:14 +0000 (21:38 -0700)]
Merge pull request #4348 from AndyAyersMS/FixPerfMapAV
Fix a segfault in perf map generation
Jan Kotas [Tue, 19 Apr 2016 04:37:40 +0000 (21:37 -0700)]
Merge pull request #4373 from krytarowski/netbsd-support-67
NetBSD: Assume GNU GCC compatible va_list in Clang/LLVM
Jan Kotas [Tue, 19 Apr 2016 04:33:44 +0000 (21:33 -0700)]
Merge pull request #4401 from dotnet-bot/from-tfs
Merge changes from TFS
noahfalk [Tue, 19 Apr 2016 01:40:33 +0000 (18:40 -0700)]
Merge pull request #4312 from mjsabby/muks/enable_rejit_xplat
Enable ReJIT on all platforms
Kyungwoo Lee [Tue, 19 Apr 2016 01:37:52 +0000 (18:37 -0700)]
Merge pull request #4392 from kyulee1/fixround
ARM64: Fix Round Operation
Kyungwoo Lee [Mon, 18 Apr 2016 17:42:51 +0000 (10:42 -0700)]
ARM64: Fix Round Operation
Math.Round is implemented as a target intrinsic for Arm64.
JIT emitted `frinta` which rounds the ties to away.
As described in MSDN
https://msdn.microsoft.com/en-us/library/system.math.round(v=vs.110).aspx#Round2_Example,
we should round the ties to even.
So, I corrected `frintn` instruction instead for such intrinsic expansion.
I've also identified that `EvalMathFuncUnary` incorrectly folds the round
operation when the argument is constant at the compile time.
The logic itself is not the right semantic as described above in MSDN.
I made a separate helper function which is essentially a duplicate of
classlib. This is not Arm64 specific fix but applies to all other targets.
So, I just fixed it while I'm here.
John Chen [Mon, 18 Apr 2016 23:38:39 +0000 (16:38 -0700)]
Fix nidump to avoid crashing while working with Ready to Run images
[tfs-changeset: 1597064]
Rahul Kumar [Mon, 18 Apr 2016 22:58:44 +0000 (15:58 -0700)]
Merge pull request #4394 from gkhanna79/VCRTArm64Fix
Fix Arm64 break
Russ Keldorph [Mon, 18 Apr 2016 22:24:14 +0000 (15:24 -0700)]
Merge pull request #4391 from RussKeldorph/buildarch
Build break: Replace $(Platform) with $(BuildArch) in arch-specific IL projects
Pat Gavlin [Thu, 31 Mar 2016 20:08:37 +0000 (13:08 -0700)]
Define the AMD64 unwind codes in their own header.
This matches the CFI unwind codes and allows the JIT to be more
precise about its includes.
Russ Keldorph [Mon, 18 Apr 2016 20:43:54 +0000 (13:43 -0700)]
Reenable tests
Pat Gavlin [Mon, 18 Apr 2016 20:06:30 +0000 (13:06 -0700)]
Merge pull request #4390 from pgavlin/JitCleanup
Cleanup some minor JIT issues.
Gaurav Khanna [Mon, 18 Apr 2016 19:49:49 +0000 (12:49 -0700)]
Fix Arm64 break
Aditya Mandaleeka [Mon, 18 Apr 2016 19:36:53 +0000 (12:36 -0700)]
Merge pull request #4370 from krytarowski/netbsd-support-64
Print message about detected NetBSD
Aditya Mandaleeka [Mon, 18 Apr 2016 19:36:27 +0000 (12:36 -0700)]
Merge pull request #4378 from krytarowski/netbsd-support-68
Implement GetProcessIdDisambiguationKey() for NetBSD
Bruce Forstall [Mon, 18 Apr 2016 18:07:38 +0000 (11:07 -0700)]
Merge pull request #4323 from BruceForstall/CLRABI
Add CLR ABI document to Book of the Runtime