diff options
| author | Andrew Trick <atrick@apple.com> | 2013-03-26 21:36:39 +0000 |
|---|---|---|
| committer | Andrew Trick <atrick@apple.com> | 2013-03-26 21:36:39 +0000 |
| commit | e97978f94ca53f22cb01bac1ef3c268f89f68e1d (patch) | |
| tree | abbeb9b636712f9f8f81d38c83efaa1aa6b1e7d8 /llvm/utils/TableGen/CodeGenSchedule.cpp | |
| parent | 1fa2f945ea6e8efef2e9f73833af5550f1b8a1ad (diff) | |
| download | bcm5719-llvm-e97978f94ca53f22cb01bac1ef3c268f89f68e1d.tar.gz bcm5719-llvm-e97978f94ca53f22cb01bac1ef3c268f89f68e1d.zip | |
TableGen SubtargetEmitter fix to allow A9 and Swift to coexist.
Allow variants to be defined only for some processors on a target.
llvm-svn: 178074
Diffstat (limited to 'llvm/utils/TableGen/CodeGenSchedule.cpp')
| -rw-r--r-- | llvm/utils/TableGen/CodeGenSchedule.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenSchedule.cpp b/llvm/utils/TableGen/CodeGenSchedule.cpp index 227019d97a2..818fce2048c 100644 --- a/llvm/utils/TableGen/CodeGenSchedule.cpp +++ b/llvm/utils/TableGen/CodeGenSchedule.cpp @@ -1308,7 +1308,7 @@ void CodeGenSchedModels::inferFromRW(const IdxVec &OperWrites, const IdxVec &OperReads, unsigned FromClassIdx, const IdxVec &ProcIndices) { - DEBUG(dbgs() << "INFER RW: "); + DEBUG(dbgs() << "INFER RW proc("; dumpIdxVec(ProcIndices); dbgs() << ") "); // Create a seed transition with an empty PredTerm and the expanded sequences // of SchedWrites for the current SchedClass. @@ -1650,6 +1650,13 @@ void CodeGenSchedClass::dump(const CodeGenSchedModels* SchedModels) const { } } dbgs() << "\n ProcIdx: "; dumpIdxVec(ProcIndices); dbgs() << '\n'; + if (!Transitions.empty()) { + dbgs() << "\n Transitions for Proc "; + for (std::vector<CodeGenSchedTransition>::const_iterator + TI = Transitions.begin(), TE = Transitions.end(); TI != TE; ++TI) { + dumpIdxVec(TI->ProcIndices); + } + } } void PredTransitions::dump() const { |

