Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for REG_R31 (0.06 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    			c.ctxt.Diag("invalid register pair %v\n", p)
    		}
    	case ALDP, ALDPW, ALDPSW:
    		if rl < REG_R0 || REG_R31 < rl || rh < REG_R0 || REG_R31 < rh {
    			c.ctxt.Diag("invalid register pair %v\n", p)
    		}
    	case ASTP, ASTPW:
    		if rl < REG_R0 || REG_R31 < rl || rh < REG_R0 || REG_R31 < rh {
    			c.ctxt.Diag("invalid register pair %v\n", p)
    		}
    	}
    	// other conditional flag bits
    	switch o.scond {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    func isint32(v int64) bool {
    	return int64(int32(v)) == v
    }
    
    func isuint32(v uint64) bool {
    	return uint64(uint32(v)) == v
    }
    
    func (c *ctxt9) aclassreg(reg int16) int {
    	if REG_R0 <= reg && reg <= REG_R31 {
    		return C_REGP + int(reg&1)
    	}
    	if REG_F0 <= reg && reg <= REG_F31 {
    		return C_FREGP + int(reg&1)
    	}
    	if REG_V0 <= reg && reg <= REG_V31 {
    		return C_VREG
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top