Skip to content

aco: introduce new Operand flags 'Clobbered' and 'CopyKill'

aco: introduce new Operand flag 'Clobbered'

This flag indicates that the Operand's register gets clobbered by the instruction.
aco: introduce Operand flag 'CopyKill'
    
This flag indicates that the Operand must be copied in order to satisfy register
constraints. The copy is immediately killed by the instruction.

The intention is to use these flags in !29576 and !29730 and partially supersede !29729.

Merge request reports