<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Jan 12, 2014 at 12:35 AM, Jakob Stoklund Olesen <span dir="ltr"><<a href="mailto:stoklund@2pi.dk" target="_blank">stoklund@2pi.dk</a>></span> wrote:<br>
<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 style="word-wrap:break-word"><br><div><div class="im">
<div>On Jan 11, 2014, at 9:22 PM, Sean Silva <<a href="mailto:silvas@purdue.edu" target="_blank">silvas@purdue.edu</a>> wrote:</div><br><blockquote type="cite"><div dir="ltr">Do we have a SPARC builder?</div></blockquote>
<div><br></div></div><div>No. I have an old Sun box, but it is too slow and too noisy to serve as a builder.</div><div class="im"><br><blockquote type="cite"><div dir="ltr">Can we self-host? (Just curious; I'm clueless about the state of SPARC in LLVM and it seems to be getting some action recently).<div>
</div></div><div class="gmail_extra"></div></blockquote><div><br></div></div><div>With Venkatraman's recent work, we are very close to self-hosting a SPARCv9 build.</div></div></div></blockquote><div><br></div><div>Neat. Are there any beefy-enough SPARC chips around to serve as builders some day? If not, then at least we could get a wimpier one (OpenSPARC on an FPGA?) and do like the wimpy ARM bots.</div>
<div><br></div><div>Oracle seems to have a pretty recent (2013) offering targeted at big iron, and it seems pretty beefy <<a href="http://en.wikipedia.org/wiki/SPARC_T5">http://en.wikipedia.org/wiki/SPARC_T5</a>>; the linked white paper is talking about multi-socket x 16-core@3.6GHz superscalar and N x 256GB DDR3. I didn't see any price tag, but I'm guessing that the people who actually need these sorts of big-iron machines have (much) deeper pockets than we do........ (nonetheless, we have some Oracle contributors, so maybe they could talk to the right people).</div>
<div><br></div><div>-- Sean Silva</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 style="word-wrap:break-word">
<div><div><br></div><div>The 32-bit build still has some issues in stage 1.</div><div><br></div><div>Thanks,</div><div>/jakob</div><div><div class="h5"><div><br></div><br><blockquote type="cite"><div class="gmail_extra"><div class="gmail_quote">
On Sat, Jan 11, 2014 at 1:25 PM, Jakob Stoklund Olesen <span dir="ltr"><<a href="mailto:stoklund@2pi.dk" target="_blank">stoklund@2pi.dk</a>></span> wrote:<br><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">

Author: stoklund<br>
Date: Sat Jan 11 12:25:01 2014<br>
New Revision: 199012<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=199012&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=199012&view=rev</a><br>
Log:<br>
Select the UltraSPARC instruction set when invoking the assembler.<br>
<br>
Modified:<br>
    cfe/trunk/lib/Driver/Tools.cpp<br>
    cfe/trunk/test/Driver/linux-as.c<br>
<br>
Modified: cfe/trunk/lib/Driver/Tools.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Tools.cpp?rev=199012&r1=199011&r2=199012&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Tools.cpp?rev=199012&r1=199011&r2=199012&view=diff</a><br>


==============================================================================<br>
--- cfe/trunk/lib/Driver/Tools.cpp (original)<br>
+++ cfe/trunk/lib/Driver/Tools.cpp Sat Jan 11 12:25:01 2014<br>
@@ -6291,8 +6291,10 @@ void gnutools::Assemble::ConstructJob(Co<br>
     CmdArgs.push_back("-many");<br>
   } else if (getToolChain().getArch() == llvm::Triple::sparc) {<br>
     CmdArgs.push_back("-32");<br>
+    CmdArgs.push_back("-Av8plusa");<br>
   } else if (getToolChain().getArch() == llvm::Triple::sparcv9) {<br>
     CmdArgs.push_back("-64");<br>
+    CmdArgs.push_back("-Av9a");<br>
   } else if (getToolChain().getArch() == llvm::Triple::arm) {<br>
     StringRef MArch = getToolChain().getArchName();<br>
     if (MArch == "armv7" || MArch == "armv7a" || MArch == "armv7-a")<br>
<br>
Modified: cfe/trunk/test/Driver/linux-as.c<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/linux-as.c?rev=199012&r1=199011&r2=199012&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/linux-as.c?rev=199012&r1=199011&r2=199012&view=diff</a><br>


==============================================================================<br>
--- cfe/trunk/test/Driver/linux-as.c (original)<br>
+++ cfe/trunk/test/Driver/linux-as.c Sat Jan 11 12:25:01 2014<br>
@@ -65,6 +65,7 @@<br>
 // RUN:   | FileCheck -check-prefix=CHECK-SPARCV9 %s<br>
 // CHECK-SPARCV9: as<br>
 // CHECK-SPARCV9: -64<br>
+// CHECK-SPARCV9: -Av9a<br>
 // CHECK-SPARCV9: -o<br>
 //<br>
 // RUN: %clang -target sparc-linux -mcpu=invalid-cpu -### \<br>
@@ -72,6 +73,7 @@<br>
 // RUN:   | FileCheck -check-prefix=CHECK-SPARCV8 %s<br>
 // CHECK-SPARCV8: as<br>
 // CHECK-SPARCV8: -32<br>
+// CHECK-SPARCV8: -Av8plusa<br>
 // CHECK-SPARCV8: -o<br>
 //<br>
 // RUN: %clang -target s390x-linux -### -no-integrated-as -c %s 2>&1 \<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@cs.uiuc.edu" target="_blank">cfe-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div>
</blockquote></div></div></div><br></div></blockquote></div><br></div></div>