Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for avx512vl (0.12 sec)

  1. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    isharipo <******@****.***> 1526426519 +0300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 410.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/line_test.go

    	"cmd/asm/internal/lex"
    	"strings"
    	"testing"
    )
    
    type badInstTest struct {
    	input, error string
    }
    
    func TestAMD64BadInstParser(t *testing.T) {
    	testBadInstParser(t, "amd64", []badInstTest{
    		// Test AVX512 suffixes.
    		{"VADDPD.A X0, X1, X2", `unknown suffix "A"`},
    		{"VADDPD.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/evex.go

    	evexN32  = 5 << 5
    	evexN64  = 6 << 5
    	evexN128 = 7 << 5
    
    	// Disp8 for broadcasts.
    	evexBcst   = 0x18 // b2[...b b...]
    	evexBcstN4 = 1 << 3
    	evexBcstN8 = 2 << 3
    
    	// Flags that permit certain AVX512 features.
    	// It's semantically illegal to combine evexZeroing and evexSae.
    	evexZeroing         = 0x4 // b2[.... .Z..]
    	evexZeroingEnabled  = 1 << 2
    	evexRounding        = 0x2 // b2[.... ..R.]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	Py   = 0x80 // defaults to 64-bit mode
    	Py1  = 0x81 // symbolic; exact value doesn't matter
    	Py3  = 0x83 // symbolic; exact value doesn't matter
    	Pavx = 0x84 // symbolic; exact value doesn't matter
    
    	RxrEvex = 1 << 4 // AVX512 extension to REX.R/VEX.R
    	Rxw     = 1 << 3 // =1, 64-bit operand size
    	Rxr     = 1 << 2 // extend modrm reg
    	Rxx     = 1 << 1 // extend sib index
    	Rxb     = 1 << 0 // extend modrm r/m, sib base, or opcode reg
    )
    
    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