[CodeGen] Pass SDAG an ORE, and replace FastISel stats with remarks.
authorAhmed Bougacha <ahmed.bougacha@gmail.com>
Thu, 30 Mar 2017 17:49:58 +0000 (17:49 +0000)
committerAhmed Bougacha <ahmed.bougacha@gmail.com>
Thu, 30 Mar 2017 17:49:58 +0000 (17:49 +0000)
commit6dd6082472d11b1e1af21e4e4e0789e49de56537
treed3568f4534b99b6d20fca15bfde4f017d56a1cd4
parent48c74b35d1297cfeb8a8527b56a62c3a7bdafb8b
[CodeGen] Pass SDAG an ORE, and replace FastISel stats with remarks.

In the long-term, we want to replace statistics with something
finer-grained that lets us gather per-function data.
Remarks are that replacement.

Create an ORE instance in SelectionDAGISel, and pass it to
SelectionDAG.

SelectionDAG was used so that we can emit remarks from all
SelectionDAG-related code, including TargetLowering and DAGCombiner.
This isn't used in the current patch but Adam tells me he's interested
for the fp-contract combines.

Use the ORE instance to emit FastISel failures as remarks (instead of
the mix of dbgs() dumps and statistics that we currently have).

Eventually, we want to have an API that tells us whether remarks are
enabled (http://llvm.org/PR32352) so that we don't emit expensive
remarks (in this case, dumping IR) when it's not needed.  For now, use
'isEnabled' as a crude replacement.

This does mean that the replacement for '-fast-isel-verbose' is now
'-pass-remarks-missed=isel'.  Additionally, clang users also need to
enable remark diagnostics, using '-Rpass-missed=isel'.

This also removes '-fast-isel-verbose2': there are no static statistics
that we want to only enable in asserts builds, so we can always use
the remarks regardless of the build type.

Differential Revision: https://reviews.llvm.org/D31405

llvm-svn: 299093
llvm/include/llvm/CodeGen/SelectionDAG.h
llvm/include/llvm/CodeGen/SelectionDAGISel.h
llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
llvm/test/CodeGen/AArch64/fast-isel-tail-call.ll
llvm/test/CodeGen/Mips/Fast-ISel/check-disabled-mcpus.ll
llvm/test/CodeGen/Mips/Fast-ISel/fastcc-miss.ll
llvm/test/CodeGen/X86/fast-isel-x86-64.ll
llvm/test/CodeGen/X86/fast-isel-x86.ll