Home | History | Annotate | Download | only in slang

Lines Matching refs:Bitcode

39 #include "llvm/Bitcode/ReaderWriter.h"
237 // Encase the Bitcode in a wrapper containing RS version information.
238 void Backend::WrapBitcode(llvm::raw_string_ostream &Bitcode) {
241 &wrapper, Bitcode.str().length(), getTargetAPI(),
246 // Write out the bitcode wrapper.
249 // Write out the actual encoded bitcode.
250 FormattedOutStream << Bitcode.str();
349 llvm::raw_string_ostream Bitcode(BCStr);
356 BCEmitPM->add(llvm_2_9::createBitcodeWriterPass(Bitcode));
362 BCEmitPM->add(llvm_2_9_func::createBitcodeWriterPass(Bitcode));
370 BCEmitPM->add(llvm::createBitcodeWriterPass(Bitcode));
376 WrapBitcode(Bitcode);