<div dir="ltr"><div>Hi Ricardo,</div><div><br></div>Yes, the optimizer's behavior can, and does, change depending on the target triple, so you definitely need to pass the target triple to the optimizer when cross-compiling.<div>Furthermore, even your frontend will often care about the triple (for a simple example, consider sizeof in C). So you really ought to use the same triple through the entire compilation process.</div><div><br></div><div>Michael</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 10, 2016 at 10:21 AM, Ricardo Nobre via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi again,<br>
<br>
<br>
Thanks for answering my previous question :)<br>
<br>
There is something else I do not understand about the passes in LLVM.<br>
<br>
Does the behavior of some LLVM passes change depending on the 'target triple' passed (either inside the LLVM IR or passed as command line parameter) to the LLVM Optimizer (LLVM 'opt' tool)?<br>
Is the behavior of the passes when called by LLVM 'opt' target specific (architecture/subarchitecture, vendor, operating system, etc...)?<br>
<br>
<br>
If that is the case, then when I'm cross-compiling for a given target (e.g., target SPARC-ELF on a X86-LINUX machine) I must always pass the target triple.<br>
If that is not the case, they I only need to pass the target triple to the 'llc' static compiler when gerating the assembly code for the target platform.<br>
<br>
<br>
Additionally, someone pointed me to this commit, suggesting that the behavior of some passes depends on the selected optimization level.<br>
Is this correct?<br>
<br>
If so, is it possible to execute only some of the passes in -O2 (or in a different order), but have them individually behaving as if -O2 was being used?<br>
<br>
Is there any direct mechanism to control compiler passes individually?<br>
<br>
<br>
Regards,<br>
Ricardo<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="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div><br></div>