Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MOVDstoreidx (0.29 sec)

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

    (MOVDstoreidx ptr (MOVDconst [c]) val mem) && ((is16Bit(c) && c%4 == 0) || (buildcfg.GOPPC64 >= 10 && is32Bit(c))) => (MOVDstore [int32(c)] ptr val mem)
    (MOV(W|H|B)storeidx ptr (MOVDconst [c]) val mem) && (is16Bit(c) || (buildcfg.GOPPC64 >= 10 && is32Bit(c))) => (MOV(W|H|B)store [int32(c)] ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AuxInt = int32ToAuxInt(off)
    		v.Aux = symToAux(sym)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (MOVDstore [0] {sym} p:(ADD ptr idx) val mem)
    	// cond: sym == nil && p.Uses == 1
    	// result: (MOVDstoreidx ptr idx val mem)
    	for {
    		if auxIntToInt32(v.AuxInt) != 0 {
    			break
    		}
    		sym := auxToSym(v.Aux)
    		p := v_0
    		if p.Op != OpPPC64ADD {
    			break
    		}
    		idx := p.Args[1]
    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