Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SRL (0.03 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // unsigned right shift
    (Rsh64Ux(64|32|16|8) <t> x y) && shiftIsBounded(v) => (SRL <t> x y)
    (Rsh32Ux(64|32|16|8) <t> x y) && shiftIsBounded(v) => (SRL <t> (ZeroExt32to64 x) y)
    (Rsh16Ux(64|32|16|8) <t> x y) && shiftIsBounded(v) => (SRL <t> (ZeroExt16to64 x) y)
    (Rsh8Ux(64|32|16|8)  <t> x y) && shiftIsBounded(v) => (SRL <t> (ZeroExt8to64 x) y)
    
    // shift value may be out of range, use CMP + CSEL instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v.AuxInt = int64ToAuxInt(int64(val & 31))
    		v.AddArg(x)
    		return true
    	}
    	return false
    }
    func rewriteValueRISCV64_OpRISCV64SRL(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (SRL x (MOVDconst [val]))
    	// result: (SRLI [int64(val&63)] x)
    	for {
    		x := v_0
    		if v_1.Op != OpRISCV64MOVDconst {
    			break
    		}
    		val := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpRISCV64SRLI)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v.AuxInt = int32ToAuxInt(d >> uint32(c))
    		return true
    	}
    	return false
    }
    func rewriteValueMIPS_OpMIPSSRL(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (SRL x (MOVWconst [c]))
    	// result: (SRLconst x [c&31])
    	for {
    		x := v_0
    		if v_1.Op != OpMIPSMOVWconst {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		v.reset(OpMIPSSRLconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    space
    
    // sport : 2017-11-16 Global Association of International Sports Federations (GAISF)
    sport
    
    // spot : 2015-02-26 Amazon Registry Services, Inc.
    spot
    
    // srl : 2015-05-07 InterNetX, Corp
    srl
    
    // stada : 2014-11-13 STADA Arzneimittel AG
    stada
    
    // staples : 2015-07-30 Staples, Inc.
    staples
    
    // star : 2015-01-08 Star India Private Limited
    star
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top