Split edges to have a block to add regmove & copy instructions.

When using basic block instructions cannot be added in-between jump instructions which are ending basic blocks. These changes create extra basic blocks such that extra space is available for the spilling and moving registers where they are expected.
This commit is contained in:
Nicolas B. Pierron
2019-08-30 18:44:35 +02:00
committed by GitHub
parent bb87f1a54a
commit 381578311c
10 changed files with 529 additions and 3 deletions

View File

@@ -10,6 +10,7 @@ pub mod register_set;
pub mod virtregs;
mod affinity;
mod branch_splitting;
mod coalescing;
mod context;
mod diversion;