Home/Instructions/Unsigned Maximum
MAXU

RISC-V MAXU Instruction Details

Instruction ManualR-type

Return the maximum of rs1 and rs2 using unsigned comparison.

Instruction Syntax

maxu rd, rs1, rs2
Operand Breakdown
Destination rd: register receiving the operation result.
Source rs1: register holding the first operand.
Source rs2: register holding the second operand.
BZbbBit ManipulationInteger Operation

Instruction Behavior

MAXU is a Zbb integer min/max instruction. It compares x[rs1] and x[rs2] as unsigned values and writes the original XLEN-bit value that is larger under that ordering to rd.

MAXU Decode And Execute Animation

Starts with machine-code field decoding, then shows operand reads, instruction-specific execution, and ISA-visible state update.

rd
rs1
rs2
maxu
,
,
Execution Context
t1(x6)
0x00000014
a0(x10)
0x00001000
31..25
24..20
19..15
14..12
11..7
6..0
0000101
funct7
01010
rs2
00110
rs1
111
funct3
00101
rd
0110011
opcode
Execution Data Path
instruction
0x0AA372B3
opcode
0110011 -> OP
funct3
111 -> MAXU
funct7
0000101 -> Zbb MIN/MAX selector
rd / rs1 / rs2
t0(x5) / t1(x6) / a0(x10)
integer comparison and selection
unsigned: 0x00000014 (20) >= 0x00001000 (4096) -> select rs2 = 0x00001000
x5
t0(x5) = 0x00001000
Current Step

Concept Step: receive the 32-bit instruction encoding

The machine code is split by the current instruction format; the animation starts from encoding/decode.

encoding: 0x0AA372B3
syntax : maxu t0(x5), t1(x6), a0(x10)
result : t0(x5) = 0x00001000
Architectural Result
t0(x5) = 0x00001000

This animation shows ISA-visible decode and state changes, not any specific CPU pipeline, cache, prediction, or timing implementation.

Quick Understanding & Search Notes

MAXU selects between rs1 and rs2 using unsigned ordering and returns the selected original XLEN-bit pattern, not a comparison bit.

Forms with U use unsigned ordering; forms without U use two's-complement signed ordering.
MAXU operands and result are XLEN-wide integer-register values.

Common Usage Scenarios

Integer Comparison

Understand this scenario with real code like «maxu x10, x11, x12 ; x10 = unsigned_max(x11, x12)».

Integer Min/Max

Understand this scenario with real code like «maxu x10, x11, x12 ; x10 = unsigned_max(x11, x12)».

Pre-Use Checklist

Syntax Check
  • Verify rd, rs1, rs2 (and rs3) are valid GPRs.
  • Confirm funct3 and funct7 encoding is correct.
Semantic Check
  • Check if the result affects subsequent branches or address calculations.
  • Ensure the rd register is not overwritten by another instruction.

Pitfalls / Common Confusions

MAXU uses unsigned comparison; use MAX for signed comparisons.
The result is the selected original register value, not Boolean 0/1.
MAXU and MAX differ only in comparison signedness; the selected original bit pattern is written.

FAQ

Does MAXU return 0 or 1?

No. It returns the original XLEN-bit value selected from rs1 or rs2 by the comparison rule.

How do I choose between MAXU and MAX?

Use the U form when data is ordered as unsigned; use the non-U form for signed two's-complement ordering.