Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mmx7 (0.19 sec)

  1. src/internal/runtime/atomic/atomic_386.s

    TEXT ·Store64(SB), NOSPLIT, $0-12
    	NO_LOCAL_POINTERS
    	MOVL	ptr+0(FP), AX
    	TESTL	$7, AX
    	JZ	2(PC)
    	CALL	·panicUnaligned(SB)
    	// MOVQ and EMMS were introduced on the Pentium MMX.
    	MOVQ	val+4(FP), M0
    	MOVQ	M0, (AX)
    	EMMS
    	// This is essentially a no-op, but it provides required memory fencing.
    	// It can be replaced with MFENCE, but MFENCE was introduced only on the Pentium4 (SSE2).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/runtime/asm_386.s

    notintel:
    
    	// Load EAX=1 cpuid flags
    	MOVL	$1, AX
    	CPUID
    	MOVL	CX, DI // Move to global variable clobbers CX when generating PIC
    	MOVL	AX, runtime·processorVersionInfo(SB)
    
    	// Check for MMX support
    	TESTL	$(1<<23), DX // MMX
    	JZ	bad_proc
    
    nocpuinfo:
    	// if there is an _cgo_init, call it to let it
    	// initialize and to set up GS.  if not,
    	// we set up GS ourselves.
    	MOVL	_cgo_init(SB), AX
    	TESTL	AX, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/sync/atomic/doc.go

    //
    // [the Go memory model]: https://go.dev/ref/mem
    package atomic
    
    import (
    	"unsafe"
    )
    
    // BUG(rsc): On 386, the 64-bit functions use instructions unavailable before the Pentium MMX.
    //
    // On non-Linux ARM, the 64-bit functions use instructions unavailable before the ARMv6k core.
    //
    // On ARM, 386, and 32-bit MIPS, it is the caller's responsibility to arrange
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasFPA      bool // Floating point arithmetic support
    	HasVFP      bool // Vector floating point support
    	HasEDSP     bool // DSP Extensions support
    	HasJAVA     bool // Java instruction set
    	HasIWMMXT   bool // Intel Wireless MMX technology support
    	HasCRUNCH   bool // MaverickCrunch context switching and handling
    	HasTHUMBEE  bool // Thumb EE instruction set
    	HasNEON     bool // NEON instruction set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	Zibo_m_xm
    	Zil_
    	Zil_rp
    	Ziq_rp
    	Zilo_m
    	Zjmp
    	Zjmpcon
    	Zloop
    	Zo_iw
    	Zm_o
    	Zm_r
    	Z_m_r
    	Zm2_r
    	Zm_r_xm
    	Zm_r_i_xm
    	Zm_r_xm_nr
    	Zr_m_xm_nr
    	Zibm_r // mmx1,mmx2/mem64,imm8
    	Zibr_m
    	Zmb_r
    	Zaut_r
    	Zo_m
    	Zo_m64
    	Zpseudo
    	Zr_m
    	Zr_m_xm
    	Zrp_
    	Z_ib
    	Z_il
    	Zm_ibo
    	Zm_ilo
    	Zib_rr
    	Zil_rr
    	Zbyte
    
    	Zvex_rm_v_r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top