Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for encodeRII (0.19 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    	if funct2&^3 != 0 {
    		panic("encodeR4: funct2 requires more than 2 bits")
    	}
    	return rs3<<27 | funct2<<25 | rs2<<20 | rs1<<15 | enc.funct3<<12 | funct3<<12 | rd<<7 | enc.opcode
    }
    
    func encodeRII(ins *instruction) uint32 {
    	return encodeR(ins.as, regI(ins.rs1), 0, regI(ins.rd), ins.funct3, ins.funct7)
    }
    
    func encodeRIII(ins *instruction) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top