Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for vsraw (0.13 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	VSPLTISH:       "vspltish",
    	VSPLTISW:       "vspltisw",
    	VSPLTW:         "vspltw",
    	VSR:            "vsr",
    	VSRAB:          "vsrab",
    	VSRAH:          "vsrah",
    	VSRAW:          "vsraw",
    	VSRB:           "vsrb",
    	VSRH:           "vsrh",
    	VSRO:           "vsro",
    	VSRW:           "vsrw",
    	VSUBCUW:        "vsubcuw",
    	VSUBFP:         "vsubfp",
    	VSUBSBS:        "vsubsbs",
    	VSUBSHS:        "vsubshs",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (SRAW x (MOVWreg y))
    	// result: (SRAW x y)
    	for {
    		x := v_0
    		if v_1.Op != OpS390XMOVWreg {
    			break
    		}
    		y := v_1.Args[0]
    		v.reset(OpS390XSRAW)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (SRAW x (MOVHreg y))
    	// result: (SRAW x y)
    	for {
    		x := v_0
    		if v_1.Op != OpS390XMOVHreg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*4771*/ uint16(xMatch),
    	/*4772*/ uint16(xCondPrefix), 2,
    	0x66, 4784,
    	0x0, 4778,
    	/*4778*/ uint16(xSetOp), uint16(PSRAW),
    	/*4780*/ uint16(xReadIb),
    	/*4781*/ uint16(xArgMm2),
    	/*4782*/ uint16(xArgImm8u),
    	/*4783*/ uint16(xMatch),
    	/*4784*/ uint16(xSetOp), uint16(PSRAW),
    	/*4786*/ uint16(xReadIb),
    	/*4787*/ uint16(xArgXmm2),
    	/*4788*/ uint16(xArgImm8u),
    	/*4789*/ uint16(xMatch),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// match: (Rsh32x16 x y)
    	// cond: shiftIsBounded(v)
    	// result: (SRAW x y)
    	for {
    		x := v_0
    		y := v_1
    		if !(shiftIsBounded(v)) {
    			break
    		}
    		v.reset(OpPPC64SRAW)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Rsh32x16 <t> x y)
    	// result: (ISEL [2] (SRAW <t> x y) (SRAWconst <t> x [31]) (CMPconst [0] (ANDconst [0xFFE0] y)))
    	for {
    		t := v.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top