summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-02-14Remove never defined FEATURE_REMOTINGdanmosemsft122-10649/+12
2017-02-14Remove never defined FEATURE_REFLECTION_ONLY_LOADdanmosemsft15-439/+0
2017-02-14Remove never defined FEATURE_PLSdanmosemsft3-146/+0
2017-02-14Remove never defined FEATURE_PERFMONdanmosemsft2-674/+0
2017-02-14Remove never defined FEATURE_NON_UNICODE_CODE_PAGESdanmosemsft1-143/+0
2017-02-14Remove never defined FEATURE_MULTIMODULE_ASSEMBLIESdanmosemsft17-2049/+0
2017-02-14Remove never defined FEATURE_MIXEDMODEdanmosemsft36-3248/+2
2017-02-14Remove never defined FEATURE_METHOD_RENTALdanmosemsft3-15/+0
2017-02-14Remove never defined FEATURE_METADATA_STANDALONE_WINRTdanmosemsft10-51/+19
2017-02-14Remove never defined FEATURE_METADATA_STANDALONE_WINRT_ROdanmosemsft5-68/+6
2017-02-14Remove never defined FEATURE_LEAK_CULTURE_INFOdanmosemsft8-177/+0
2017-02-14Remove never defined FEATURE_ISOSTOREdanmosemsft7-1317/+0
2017-02-14Remove never defined FEATURE_INCLUDE_ALL_INTERFACESdanmosemsft46-5650/+20
2017-02-14Remove never defined FEATURE_IMPERSONATIONdanmosemsft5-48/+0
2017-02-14Remove never defined FEATURE_IDENTITY_REFERENCEdanmosemsft1-14/+0
2017-02-14Merge pull request #9584 from wtgodbe/chmodWilliam Godbe1-0/+1
chmod +x all .sh files before Helix execution
2017-02-14chmod +x all .sh files before Helix executionwtgodbe1-0/+1
2017-02-14Merge pull request #9579 from dotnet-bot/master-UpdateDependenciesGaurav Khanna3-8/+8
Update CoreClr to beta-25014-03 (master)
2017-02-14Update CoreClr to beta-25014-03dotnet-bot3-8/+8
2017-02-14Merge pull request #9566 from pgavlin/MeasureIRPat Gavlin6-70/+137
Add IR size after certain phases to the JIT log.
2017-02-14Merge pull request #9575 from dotnet-bot/master-UpdateDependenciesGaurav Khanna14-21/+21
Update CoreClr, CoreFx to beta-25014-02, beta-25014-02, respectively (master)
2017-02-14Add case-insensitive String.Replace overloads (#9316)Erti-Chris Eelmaa15-9791/+10099
Added overloads for String.Replace so that they now accept StringComparison and CultureInfo as input parameters.
2017-02-14Merge pull request #9475 from jashook/lst_creator_updateJarret Shook3-1880/+25454
Update lst_creator and Arm64 lstFile
2017-02-14Update CoreClr, CoreFx to beta-25014-02, beta-25014-02, respectivelydotnet-bot14-21/+21
2017-02-14[x86/Linux] Fix IL Stub for Shared Generic (#9571)SaeHie Park1-6/+16
Fix parameter order in UnboxingILStub for Shared Generic
2017-02-13Merge pull request #9411 from hqueue/cross/commonGaurav Khanna1-10/+28
Use same logic to prepare rootfs across dotnet if possible
2017-02-13Merge pull request #9546 from parjong/fix/issue_9545Bruce Forstall1-1/+1
[x86/Linux] Ignore fake jump while checking funclet branches
2017-02-13Merge pull request #9572 from AndyAyersMS/FixTailCallStressAndy Ayers1-1/+2
Jit: fix gtIsRecursiveCall
2017-02-13Merge pull request #9573 from dotnet-bot/master-UpdateDependenciesGaurav Khanna12-13/+13
Update CoreFx to beta-25014-01 (master)
2017-02-13Merge pull request #9567 from fiigii/masterSivarv4-10/+67
Directly support Min/Max intrinsic for Vector<T> on SSE3_4 and above targets
2017-02-14Update CoreFx to beta-25014-01dotnet-bot12-13/+13
2017-02-13Jit: fix gtIsRecursiveCallAndy Ayers1-1/+2
When called from the inline compiler, this needs to look at the root method's handle, not the inlined method's handle. Fixes #9568.
2017-02-13Format code.Pat Gavlin2-5/+8
2017-02-13Merge pull request #9298 from noahfalk/r2rnoahfalk20-176/+612
Rejit support for R2R
2017-02-13Directly support Min/Max intrinsic for Vector<T> on SSE3_4 and above targetsFei Peng4-10/+67
2017-02-13Merge pull request #9483 from dotnet-bot/master-UpdateDependenciesWilliam Godbe14-21/+21
Update CoreClr, CoreFx to beta-25013-09, beta-25013-01, respectively (master)
2017-02-13Merge pull request #9551 from danmosemsft/dead2Dan Moseley50-27882/+6
Remove dead source files in vm\**
2017-02-13Merge pull request #9564 from pgavlin/ReportCodeSizePat Gavlin1-0/+4
Report code and GC info size in the JIT time log.
2017-02-13Update lst_creator.jashook3-1880/+25454
Generally refactoring, make it a little more robust and easier to use. In addition, expand its functionality to update the lstFile.
2017-02-13Add IR size after certain phases to the JIT log.Pat Gavlin6-70/+134
This change adds support for measuring and reporting the number of nodes in a function after a certain subset of the JIT's phases. This reporting is enabled by setting `COMPlus_JitMeasureIR` and `COMPlus_JtiTimeLogCsv` in conjunction with each other.
2017-02-13Merge pull request #9560 from JosephTremoulet/TypeToTypeVNJoseph Tremoulet3-0/+6
Value number TypeHandleToRuntimeType helper
2017-02-13Update CoreClr, CoreFx to beta-25013-09, beta-25013-01, respectivelydotnet-bot14-21/+21
2017-02-13Fix build breakdanmosemsft1-1/+1
2017-02-13Merge pull request #9562 from AndyAyersMS/FixMagicTypeEqualityAndy Ayers1-2/+25
Jit: fix for broken type equality optimization
2017-02-13Merge pull request #9563 from pgavlin/FixPrintCsvHeaderPat Gavlin1-0/+3
Fix `JitTimeLog::PrintCsvHeader`.
2017-02-13Rejit support for R2R imagesnoahfalk20-176/+612
Two changes: a) R2R code wasn't being reported to the Rejit Manager when it was used, this is a simple fix in prestub.cpp. This makes the ReJit API work. b) The bulk of the changes handle adding support for an inlining table to R2R so that ICorProfilerInfo6::EnumNgenMethodsInliningThisMethod can supply that information to profilers. This was only tested on Windows thus far, but there is no apparent reason this change would be OS specific.
2017-02-13Report code and GC info size in the JIT time log.Pat Gavlin1-0/+4
Just what it says on the tin.
2017-02-13[x86/Linux] Fix incorrect update in HijackFrame::UpdateRegDisplay (#9448)Jonghyun Park1-15/+14
* [x86/Linux] Fix incorrect update in HijackFrame::UpdateRegDisplay * Use ENUM_XXX_REGISTERS macro
2017-02-13Merge pull request #9561 from wtgodbe/suseRuntimesWilliam Godbe10-19/+9
Remove OpenSuse13.2 from runtime section in all Project.Jsons
2017-02-13Fix bytemark benchmark (#9497)Andy Ayers1-37/+40
I misunderstood how bytemark uses the `adjust` parameter and inadvertently enabled self-adjustment for the xunit-perf versions of these tests. Not surprisingly the results showed crazy run to run variations. Update these tests to set `adjust = 1` to stop the self-adjustment. Iteration and loop counts tweaked so that each test runs for roughly 1 second on the perf machines.