[Turbofan] Add simd128 fixed live ranges to inactive.
LOG=N BUG=v8:4124 Review-Url: https://codereview.chromium.org/2157873002 Cr-Commit-Position: refs/heads/master@{#37829}
This commit is contained in:
parent
c598796643
commit
3266433462
@ -2650,6 +2650,9 @@ void LinearScanAllocator::AllocateRegisters() {
|
|||||||
for (TopLevelLiveRange* current : data()->fixed_double_live_ranges()) {
|
for (TopLevelLiveRange* current : data()->fixed_double_live_ranges()) {
|
||||||
if (current != nullptr) AddToInactive(current);
|
if (current != nullptr) AddToInactive(current);
|
||||||
}
|
}
|
||||||
|
for (TopLevelLiveRange* current : data()->fixed_simd128_live_ranges()) {
|
||||||
|
if (current != nullptr) AddToInactive(current);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while (!unhandled_live_ranges().empty()) {
|
while (!unhandled_live_ranges().empty()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user