Skip to content
  • Ulrich Weigand's avatar
    · d5ebc626
    Ulrich Weigand authored
    [PowerPC] Always use mfocrf if available
    
    When accessing just a single CR register, it is always preferable to
    use mfocrf instead of mfcr, if the former is available on the CPU.
    
    Current code makes that distinction in many, but not all places
    where a single CR register value is retrieved.  One missing
    location is PPCRegisterInfo::lowerCRSpilling.
    
    To fix this and make this simpler in the future, this patch changes
    the bulk of the back-end to always assume mfocrf is available and
    simply generate it when needed.
    
    On machines that actually do not support mfocrf, the instruction
    is replaced by mfcr at the very end, in EmitInstruction.
    
    This has the additional benefit that we no longer need the
    MFCRpseud hack, since before EmitInstruction we always have
    a MFOCRF instruction pattern, which already models data flow
    as required.
    
    The patch also adds the MFOCRF8 version of the instruction,
    which was missing so far.
    
    Except for the PPCRegisterInfo::lowerCRSpilling case, no change
    in generated code intended.
    
    llvm-svn: 185556
    d5ebc626
Loading