Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for FromP3 (0.1 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    	{ADIVHW, C_REG, C_NONE, C_REG, 105, 4, 0, 0, 0, 0},
    	{AMULL, C_REG, C_REG, C_REGREG, 17, 4, 0, 0, 0, C_SBIT},
    	{ABFX, C_LCON, C_REG, C_REG, 18, 4, 0, 0, 0, 0},  // width in From, LSB in From3
    	{ABFX, C_LCON, C_NONE, C_REG, 18, 4, 0, 0, 0, 0}, // width in From, LSB in From3
    	{AMOVW, C_REG, C_NONE, C_SAUTO, 20, 4, REGSP, 0, 0, C_PBIT | C_WBIT | C_UBIT},
    	{AMOVW, C_REG, C_NONE, C_SOREG, 20, 4, 0, 0, 0, C_PBIT | C_WBIT | C_UBIT},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    		bc := c.vregoff(&p.From)
    		if o.a1 == C_CRBIT {
    			// CR bit is encoded as a register, not a constant.
    			bc = int64(p.From.Reg)
    		}
    
    		// rt = To.Reg, ra = p.Reg, rb = p.From3.Reg
    		o1 = AOP_ISEL(OP_ISEL, uint32(p.To.Reg), uint32(p.Reg), uint32(p.GetFrom3().Reg), uint32(bc))
    
    	case 85: /* vector instructions, VX-form */
    		/* reg none reg */
    		/* 2-register operand order: VRB, VRT */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    	BRANCH14BITS             // branch instruction encodes 14 bits
    	BRANCH19BITS             // branch instruction encodes 19 bits
    )
    
    var optab = []Optab{
    	/* struct Optab:
    	OPCODE, from, prog->reg, from3, to, to2, type,size,param,flag,scond */
    	{obj.ATEXT, C_ADDR, C_NONE, C_NONE, C_TEXTSIZE, C_NONE, 0, 0, 0, 0, 0},
    
    	/* arithmetic operations */
    	{AADD, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top