Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EXTRACTPS (0.07 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64error.s

    // license that can be found in the LICENSE file.
    
    TEXT errors(SB),$0
    	MOVL	foo<>(SB)(AX), AX	// ERROR "invalid instruction"
    	MOVL	(AX)(SP*1), AX		// ERROR "invalid instruction"
    	EXTRACTPS $4, X2, (BX)          // ERROR "invalid instruction"
    	EXTRACTPS $-1, X2, (BX)         // ERROR "invalid instruction"
    	// VSIB addressing does not permit non-vector (X/Y)
    	// scaled index register.
    	VPGATHERDQ X12,(R13)(AX*2), X11 // ERROR "invalid instruction"
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	EXTRACTPS $0, X2, (BX)                  // 660f3a171300
    	EXTRACTPS $1, X11, (BX)                 // 66440f3a171b01
    	EXTRACTPS $2, X2, (R11)                 // 66410f3a171302
    	EXTRACTPS $3, X11, (R11)                // 66450f3a171b03
    	EXTRACTPS $3, X2, DX                    // 660f3a17d203
    	EXTRACTPS $2, X11, DX                   // 66440f3a17da02
    	EXTRACTPS $1, X2, R11                   // 66410f3a17d301
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
Back to top