Lines Matching refs:LLVM
2 # LLVM Web Demo script
22 my $CONTACT_ADDRESS = 'Questions or comments? Email the <a href="http://lists.llvm.org/mailman/listinfo/llvm-dev">LLVM-dev mailing list</a>.';
29 '/home/vadve/shared/llvm-gcc4.0-2.1/bin/',
30 '/home/vadve/shared/llvm-2.1/Release/bin');
110 new Mail::Send( Subject => "LLVM Demo Page Run", To => $recipient );
123 <title>Try out LLVM in your browser!</title>
126 \@import url("http://llvm.org/llvm.css");
132 Try out LLVM in your browser!
155 one from your computer, and you can see LLVM compile it, meow!!
222 -label => 'Show LLVM C++ API code'
230 print "\n<p>If you have questions about the LLVM code generated by the
241 $sanitycheckfail .= ' llvm-dis'
242 if `llvm-dis --help 2>&1` !~ /ll disassembler/;
244 $sanitycheckfail .= ' llvm-gcc'
245 if ( `llvm-gcc --version 2>&1` !~ /Free Software Foundation/ );
247 $sanitycheckfail .= ' llvm-ld'
248 if `llvm-ld --help 2>&1` !~ /llvm linker/;
250 $sanitycheckfail .= ' llvm-bcanalyzer'
251 if `llvm-bcanalyzer --help 2>&1` !~ /bcanalyzer/;
351 my $outputFile = getname(".llvm-gcc.out");
352 my $timerFile = getname(".llvm-gcc.time");
358 try_run( "llvm Stacker front-end (stkrc)",
365 try_run( "llvm C/C++ front-end (llvm-gcc)",
366 "llvm-gcc -emit-llvm -W -Wall -O2 $stats -o $bytecodeFile -c $inputFile > $outputFile 2>&1",
384 "optimizing linker (llvm-ld)",
385 "llvm-ld $stats -o=$tmpFile $bytecodeFile > $outputFile 2>&1",
401 try_run( "llvm-dis",
402 "llvm-dis -o=$disassemblyFile $bytecodeFile > $outputFile 2>&1",
415 dumpFile( "Output from LLVM disassembler", $disassemblyFile );
419 print "<p>Hmm, that's weird, llvm-dis didn't produce any output.</p>\n";
424 try_run( "llvm-bcanalyzer", "llvm-bcanalyzer $bytecodeFile > $analFile 2>&1",