[PATCH] D142219: [MC] Store operand info immediately after the TargetInsts table. NFC.
Sergei Barannikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 20 11:26:59 PST 2023
barannikov88 added inline comments.
================
Comment at: llvm/include/llvm/MC/MCInstrDesc.h:577
ArrayRef<MCPhysReg> implicit_defs() const {
auto ImplicitOps = reinterpret_cast<const MCPhysReg *>(this + Opcode + 1);
return {ImplicitOps + ImplicitOffset + NumImplicitUses, NumImplicitDefs};
----------------
ImplicitOps -> OpInfo (this is where it points now)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142219/new/
https://reviews.llvm.org/D142219
More information about the llvm-commits
mailing list