Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for auxIntToInt64 (0.59 sec)

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

    	// match: (Move [0] _ _ mem)
    	// result: mem
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		mem := v_2
    		v.copyOf(mem)
    		return true
    	}
    	// match: (Move [1] dst src mem)
    	// result: (MOVBstore dst (MOVBUload src mem) mem)
    	for {
    		if auxIntToInt64(v.AuxInt) != 1 {
    			break
    		}
    		dst := v_0
    		src := v_1
    		mem := v_2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	return true
    }
    func auxIntToInt8(i int64) int8 {
    	return int8(i)
    }
    func auxIntToInt16(i int64) int16 {
    	return int16(i)
    }
    func auxIntToInt32(i int64) int32 {
    	return int32(i)
    }
    func auxIntToInt64(i int64) int64 {
    	return i
    }
    func auxIntToUint8(i int64) uint8 {
    	return uint8(i)
    }
    func auxIntToFloat32(i int64) float32 {
    	return float32(math.Float64frombits(uint64(i)))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top