Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for auxIntToInt64 (0.17 sec)

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

    	// result: (REV16 x)
    	for {
    		if auxIntToInt64(v.AuxInt) != 8 || v_0.Op != OpARM64SRLconst || auxIntToInt64(v_0.AuxInt) != 8 {
    			break
    		}
    		v_0_0 := v_0.Args[0]
    		if v_0_0.Op != OpARM64ANDconst {
    			break
    		}
    		c1 := auxIntToInt64(v_0_0.AuxInt)
    		x := v_0_0.Args[0]
    		if v_1.Op != OpARM64ANDconst {
    			break
    		}
    		c2 := auxIntToInt64(v_1.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    			z := v_0.Args[1]
    			if z.Op != OpConst64 {
    				continue
    			}
    			c := auxIntToInt64(z.AuxInt)
    			if v_1.Op != OpRsh16Ux64 {
    				continue
    			}
    			_ = v_1.Args[1]
    			if x != v_1.Args[0] {
    				continue
    			}
    			v_1_1 := v_1.Args[1]
    			if v_1_1.Op != OpConst64 {
    				continue
    			}
    			d := auxIntToInt64(v_1_1.AuxInt)
    			if !(c < 16 && d == 16-c && canRotate(config, 16)) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	// match: (CMPQ (MOVQconst [x]) (MOVQconst [y]))
    	// cond: x==y
    	// result: (FlagEQ)
    	for {
    		if v_0.Op != OpAMD64MOVQconst {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		y := auxIntToInt64(v_1.AuxInt)
    		if !(x == y) {
    			break
    		}
    		v.reset(OpAMD64FlagEQ)
    		return true
    	}
    	// match: (CMPQ (MOVQconst [x]) (MOVQconst [y]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top