Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SHRB (0.09 sec)

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

    (Rsh8Ux(64|32|16|8)  <t> x y) && !shiftIsBounded(v) => (ANDL (SHRB <t> x y) (SBBLcarrymask <t> (CMP(Q|L|W|B)const y [8])))
    
    (Rsh64Ux(64|32|16|8) x y) && shiftIsBounded(v) => (SHRQ x y)
    (Rsh32Ux(64|32|16|8) x y) && shiftIsBounded(v) => (SHRL x y)
    (Rsh16Ux(64|32|16|8) x y) && shiftIsBounded(v) => (SHRW x y)
    (Rsh8Ux(64|32|16|8)  x y) && shiftIsBounded(v) => (SHRB x y)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		return true
    	}
    	// match: (SHRB _ (MOVQconst [c]))
    	// cond: c&31 >= 8
    	// result: (MOVLconst [0])
    	for {
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		if !(c&31 >= 8) {
    			break
    		}
    		v.reset(OpAMD64MOVLconst)
    		v.AuxInt = int32ToAuxInt(0)
    		return true
    	}
    	// match: (SHRB _ (MOVLconst [c]))
    	// cond: c&31 >= 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    			inputs: []inputInfo{
    				{1, 2},   // CX
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:         "SHRB",
    		argLen:       2,
    		resultInArg0: true,
    		clobberFlags: true,
    		asm:          x86.ASHRB,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{1, 2},   // CX
    				{0, 239}, // AX CX DX BX BP SI DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top