Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for xmm9 (0.26 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	// 387 floating point registers.
    	F0
    	F1
    	F2
    	F3
    	F4
    	F5
    	F6
    	F7
    
    	// MMX registers.
    	M0
    	M1
    	M2
    	M3
    	M4
    	M5
    	M6
    	M7
    
    	// XMM registers.
    	X0
    	X1
    	X2
    	X3
    	X4
    	X5
    	X6
    	X7
    	X8
    	X9
    	X10
    	X11
    	X12
    	X13
    	X14
    	X15
    
    	// Segment registers.
    	ES
    	CS
    	SS
    	DS
    	FS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows.go

    	}
    	if k := ft.OutSlice()[0].Kind_ & abi.KindMask; k == abi.Float32 || k == abi.Float64 {
    		// In cdecl and stdcall, float results are returned in
    		// ST(0). In fastcall, they're returned in XMM0.
    		// Either way, it's not AX.
    		panic("compileCallback: float results not supported")
    	}
    	if intArgRegs == 0 {
    		// Make room for the uintptr-sized result.
    		// If there are argument registers, the return value will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadmacho/ldmacho.go

    					// Calculate the addend as the offset into the section.
    					//
    					// The rip-relative offset stored in the object file is encoded
    					// as follows:
    					//
    					//    movsd	0x00000360(%rip),%xmm0
    					//
    					// To get the absolute address of the value this rip-relative address is pointing
    					// to, we must add the address of the next instruction to it. This is done by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	Pq   = 0xff // both escapes: 66 0f
    	Pb   = 0xfe // byte operands
    	Pf2  = 0xf2 // xmm escape 1: f2 0f
    	Pf3  = 0xf3 // xmm escape 2: f3 0f
    	Pef3 = 0xf5 // xmm escape 2 with 16-bit prefix: 66 f3 0f
    	Pq3  = 0x67 // xmm escape 3: 66 48 0f
    	Pq4  = 0x68 // xmm escape 4: 66 0F 38
    	Pq4w = 0x69 // Pq4 with Rex.w 66 0F 38
    	Pq5  = 0x6a // xmm escape 5: F3 0F 38
    	Pq5w = 0x6b // Pq5 with Rex.w F3 0F 38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    #define V3_EXT_FEATURES_CX (V2_EXT_FEATURES_CX | 1 << 5)
                             // BMI1     AVX2     BMI2
    #define V3_EXT_FEATURES_BX (1 << 3 | 1 << 5 | 1 << 8)
                           // XMM      YMM
    #define V3_OS_SUPPORT_AX (1 << 1 | 1 << 2)
    
    #define V4_FEATURES_CX V3_FEATURES_CX
    
    #define V4_EXT_FEATURES_CX V3_EXT_FEATURES_CX
    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