aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-10-01Use StringRef in Pass/PassManager APIs (NFC)Mehdi Amini1-3/+1
llvm-svn: 283004
2016-09-23[ResetMachineFunction] Populate the comments in the header of the file.Quentin Colombet1-3/+6
NFC llvm-svn: 282276
2016-09-23[ResetMachineFunction] Add statistic on the number of reset functions.Quentin Colombet1-0/+4
As the development of GlobalISel move forward, this statistic should strictly decrease until it reaches zero. At this point, it would mean GlobalISel can replace SDISel (at least on the tested inputs :P). llvm-svn: 282275
2016-08-31[ResetMachineFunction] Emit the diagnostic isel fallback when asked.Quentin Colombet1-5/+14
This pass is now able to report when the function is being reset. llvm-svn: 280272
2016-08-27[GlobalISel] Add a fallback path to SDISel.Quentin Colombet1-0/+53
When global-isel fails on a MachineFunction MF, MF will be cleaned up and given to SDISel. Thanks to this fallback, we can already perform correctness test even if we support only a small portion of the functions in a test. llvm-svn: 279891