Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		return true
    	}
    	return false
    }
    func rewriteValueS390X_OpS390XMOVDstoreidx(v *Value) bool {
    	v_3 := v.Args[3]
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MOVDstoreidx [off] {sym} ptr idx r:(MOVDBR x) mem)
    	// cond: r.Uses == 1
    	// result: (MOVDBRstoreidx [off] {sym} ptr idx x mem)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top