Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SGTU (0.03 sec)

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

    	// match: (IsInBounds idx len)
    	// result: (SGTU len idx)
    	for {
    		idx := v_0
    		len := v_1
    		v.reset(OpLOONG64SGTU)
    		v.AddArg2(len, idx)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpIsNonNil(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (IsNonNil ptr)
    	// result: (SGTU ptr (MOVVconst [0]))
    	for {
    		ptr := v_0
    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: (IsInBounds idx len)
    	// result: (SGTU len idx)
    	for {
    		idx := v_0
    		len := v_1
    		v.reset(OpMIPS64SGTU)
    		v.AddArg2(len, idx)
    		return true
    	}
    }
    func rewriteValueMIPS64_OpIsNonNil(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (IsNonNil ptr)
    	// result: (SGTU ptr (MOVVconst [0]))
    	for {
    		ptr := v_0
    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/rewriteMIPS.go

    	v_0 := v.Args[0]
    	// match: (IsInBounds idx len)
    	// result: (SGTU len idx)
    	for {
    		idx := v_0
    		len := v_1
    		v.reset(OpMIPSSGTU)
    		v.AddArg2(len, idx)
    		return true
    	}
    }
    func rewriteValueMIPS_OpIsNonNil(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (IsNonNil ptr)
    	// result: (SGTU ptr (MOVWconst [0]))
    	for {
    		ptr := v_0
    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