MOVSBQ reads one byte from the source, signs extends it to a quad word (64 bits, replicating bit 7 into bits 63:8) and writes the value to the destination register.
The addressing mode (%r1,%r2,4) computes the address of the operand as R1 + R2 * 4. The ADD instruction reads the DWORD at that address and adds it to EAX.
MOVSBQ reads one byte from the source, signs extends it to a quad word (64 bits, replicating bit 7 into bits 63:8) and writes the value to the destination register.
The addressing mode (%r1,%r2,4) computes the address of the operand as R1 + R2 * 4. The ADD instruction reads the DWORD at that address and adds it to EAX.