Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SpReg (0.03 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    		return fmt.Sprintf("Cond%d%s", int((c-Cond0LT)/4), [4]string{"LT", "GT", "EQ", "SO"}[(c-Cond0LT)%4])
    	}
    }
    
    // SpReg is a special register, its meaning depends on Op.
    type SpReg uint16
    
    const (
    	SpRegZero SpReg = 0
    )
    
    func (SpReg) IsArg() {}
    func (s SpReg) String() string {
    	return fmt.Sprintf("SpReg(%d)", int(s))
    }
    
    // PCRel is a PC-relative offset, used only in branch instructions.
    type PCRel int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	case TypeVecSReg:
    		return VS0 + Reg(a.BitFields.Parse(i))
    	case TypeVecSpReg:
    		return VS0 + Reg(a.BitFields.Parse(i))*2
    	case TypeMMAReg:
    		return A0 + Reg(a.BitFields.Parse(i))
    	case TypeSpReg:
    		return SpReg(a.BitFields.Parse(i))
    	case TypeImmSigned:
    		return Imm(a.BitFields.ParseSigned(i) << a.Shift)
    	case TypeImmUnsigned:
    		return Imm(a.BitFields.Parse(i) << a.Shift)
    	case TypePCRel:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top