<div dir="ltr"><br><br><div class="gmail_quote">On Mon, Mar 23, 2015 at 3:54 PM Akira Hatanaka <<a href="mailto:ahatanak@gmail.com">ahatanak@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Fri, Mar 20, 2015 at 9:35 PM, Eric Christopher <span dir="ltr"><<a href="mailto:echristo@gmail.com" target="_blank">echristo@gmail.com</a>></span> wrote:<br></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>As of r232885 I've removed the argument-less TargetMachine::getSubtarget and TargetMachine::getSubtargetImpl. For the targets that aren't completely independent of this I've gone ahead and left a non-virtual version of the function in the target specific TargetMachine. What this means in practice is that those targets can only use a bare getSubtarget call in their target specific code, and should probably clean that up as soon as they can. They'll definitely be unable to use any of the function multiversioning support when it goes in and they'll be unable to LTO binaries that have functions with different subtarget features/cpus.</div><div><br></div></div></blockquote><div><br></div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>Thanks!</div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div></div><div>Updating out of tree ports should be fairly straightforward for now. Updating out of tree code otherwise should be ok, but given I've been removing this stuff for some time you've probably been working on it anyways. Do file bugs if there's anything I've missed or send me a message if you run into a problem (I know of a couple off hand that need investigating).</div><div><br></div></div></blockquote><div><br></div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>I noticed LLVMTargetMachine::addPassesToEmitFile is passing the default MCSubtargetInfo to createMCInstPrinter. Since there are cases where AArch64's InstPrinter looks at the target cpu to print an operand (see AArch64SysReg::SysRegMapper::toString, which is called from AArch64InstPrinter::printMRSSystemRegister), should we make changes in AArch64AsmPrinter to pass down the per-function subtarget? You can compile the attached IR with llc and see it doesn't output cyclone's system register unless "-mcpu cyclone" is specified on the command line, even thought the IR has "target-cpu"="cyclone" on the function. I don't think this affects correctness, but I thought I should point out the difference.<br></div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br></div></div></div></div></blockquote><div><br></div><div>Yep. ARM is in a similar state and well, as I said in the followup to the commit that added it:</div><div><br></div><div>"<span style="font-size:13.1999998092651px;line-height:19.7999992370605px">I hope it's temporary, but rewriting more huge swaths of the target infrastructure in both the TargetStreamer (mips) and/or the AsmPrinter which does this exact thing for a very similar reason is less on correctness and more on API level. Fixing this inside both of those is going to take some major reworking that may involve fairly significant internal API changes. So, we workaround for the moment so we can ensure the middle end code generation is clean and go from there."</span></div><div><span style="font-size:13.1999998092651px;line-height:19.7999992370605px"><br></span></div><div><span style="font-size:13.1999998092651px;line-height:19.7999992370605px">I really don't want to talk about ARM's use. It's mostly that keeping the middle end clean was getting to be annoying and this temporary hack is a decent workaround.</span></div><div><span style="font-size:13.1999998092651px;line-height:19.7999992370605px"><br></span></div><div><span style="font-size:13.1999998092651px;line-height:19.7999992370605px">Basically it's going to be a lot of churn to fix it and I was already in the middle of breaking lots of out of tree things so I figured I'd save it for another week :)</span></div><div><span style="font-size:13.1999998092651px;line-height:19.7999992370605px"><br></span></div><div><span style="font-size:13.1999998092651px;line-height:19.7999992370605px">-eric </span></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div></div><div>Thanks!</div><span><font color="#888888"><div><br></div><div>-eric</div></font></span></div>
<br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu" target="_blank">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
<br></blockquote></div></div></div></blockquote></div></div>