Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for vsrad (0.14 sec)

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

    	VRLQMI V1, V2, V3                       // 10611045
    	VRLQNM V1, V2, V3                       // 10611145
    	VSLDBI V1, V2, $3, V3                   // 106110d6
    	VSLQ V1, V2, V3                         // 10611105
    	VSRAQ V1, V2, V3                        // 10611305
    	VSRDBI V1, V2, $3, V4                   // 108112d6
    	VSRQ V1, V2, V3                         // 10611205
    	VSTRIBL V1, V2                          // 1040080d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/a.out.go

    	// find leftmost one
    	AFLOGR
    
    	// population count
    	APOPCNT
    
    	// integer bitwise
    	AAND
    	AANDW
    	AOR
    	AORW
    	AXOR
    	AXORW
    	ASLW
    	ASLD
    	ASRW
    	ASRAW
    	ASRD
    	ASRAD
    	ARLL
    	ARLLG
    	ARNSBG
    	ARXSBG
    	AROSBG
    	ARNSBGT
    	ARXSBGT
    	AROSBGT
    	ARISBG
    	ARISBGN
    	ARISBGZ
    	ARISBGNZ
    	ARISBHG
    	ARISBLG
    	ARISBHGZ
    	ARISBLGZ
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/math/erf_s390x.s

    // with coefficients determined with a Remez exchange algorithm.
    
    TEXT	·erfAsm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	MOVD	$·erfrodataL13<>+0(SB), R5
    	LGDR	F0, R1
    	FMOVD	F0, F6
    	SRAD	$48, R1
    	MOVH	$16383, R3
    	RISBGZ	$49, $63, $0, R1, R2
    	MOVW	R2, R6
    	MOVW	R3, R7
    	CMPBGT	R6, R7, L2
    	MOVH	$12287, R1
    	MOVW	R1, R7
    	CMPBLE	R6, R7 ,L12
    	MOVH	$16367, R1
    	MOVW	R1, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/anames.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: shiftIsBounded(v)
    	// result: (SRAD (MOVHreg x) y)
    	for {
    		x := v_0
    		y := v_1
    		if !(shiftIsBounded(v)) {
    			break
    		}
    		v.reset(OpPPC64SRAD)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVHreg, typ.Int64)
    		v0.AddArg(x)
    		v.AddArg2(v0, y)
    		return true
    	}
    	// match: (Rsh16x16 <t> x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (SRAD x (MOVWreg y))
    	// result: (SRAD x y)
    	for {
    		x := v_0
    		if v_1.Op != OpS390XMOVWreg {
    			break
    		}
    		y := v_1.Args[0]
    		v.reset(OpS390XSRAD)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (SRAD x (MOVHreg y))
    	// result: (SRAD 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)
  7. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	VPSRAD X11, X9, X11                     // c44131e2db
    	VPSRAD $7, X2, X9                       // c4e13172e207 or c5b172e207
    	VPSRAD $7, X11, X9                      // c4c13172e307
    	VPSRAD (BX), Y15, Y2                    // c4e105e213 or c585e213
    	VPSRAD (R11), Y15, Y2                   // c4c105e213
    	VPSRAD X2, Y15, Y2                      // c4e105e2d2 or c585e2d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FMSUB", argLength: 3, reg: fp31, asm: "FMSUB"},   // arg0*arg1 - arg2
    		{name: "FMSUBS", argLength: 3, reg: fp31, asm: "FMSUBS"}, // arg0*arg1 - arg2
    
    		{name: "SRAD", argLength: 2, reg: gp21cxer, asm: "SRAD"}, // signed arg0 >> (arg1&127), 64 bit width (note: 127, not 63!)
    		{name: "SRAW", argLength: 2, reg: gp21cxer, asm: "SRAW"}, // signed arg0 >> (arg1&63), 32 bit width
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Arithmetic shifts clobber flags.
    		{name: "SRAD", argLength: 2, reg: sh21, asm: "SRAD", clobberFlags: true},                    // signed arg0 >> arg1, shift amount is mod 64
    		{name: "SRAW", argLength: 2, reg: sh21, asm: "SRAW", clobberFlags: true},                    // signed int32(arg0) >> arg1, shift amount is mod 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (S(LD|RD|RAD|LW|RW|RAW) x (ANDWconst [c] y)) && c&63 == 63
      => (S(LD|RD|RAD|LW|RW|RAW) x y)
    (SLD  x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SLD  x y)
    (SRD  x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SRD  x y)
    (SRAD x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SRAD x y)
    (SLW  x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SLW  x y)
    (SRW  x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SRW  x y)
    (SRAW x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SRAW x y)
    
    // Match rotate by constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top