Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for auxIntToInt64 (0.32 sec)

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

    	// match: (ADDVconst [0] x)
    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	// match: (ADDVconst [c] (MOVVconst [d]))
    	// result: (MOVVconst [c+d])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpLOONG64MOVVconst {
    			break
    		}
    		d := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpLOONG64MOVVconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	// match: (ADDVconst [0] x)
    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	// match: (ADDVconst [c] (MOVVconst [d]))
    	// result: (MOVVconst [c+d])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpMIPS64MOVVconst {
    			break
    		}
    		d := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpMIPS64MOVVconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	// match: (ADDI [x] (MOVDconst [y]))
    	// cond: is32Bit(x + y)
    	// result: (MOVDconst [x + y])
    	for {
    		x := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpRISCV64MOVDconst {
    			break
    		}
    		y := auxIntToInt64(v_0.AuxInt)
    		if !(is32Bit(x + y)) {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteWasm.go

    	typ := &b.Func.Config.Types
    	// 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: (I64Store8 dst (I64Load8U 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: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	typ := &b.Func.Config.Types
    	// 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: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
Back to top