<div dir="ltr">To weigh in here...<div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 8:15 AM, David Blaikie <span dir="ltr"><<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">+Daniel & Michael who work on the LNT infrastructure & might have some<br>
thoughts on the differences & their merits & motivations.<br>
<div class="im"><br>
On Thu, Jan 3, 2013 at 4:05 AM, Renato Golin <<a href="mailto:renato.golin@linaro.org">renato.golin@linaro.org</a>> wrote:<br>
> David,<br>
><br>
> I got some more work on the Livermore Loops and I found out that the issue<br>
> is the difference in the parameters between a single step and a multi step<br>
> compilation.<br>
<br>
</div>Thanks for the investigation.<br>
<div class="im"><br>
> When you compile "clang kernel06.c" it works fine, but when you get all<br>
> steps (clang -emit-llvm + llvm-as + opt + llc etc), the defaults options of<br>
> each and how they interact is showing a bug in the code generated.<br>
<br>
</div>Sounds quite plausible.<br>
<div class="im"><br>
> This difference is due to the fact that I'm running the test-suite using<br>
> LNT, while the build bots are running it using Make directly. I'd expect<br>
> them both to be the same, but apparently they're quite different in what<br>
> kind of parameters they use, passes they test and results they get.<br>
><br>
> I think there are two courses of action here:<br>
><br>
> 1. Identify the issue, isolate the case and create a bug to resolve later.<br>
> 2. Make sure LNT does exactly what the build bots are doing<br>
<br>
</div>Part of the issue here is whether or not the Make-based execution is<br>
still maintained/valued. I'm getting the impression that the LNT<br>
execution may be already, or be becoming, the standard way to run the<br>
test suite even when not gathering perf statistics. Michael/Daniel -<br>
is that the case?<br></blockquote><div><br></div><div style>Well, the distinction isn't really between LNT and non-LNT, its between the TEST=nightly and TEST=simple style supported by the Makefiles. LNT uses the TEST=simple style and that is all I care to support.</div>
<div style><br></div><div style>Historically, the old way of testing (TEST=nightly) used the various LLVM tools to effect a compilation because there weren't compilers that worked. However, this is a bad way to "test" the product that most users actually care about, which is the compiler.</div>
<div style><br></div><div style>With TEST=simple, all the compilation is done using the compiler just as an end user would. If you want LTO, the right way to get it is to use the compilers support for LTO. This is how we test LTO internally. I've never tried to get LTO working on Linux, but it should be possible using the gold plugin and passing the right compiler options.</div>
<div style><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
If so, should we rip out the direct Make execution, or do something to<br>
otherwise warn/disable it?<br></blockquote><div><br></div><div style>Per my other thread polling users of the test-suite, there are still people who use the Makefiles to do more custom things. I personally would love to deprecate them completely, but they do support some useful workflows.</div>
<div style><br></div><div style>My ideal would be:</div><div style>1. Migrate LNT to drive the test-suite using a more sane mechanism (not a glob of Makefiles). I would like the "more sane mechanism" to be lit-based.</div>
<div style>2. Maybe do some work to make using lit to drive the test-suite more convenient and hopefully support some of the useful workflows the Makefiles support with less of the crap.</div><div style>3. Deprecate the Makefiles, or at least let the die through lack of maintenance.</div>
<div style><br></div><div style>Does that answer the parts you wanted my input on?</div><div style><br></div><div style> - Daniel</div><div style><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="im"><br>
> I'm working on item 1 right now, not sure how item 2 can be solved...<br>
><br>
> Of course, the fact that it's the not same flow meant we caught a bug in<br>
> LLVM, but that's bound to create more confusion and broken commits, which is<br>
> worse in the long run.<br>
<br>
</div>Yeah, unless there's some strong/specific motivation for this I'd be<br>
in favor of removing the difference (or removing the Make-based<br>
execution entirely)<br>
<div class="im"><br>
> Also, if we're not running LNT as often as buildbots, the benefit of having<br>
> them different is sporadic at best.<br>
<br>
</div>we're running both pretty regularly, I think - if anything I suspect<br>
we might be running LNT on more configurations than the Make-based<br>
execution (except that on some LNT runners we're multisampling, so<br>
it's slower)<br>
<div class="HOEnZb"><div class="h5"><br>
> When I set up some tests to run on ARM I have done both direct and<br>
> multi-step, to make sure they were generating the same code and in many<br>
> cases I found that the order in which the passes were executed was breaking<br>
> some tests.<br>
><br>
> We managed to get the EDG bridge to set it up in the same way as the<br>
> multi-pass would, so we would get similar results, but it doesn't seem to be<br>
> the case with clang.<br>
><br>
> cheers,<br>
> --renato<br>
</div></div></blockquote></div><br></div></div>