Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for al (0.13 sec)

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

    	V4FMADDPS (AX), [Z0-AX], K1, Z7  // ERROR "invalid instruction"
    	// Usage of suffixes for non-EVEX instructions.
    	ADCB.Z $7, AL                    // ERROR "invalid instruction"
    	ADCB.RU_SAE $7, AL               // ERROR "invalid instruction"
    	ADCB.RU_SAE.Z $7, AL             // ERROR "invalid instruction"
    	// Usage of rounding with invalid operands.
    	VADDPD.RU_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 14 00:03:57 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/operand_test.go

    	{"32323(SP)(R8*4)", "32323(SP)(R8*4)"},
    	{"+3(PC)", "3(PC)"},
    	{"-1(DI)(BX*1)", "-1(DI)(BX*1)"},
    	{"-3(PC)", "-3(PC)"},
    	{"-64(SI)(BX*1)", "-64(SI)(BX*1)"},
    	{"-96(SI)(BX*1)", "-96(SI)(BX*1)"},
    	{"AL", "AL"},
    	{"AX", "AX"},
    	{"BP", "BP"},
    	{"BX", "BX"},
    	{"CX", "CX"},
    	{"DI", "DI"},
    	{"DX", "DX"},
    	{"R10", "R10"},
    	{"R10", "R10"},
    	{"R11", "R11"},
    	{"R12", "R12"},
    	{"R13", "R13"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arm.go

    	"VS":  arm.C_SCOND_VS,
    	"VC":  arm.C_SCOND_VC,
    	"HI":  arm.C_SCOND_HI,
    	"LS":  arm.C_SCOND_LS,
    	"GE":  arm.C_SCOND_GE,
    	"LT":  arm.C_SCOND_LT,
    	"GT":  arm.C_SCOND_GT,
    	"LE":  arm.C_SCOND_LE,
    	"AL":  arm.C_SCOND_NONE,
    	"U":   arm.C_UBIT,
    	"S":   arm.C_SBIT,
    	"W":   arm.C_WBIT,
    	"P":   arm.C_PBIT,
    	"PW":  arm.C_WBIT | arm.C_PBIT,
    	"WP":  arm.C_WBIT | arm.C_PBIT,
    	"F":   arm.C_FBIT,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	CBNZ R7, -1(PC)                            // e7ffffb5
    	CBZW R15, -1(PC)                           // efffff34
    	CBZ R1, -1(PC)                             // e1ffffb4
    	CCMN MI, ZR, R1, $4                        // e44341ba
    	CCMNW AL, R26, $20, $11                    // 4beb543a
    	CCMN PL, R24, $6, $1                       // 015b46ba
    	CCMNW EQ, R20, R6, $6                      // 8602463a
    	CCMN LE, R30, R12, $6                      // c6d34cba
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  5. src/cmd/asm/internal/asm/testdata/arm64error.s

    	CINC	AL, R2, R3                                       // ERROR "invalid condition"
    	CINC	NV, R2, R3                                       // ERROR "invalid condition"
    	CINVW	AL, R2, R3                                       // ERROR "invalid condition"
    	CINV	NV, R2, R3                                       // ERROR "invalid condition"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arch.go

    }
    
    func archX86(linkArch *obj.LinkArch) *Arch {
    	register := make(map[string]int16)
    	// Create maps for easy lookup of instruction names etc.
    	for i, s := range x86.Register {
    		register[s] = int16(i + x86.REG_AL)
    	}
    	// Pseudo-registers.
    	register["SB"] = RSB
    	register["FP"] = RFP
    	register["PC"] = RPC
    	if linkArch == &x86.Linkamd64 {
    		// Alias g to R14
    		register["g"] = x86.REGG
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
Back to top