Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for popcntw (0.17 sec)

  1. src/internal/bytealg/count_ppc64x.s

    	BLT	tail_8
    	MOVD	(R3), R12
    	MOVD	8(R3), R14
    	CMPB	R12, R5, R12
    	CMPB	R14, R5, R14
    	POPCNTD	R12, R12
    	POPCNTD	R14, R14
    	ADD	R12, R18, R18
    	ADD	R14, R18, R18
    	ADD	$16, R3, R3
    	ADD	$-16, R4, R4
    
    tail_8:	// Count the remaining 0 - 15 bytes.
    	CMP	R4, $8
    	BLT	tail_4
    	MOVD	(R3), R12
    	CMPB	R12, R5, R12
    	POPCNTD	R12, R12
    	ADD	R12, R18, R18
    	ADD	$8, R3, R3
    	ADD	$-8, R4, R4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/amd64/versions_test.go

    	"pclmulqdq", "popcnt", "rdtscp", "sse3", "sse41", "sse42", "ssse3",
    )
    
    var featureToOpcodes = map[string][]string{
    	// Note: we include *q, *l, and plain opcodes here.
    	// go tool objdump doesn't include a [QL] on popcnt instructions, until CL 351889
    	// native objdump doesn't include [QL] on linux.
    	"popcnt": {"popcntq", "popcntl", "popcnt"},
    	"bmi1": {
    		"andnq", "andnl", "andn",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_bitalg.s

    	VPOPCNTW X5, K3, X23                               // 62e2fd0b54fd
    	VPOPCNTW X25, K3, X23                              // 6282fd0b54f9
    	VPOPCNTW (CX), K3, X23                             // 62e2fd0b5439
    	VPOPCNTW 99(R15), K3, X23                          // 62c2fd0b54bf63000000
    	VPOPCNTW X20, K3, X2                               // 62b2fd0b54d4
    	VPOPCNTW X5, K3, X2                                // 62f2fd0b54d5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AddArg2(y, x)
    		return true
    	}
    }
    func rewriteValuePPC64_OpCtz16(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Ctz16 x)
    	// result: (POPCNTW (MOVHZreg (ANDN <typ.Int16> (ADDconst <typ.Int16> [-1] x) x)))
    	for {
    		x := v_0
    		v.reset(OpPPC64POPCNTW)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVHZreg, typ.Int64)
    		v1 := b.NewValue0(v.Pos, OpPPC64ANDN, typ.Int16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/a.out.go

    	ASRDCC
    	AEXTSWSLI
    	AEXTSWSLICC
    	ASTDCCC
    	ATD
    	ASETB
    
    	/* 64-bit pseudo operation */
    	ADWORD
    	AREMD
    	AREMDU
    
    	/* more 64-bit operations */
    	AHRFID
    	APOPCNTD
    	APOPCNTW
    	APOPCNTB
    	ACNTTZW
    	ACNTTZWCC
    	ACNTTZD
    	ACNTTZDCC
    	ACOPY
    	APASTECC
    	ADARN
    	AMADDHD
    	AMADDHDU
    	AMADDLD
    
    	/* Vector */
    	ALVEBX
    	ALVEHX
    	ALVEWX
    	ALVX
    	ALVXL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. .idea/dictionaries/svyatoslav_kuzmich.xml

          <w>copysign</w>
          <w>eqref</w>
          <w>exnref</w>
          <w>externref</w>
          <w>funcref</w>
          <w>jetbrains</w>
          <w>kotlinx</w>
          <w>ktor</w>
          <w>optref</w>
          <w>popcnt</w>
          <w>rotl</w>
          <w>rotr</w>
          <w>simd</w>
          <w>sqrt</w>
          <w>testsuite</w>
          <w>uninstantiable</w>
          <w>unintercepted</w>
          <w>unlinkable</w>
          <w>vtable</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 12 05:42:01 UTC 2021
    - 594 bytes
    - Viewed (0)
  7. src/runtime/mpallocbits_test.go

    	}
    }
    
    func TestMallocBitsPopcntRange(t *testing.T) {
    	type test struct {
    		i, n uint // bit range to popcnt over.
    		want uint // expected popcnt result on that range.
    	}
    	tests := map[string]struct {
    		init  []BitRange // bit ranges to set to 1 in the bitmap.
    		tests []test     // a set of popcnt tests to run over the bitmap.
    	}{
    		"None": {
    			tests: []test{
    				{0, 1, 0},
    				{5, 3, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/amd64dynlinkerror.s

    	BSFQ AX, R15
    	ADDQ $1, R15
    	RET
    TEXT ·a32(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	POPCNTL R15, AX // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here"
    	RET
    TEXT ·a33(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	POPCNTL AX, R15
    	ADDQ $1, R15
    	RET
    TEXT ·a34(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	SHLXQ AX, CX, R15
    	ADDQ $1, R15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 20:45:41 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/anames.go

    	"MOVBZ",
    	"MOVH",
    	"MOVHBR",
    	"MOVHZ",
    	"MOVW",
    	"MOVWZ",
    	"MOVD",
    	"MOVDBR",
    	"MOVDEQ",
    	"MOVDGE",
    	"MOVDGT",
    	"MOVDLE",
    	"MOVDLT",
    	"MOVDNE",
    	"LOCR",
    	"LOCGR",
    	"FLOGR",
    	"POPCNT",
    	"AND",
    	"ANDW",
    	"OR",
    	"ORW",
    	"XOR",
    	"XORW",
    	"SLW",
    	"SLD",
    	"SRW",
    	"SRAW",
    	"SRD",
    	"SRAD",
    	"RLL",
    	"RLLG",
    	"RNSBG",
    	"RXSBG",
    	"ROSBG",
    	"RNSBGT",
    	"RXSBGT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    		{Name: "erms", Feature: &X86.HasERMS},
    		{Name: "fma", Feature: &X86.HasFMA},
    		{Name: "osxsave", Feature: &X86.HasOSXSAVE},
    		{Name: "pclmulqdq", Feature: &X86.HasPCLMULQDQ},
    		{Name: "popcnt", Feature: &X86.HasPOPCNT},
    		{Name: "rdrand", Feature: &X86.HasRDRAND},
    		{Name: "rdseed", Feature: &X86.HasRDSEED},
    		{Name: "sse3", Feature: &X86.HasSSE3},
    		{Name: "sse41", Feature: &X86.HasSSE41},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top