Home | History | Annotate | Download | only in CodeGen

Lines Matching full:dead

1 //===- DeadMachineInstructionElim.cpp - Remove dead machine instructions --===//
10 // This is an extremely simple MachineInstr-level dead-code-elimination pass.
26 STATISTIC(NumDeletes, "Number of dead instructions deleted");
50 INITIALIZE_PASS(DeadMachineInstructionElim, "dead-mi-elimination",
51 "Remove dead machine instructions", false, false)
82 // If there are no defs with uses, the instruction is dead.
93 // more likely that chains of dependent but ultimately dead instructions will
111 // Now scan the instructions and delete dead ones, tracking physreg
117 // If the instruction is dead, delete it!
165 // Register mask of preserved registers. All clobbers are dead.