Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ADDF (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (NMULF (NEGF x) y) => (MULF x y)
    (NMULD (NEGD x) y) => (MULD x y)
    
    // the result will overwrite the addend, since they are in the same register
    (ADDF a (MULF x y)) && a.Uses == 1 && buildcfg.GOARM.Version >= 6 => (MULAF a x y)
    (ADDF a (NMULF x y)) && a.Uses == 1 && buildcfg.GOARM.Version >= 6 => (MULSF a x y)
    (ADDD a (MULD x y)) && a.Uses == 1 && buildcfg.GOARM.Version >= 6 => (MULAD a x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top