Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fromType (0.17 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    		} else if p.From3Type() == obj.TYPE_CONST {
    			/* imm imm reg reg */
    			/* operand order: SIX, VRA, ST, VRT */
    			six := int(c.regoff(&p.From))
    			st := int(c.regoff(p.GetFrom3()))
    			o1 = AOP_IIRR(c.opiirr(p.As), uint32(p.To.Reg), uint32(p.Reg), uint32(st), uint32(six))
    		} else if p.From3Type() == obj.TYPE_NONE && p.Reg != 0 {
    			/* imm reg reg */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    		cond := SpecialOperand(p.From.Offset)
    		if cond < SPOP_EQ || cond > SPOP_NV || (cond == SPOP_AL || cond == SPOP_NV) && p.From3Type() == obj.TYPE_NONE {
    			c.ctxt.Diag("invalid condition: %v", p)
    		} else {
    			cond -= SPOP_EQ
    		}
    
    		r := int(p.Reg)
    		var rf int = r
    		if p.From3Type() == obj.TYPE_NONE {
    			/* CINC/CINV/CNEG or CSET/CSETM*/
    			if r == obj.REG_NONE {
    				/* CSET/CSETM */
    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