Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SHRW (0.2 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	SHRW $7, DX, (BX)                       // 660fac1307
    	SHRW $7, R11, (BX)                      // 66440fac1b07
    	SHRW $7, DX, (R11)                      // 66410fac1307
    	SHRW $7, R11, (R11)                     // 66450fac1b07
    	SHRW $7, DX, DX                         // 660facd207
    	SHRW $7, R11, DX                        // 66440facda07
    	SHRW $7, DX, R11                        // 66410facd307
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/anames.go

    	"SHA1MSG2",
    	"SHA1NEXTE",
    	"SHA1RNDS4",
    	"SHA256MSG1",
    	"SHA256MSG2",
    	"SHA256RNDS2",
    	"SHLB",
    	"SHLL",
    	"SHLQ",
    	"SHLW",
    	"SHLXL",
    	"SHLXQ",
    	"SHRB",
    	"SHRL",
    	"SHRQ",
    	"SHRW",
    	"SHRXL",
    	"SHRXQ",
    	"SHUFPD",
    	"SHUFPS",
    	"SIDT",
    	"SLDTL",
    	"SLDTQ",
    	"SLDTW",
    	"SMSWL",
    	"SMSWQ",
    	"SMSWW",
    	"SQRTPD",
    	"SQRTPS",
    	"SQRTSD",
    	"SQRTSS",
    	"STAC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "SHRL", argLength: 2, reg: gp21shift, asm: "SHRL", resultInArg0: true, clobberFlags: true},               // unsigned arg0 >> arg1, shift amount is mod 32
    		{name: "SHRW", argLength: 2, reg: gp21shift, asm: "SHRW", resultInArg0: true, clobberFlags: true},               // unsigned arg0 >> arg1, shift amount is mod 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

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

    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386SHRW(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (SHRW x (MOVLconst [c]))
    	// cond: c&31 < 16
    	// result: (SHRWconst [int16(c&31)] x)
    	for {
    		x := v_0
    		if v_1.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SHRQ", argLength: 2, reg: gp21shift, asm: "SHRQ", resultInArg0: true, clobberFlags: true},
    		{name: "SHRL", argLength: 2, reg: gp21shift, asm: "SHRL", resultInArg0: true, clobberFlags: true},
    		{name: "SHRW", argLength: 2, reg: gp21shift, asm: "SHRW", resultInArg0: true, clobberFlags: true},
    		{name: "SHRB", argLength: 2, reg: gp21shift, asm: "SHRB", resultInArg0: true, clobberFlags: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		return true
    	}
    	// match: (SHRW _ (MOVQconst [c]))
    	// cond: c&31 >= 16
    	// result: (MOVLconst [0])
    	for {
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		if !(c&31 >= 16) {
    			break
    		}
    		v.reset(OpAMD64MOVLconst)
    		v.AuxInt = int32ToAuxInt(0)
    		return true
    	}
    	// match: (SHRW _ (MOVLconst [c]))
    	// cond: c&31 >= 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  8. 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:         "SHRW",
    		argLen:       2,
    		resultInArg0: true,
    		clobberFlags: true,
    		asm:          x86.ASHRW,
    		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