Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for POPCNT (0.1 sec)

  1. .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)
  2. 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)
  3. 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)
  4. test/codegen/mathbits.go

    	// amd64:"POPCNTQ"
    	// arm64:"VCNT","VUADDLV"
    	// s390x:"POPCNT"
    	// ppc64x:"POPCNTD"
    	// wasm:"I64Popcnt"
    	return bits.OnesCount(n)
    }
    
    func OnesCount64(n uint64) int {
    	// amd64/v2:-".*x86HasPOPCNT" amd64/v3:-".*x86HasPOPCNT"
    	// amd64:"POPCNTQ"
    	// arm64:"VCNT","VUADDLV"
    	// s390x:"POPCNT"
    	// ppc64x:"POPCNTD"
    	// wasm:"I64Popcnt"
    	return bits.OnesCount64(n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/internal/bytealg/count_amd64.s

    	MOVB	c+16(FP), AL
    	LEAQ	ret+24(FP), R8
    	JMP	countbody<>(SB)
    
    // input:
    //   SI: data
    //   BX: data len
    //   AL: byte sought
    //   R8: address to put result
    // This function requires the POPCNT instruction.
    TEXT countbody<>(SB),NOSPLIT,$0
    	// Shuffle X0 around so that each byte contains
    	// the character we're looking for.
    	MOVD AX, X0
    	PUNPCKLBW X0, X0
    	PUNPCKLBW X0, X0
    	PSHUFL $0, X0, X0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:54:43 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_x86.go

    	}
    	level := getGOAMD64level()
    	if level < 2 {
    		// These options are required at level 2. At lower levels
    		// they can be turned off.
    		options = append(options,
    			option{Name: "popcnt", Feature: &X86.HasPOPCNT},
    			option{Name: "sse3", Feature: &X86.HasSSE3},
    			option{Name: "sse41", Feature: &X86.HasSSE41},
    			option{Name: "sse42", Feature: &X86.HasSSE42},
    			option{Name: "ssse3", Feature: &X86.HasSSSE3})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	MOV:       true,
    	MOVNTI:    true,
    	MUL:       true,
    	NEG:       true,
    	NOP:       true,
    	NOT:       true,
    	OR:        true,
    	OUT:       true,
    	POP:       true,
    	POPA:      true,
    	POPCNT:    true,
    	PUSH:      true,
    	PUSHA:     true,
    	RCL:       true,
    	RCR:       true,
    	ROL:       true,
    	ROR:       true,
    	SAR:       true,
    	SBB:       true,
    	SHL:       true,
    	SHLD:      true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (BitLen64 x) => (SUB (MOVDconst [64]) (FLOGR x))
    
    // POPCNT treats the input register as a vector of 8 bytes, producing
    // a population count for each individual byte. For inputs larger than
    // a single byte we therefore need to sum the individual bytes produced
    // by the POPCNT instruction. For example, the following instruction
    // sequence could be used to calculate the population count of a 4-byte
    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