Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for processorVersionInfo (0.34 sec)

  1. src/runtime/cpuflags_amd64.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/cpu"
    )
    
    var useAVXmemmove bool
    
    func init() {
    	// Let's remove stepping and reserved fields
    	processor := processorVersionInfo & 0x0FFF3FF0
    
    	isIntelBridgeFamily := isIntel &&
    		processor == 0x206A0 ||
    		processor == 0x206D0 ||
    		processor == 0x306A0 ||
    		processor == 0x306E0
    
    	useAVXmemmove = cpu.X86.HasAVX && !isIntelBridgeFamily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 24 07:29:52 UTC 2018
    - 533 bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    	// Information about what cpu features are available.
    	// Packages outside the runtime should not use these
    	// as they are not an external api.
    	// Set on startup in asm_{386,amd64}.s
    	processorVersionInfo uint32
    	isIntel              bool
    )
    
    // set by cmd/link on arm systems
    // accessed using linkname by internal/runtime/atomic.
    //
    // goarm should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top