[PATCH] D89449: [RISCV] Initial infrastructure for code generation of the RISC-V V-extension
luxufan via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 16 02:13:18 PDT 2020
StephenFan added inline comments.
================
Comment at: llvm/lib/Target/RISCV/RISCVInstrInfoPseudoV.td:209
+// Pseudos.
+let hasSideEffects = 0, mayLoad = 0, mayStore = 1, Defs = [VL, VTYPE] in {
+def PseudoVSETVLI : Pseudo<(outs GPR:$rd), (ins GPR:$rs1, VTypeIOp:$vtypei), []>;
----------------
The PseudoVSETVLI has the hasSideEffects = 1, mayLoad = 0, mayStore = 0
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D89449/new/
https://reviews.llvm.org/D89449
More information about the llvm-commits
mailing list