Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MOVBload (0.25 sec)

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

    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpARMMOVBload(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MOVBload [off1] {sym} (ADDconst [off2] ptr) mem)
    	// result: (MOVBload [off1+off2] {sym} ptr mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpARMADDconst {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		ptr2 := v_1.Args[0]
    		if !(isSamePtr(ptr1, ptr2)) {
    			break
    		}
    		v.reset(OpS390XMOVBreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBload [off1] {sym} (ADDconst [off2] ptr) mem)
    	// cond: is20Bit(int64(off1)+int64(off2))
    	// result: (MOVBload [off1+off2] {sym} ptr mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpS390XADDconst {
    			break
    		}
    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