Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mmx0 (0.03 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    	REG_CR0
    	REG_CR1
    	REG_CR2
    	REG_CR3
    	REG_CR4
    	REG_CR5
    	REG_CR6
    	REG_CR7
    
    	// MMA accumulator registers, these shadow VSR 0-31
    	// e.g MMAx shadows VSRx*4-VSRx*4+3 or
    	//     MMA0 shadows VSR0-VSR3
    	REG_A0
    	REG_A1
    	REG_A2
    	REG_A3
    	REG_A4
    	REG_A5
    	REG_A6
    	REG_A7
    
    	REG_MSR
    	REG_FPSCR
    	REG_CR
    
    	REG_SPECIAL = REG_CR0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K 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/runtime/mgcscavenge_test.go

    			scavenged: []BitRange{{1, 10}},
    			min:       m,
    			max:       3 * m,
    			want:      BitRange{128, 3 * uint(m)},
    		}
    		tests["Max0"+suffix] = test{
    			scavenged: []BitRange{{0, PallocChunkPages - uint(m)}},
    			min:       m,
    			max:       0,
    			want:      BitRange{PallocChunkPages - uint(m), uint(m)},
    		}
    		if m <= 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top