Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    		return true
    	}
    	// match: (SGTconst [c] (MOVBreg _))
    	// cond: 0x7f < c
    	// result: (MOVVconst [1])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpLOONG64MOVBreg || !(0x7f < c) {
    			break
    		}
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVBreg _))
    	// cond: c <= -0x80
    	// result: (MOVVconst [0])
    	for {
    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/rewriteMIPS.go

    		return true
    	}
    	// match: (SGTconst [c] (MOVBreg _))
    	// cond: 0x7f < c
    	// result: (MOVWconst [1])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpMIPSMOVBreg || !(0x7f < c) {
    			break
    		}
    		v.reset(OpMIPSMOVWconst)
    		v.AuxInt = int32ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVBreg _))
    	// cond: c <= -0x80
    	// result: (MOVWconst [0])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		return true
    	}
    	// match: (SGTconst [c] (MOVBreg _))
    	// cond: 0x7f < c
    	// result: (MOVVconst [1])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpMIPS64MOVBreg || !(0x7f < c) {
    			break
    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVBreg _))
    	// cond: c <= -0x80
    	// result: (MOVVconst [0])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top