The hook should work for any RISC-V register. Non-allocatable registers do not need to be reserved, for the remaining the hook will only succeed if you pass clang the -ffixed-xX flag. This builds upon D67185, which currently only allows reserving GPRs.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Nice. This is looking good! One correctness issue, and one low priority issue.
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
2894 | I think you need to be using the Type information in VT to check the register we're returning has the expected width/type For instance, @llvm.register_read.i32("sp") on RISC-V 64 should absolutely fail. The same @llvm.register_read.i64("sp") should succeed on 64-bit RISC-V. I don't know if this test is done by the register_read intrinsic lowering or has to be done in this code. | |
llvm/lib/Target/RISCV/RISCVISelLowering.h | ||
150 | Low Priority: It would be nice to have a docstring that explains the implementation in RISC-V (including that this is used by @llvm.read_register.<ty>()/@llvm.write_register.<ty>() intrinsics). |
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
2894 | If the type doesn't match the lowering will fail, complaining about not knowing how to promote READ_REGISTER. The hook is never reached, so it's not possible to do such check at the hook. |
Please can you test using this with the register named fp. This is another alternate name for x8 (aka s0) which is supported in some places, and should be supported here. I'm not sure if MatchRegisterAltName will pick it up. I think x8 is the only register with three names (the rest all only have two).
Tweaks the get-register-reserve.ll test, including addressing @lenary's concern of testing that the fp register name is properly accepted.
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
2891 | This seems a bit strange to me from a dependency point of view. GenAsmMatcher conceptually belongs to RISCVAsmParser, but RISCVCodeGen doesn't depend on RISCVAsmParser. I believe other targets don't include GenAsmMatcher.inc from their codegen libraries (except aarch64, but it's strange there too -- added in D56305, +phosek). |
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
2891 | It seems reasonable to use the canonical register name matching, here, rather than a big duplicated StringSwitch. Is there a more reasonable way of avoiding duplication but still using the canonical register information from tablegen? |
Low Priority: It would be nice to have a docstring that explains the implementation in RISC-V (including that this is used by @llvm.read_register.<ty>()/@llvm.write_register.<ty>() intrinsics).