projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e6da15
)
If the register allocator ran out of registers, just abort for now.
author
Evan Cheng
<evan.cheng@apple.com>
Mon, 10 Mar 2008 21:27:20 +0000
(21:27 +0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Mon, 10 Mar 2008 21:27:20 +0000
(21:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48175
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/RegAllocLinearScan.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/RegAllocLinearScan.cpp
b/lib/CodeGen/RegAllocLinearScan.cpp
index d43cc19683c4a4be86b823f2e0c7416ca1e4d26e..144f0a7d430f6ae500009b9c18aae82a8b1fb737 100644
(file)
--- a/
lib/CodeGen/RegAllocLinearScan.cpp
+++ b/
lib/CodeGen/RegAllocLinearScan.cpp
@@
-685,8
+685,14
@@
void RALinScan::assignRegOrStackSlotAtInterval(LiveInterval* cur)
}
// All registers must have inf weight. Just grab one!
- if (!minReg)
+ if (!minReg) {
+ if (active_.size() == 0) {
+ // FIXME: All the registers are occupied by fixed intervals.
+ cerr << "Register allocator ran out of registers!\n";
+ abort();
+ }
minReg = *RC->allocation_order_begin(*mf_);
+ }
}
DOUT << "\t\tregister with min weight: "