Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for eax (0.08 sec)

  1. src/runtime/asm_amd64.s

    	CMPL	BX, $0x756E6547  // "Genu"
    	JNE	notintel
    	CMPL	DX, $0x49656E69  // "ineI"
    	JNE	notintel
    	CMPL	CX, $0x6C65746E  // "ntel"
    	JNE	notintel
    	MOVB	$1, runtime·isIntel(SB)
    
    notintel:
    	// Load EAX=1 cpuid flags
    	MOVL	$1, AX
    	CPUID
    	MOVL	AX, runtime·processorVersionInfo(SB)
    
    nocpuinfo:
    	// if there is an _cgo_init, call it.
    	MOVQ	_cgo_init(SB), AX
    	TESTQ	AX, AX
    	JZ	needtls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top