[PATCH] D156491: [RA] Split a virtual register in cold blocks if it is not assigned preferred physical register
Quentin Colombet via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 8 04:26:32 PDT 2023
qcolombet requested changes to this revision.
qcolombet added inline comments.
This revision now requires changes to proceed.
================
Comment at: llvm/lib/CodeGen/RegAllocGreedy.cpp:2404
+ if (!NewVRegs.empty())
+ return 0;
----------------
Splitting decisions are supposed to be taken later (`trySplit`), this breaks the general algorithm's flow.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D156491/new/
https://reviews.llvm.org/D156491
More information about the llvm-commits
mailing list