summaryrefslogtreecommitdiffstats
path: root/llvm/utils/schedcover.py
Commit message (Collapse)AuthorAgeFilesLines
* [MachineScheduler] Add itinerary to schedcover.py. Make default work in the ↵Craig Topper2018-03-271-7/+16
| | | | | | | | | | | | | | | | | | | | | command line filter Summary: This patch adds itinerary support to the schedcover.py script. I've been trying to use this script to figure out why SSE and AVX instructions are ending up in separate tablegen scheduler classes and sometimes its because we are using different itineraries. Rather than using None to indicate the default scheduler model, I now use the string "default". I had to hack around the sorting a little to keep "default" at the beginning. But this also makes it so you can specify "default" on the command line to just get the defaults I also fixed the regular expression code so that the no_default wasn't evaluated twice. Reviewers: RKSimon, atrick, jmolloy, javed.absar Reviewed By: javed.absar Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D44834 llvm-svn: 328608
* [MISched] Python script to check coverage of misched infoJames Molloy2015-10-121-0/+77
This script prints a CSV of all misched models of a target when given the output of the debug output of subtarget using: llvm-tblgen --gen-subtarget --debug-only=subtarget-emitter ... With thanks to Dave Estes for mentioning the idea at the 2014 LLVM Developers' Meeting. Patch by Christof Douma! llvm-svn: 250020
OpenPOWER on IntegriCloud