Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mfvscr (0.07 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (MFVSRD (FMOVDconst [c]))
    	// result: (MOVDconst [int64(math.Float64bits(c))])
    	for {
    		if v_0.Op != OpPPC64FMOVDconst {
    			break
    		}
    		c := auxIntToFloat64(v_0.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(math.Float64bits(c)))
    		return true
    	}
    	// match: (MFVSRD x:(FMOVDload [off] {sym} ptr mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top