Files
OSACA/examples/add/add.s.rv64.gcc.s
Metehan Dundar ebf76caa18 Apply selected improvements from 1ceac6e: enhanced RISC-V parser, ImmediateOperand enhancements, and rv6→rv64 file renames
- Enhanced ImmediateOperand with reloc_type and symbol attributes for better RISC-V support
- Updated RISC-V parser with relocation type support (%hi, %lo, %pcrel_hi, etc.)
- Renamed example files from rv6 to rv64 for consistency
- Updated related configuration and test files
- All 115 tests pass successfully
2025-07-11 18:15:51 +02:00

13 lines
203 B
ArmAsm

add_riscv:
.L3:
vsetvli a5,a3,e64,m1,ta,ma
vle64.v v2,0(a1)
vle64.v v1,0(a2)
slli a4,a5,3
sub a3,a3,a5
add a1,a1,a4
add a2,a2,a4
vfadd.vv v1,v1,v2
vse64.v v1,0(a0)
add a0,a0,a4
bne a3,zero,.L3