OSDN Git Service
(root)
/
android-x86
/
external-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d525df3
)
Let's try ignoring resource utilization on the backward pass.
author
Jim Laskey
<jlaskey@mac.com>
Mon, 7 Nov 2005 19:08:53 +0000
(19:08 +0000)
committer
Jim Laskey
<jlaskey@mac.com>
Mon, 7 Nov 2005 19:08:53 +0000
(19:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24231
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
index
1666f43
..
9a5e189
100644
(file)
--- a/
lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
+++ b/
lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
@@
-908,9
+908,11
@@
void SimpleSched::ScheduleBackward() {
// If independent of others (or first entry)
if (Slot == NotFound) Slot = 0;
+#if 0 // FIXME - measure later
// Find a slot where the needed resources are available
if (NI->StageBegin != NI->StageEnd)
Slot = Tally.FindAndReserve(Slot, NI->StageBegin, NI->StageEnd);
+#endif
// Set node slot
NI->Slot = Slot;