Lines Matching full:bitcode
28 #include "llvm/Bitcode/ReaderWriter.h"
38 llvm::raw_string_ostream Bitcode(BitcodeStr);
40 // The older bitcode writers will produce invalid bitcode if the -g
42 // when -g is set. However, this will produce a bitcode file linked to
45 // If bcc receives a bitcode file with a format of debug info
47 // fail the verification stage. Failing this stage results in the bitcode
48 // loader returning null and the compiler will terminate abruptly. Bitcode
53 // bitcode. At the moment the only practical guarantee which can be made
54 // is that the debug bitcode emitted by any slang will work with the bcc
57 llvm::WriteBitcodeToFile(&M, Bitcode);
59 // Create the bitcode.
65 llvm_2_9::WriteBitcodeToFile(&M, Bitcode);
71 llvm_2_9_func::WriteBitcodeToFile(&M, Bitcode);
82 llvm_3_2::WriteBitcodeToFile(&M, Bitcode);
90 // Create the bitcode wrapper.
93 &Wrapper, Bitcode.str().length(), TargetAPI,
100 Out << Bitcode.str();