Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsRISCV64AMO (0.07 sec)

  1. src/cmd/asm/internal/asm/asm.go

    			case obj.TYPE_REG:
    				prog.Reg = p.getRegister(prog, op, &a[1])
    			default:
    				prog.AddRestSource(a[1])
    			}
    		case sys.RISCV64:
    			// RISCV64 instructions with one input and two outputs.
    			if arch.IsRISCV64AMO(op) {
    				prog.From = a[0]
    				prog.To = a[1]
    				if a[2].Type != obj.TYPE_REG {
    					p.errorf("invalid addressing modes for third operand to %s instruction, must be register", op)
    					return
    				}
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Oct 21 14:11:44 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top