Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for auxIntToValAndOff (0.24 sec)

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

    	// match: (ADDLconstmodify [valoff1] {sym} (ADDLconst [off2] base) mem)
    	// cond: valoff1.canAdd32(off2)
    	// result: (ADDLconstmodify [valoff1.addOffset32(off2)] {sym} base mem)
    	for {
    		valoff1 := auxIntToValAndOff(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != Op386ADDLconst {
    			break
    		}
    		off2 := auxIntToInt32(v_0.AuxInt)
    		base := v_0.Args[0]
    		mem := v_1
    		if !(valoff1.canAdd32(off2)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    	v_0 := v.Args[0]
    	// match: (MOVBstoreconst [sc] {s} (ADDconst [off] ptr) mem)
    	// cond: is20Bit(sc.Off64()+int64(off))
    	// result: (MOVBstoreconst [sc.addOffset32(off)] {s} ptr mem)
    	for {
    		sc := auxIntToValAndOff(v.AuxInt)
    		s := auxToSym(v.Aux)
    		if v_0.Op != OpS390XADDconst {
    			break
    		}
    		off := auxIntToInt32(v_0.AuxInt)
    		ptr := v_0.Args[0]
    		mem := v_1
    		if !(is20Bit(sc.Off64() + int64(off))) {
    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