<div dir="ltr">I think they all target specific instructions need to be in the same namespace. I think it's part of the instruction just to separate the target specific instructions from the TargetOpcode instructions since otherwise they look the same to tablegen.<div><br></div><div>getInstructionsByEnumValue() should only compute the list once and that's probably called for other things than just getting the namespace. So I would think only the linear scan matters. That scan has probably gotten longer since global isel started adding G_* opcodes to the beginning of the enum. It's ~40 without G_* and ~230 with G_*. I think the namespace could probably be cached in CodeGenTarget.</div><div><br></div><div><div><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature">~Craig</div></div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Dec 2, 2020 at 10:45 AM Paul C. Anagnostopoulos via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I'm investigating a TableGen backend function named CodeGenTarget::getInstNamespace, which returns the instruction namespace. It does so by getting the instruction list sorted by enum value (yikes!) and then scanning it linearly for the first instruction whose namespace is not "TargetOpcode".<br>
<br>
This suggests that all the machine instructions are in the same namespace. Is that the case? If so, why have a Namespace field in the machine instruction? And even if there is, why not determine the namespace once and store it in the CodeGenTarget instance?<br>
<br>
When generating the AMDGPU instruction info, getInstNamespace is called 22 times.<br>
<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>