Lines Matching full:bitcode
31 #include "llvm/Bitcode/BitstreamWriter.h"
32 #include "llvm/Bitcode/ReaderWriter.h"
66 * compatible with LLVM's default bitcode reader).
78 BitcodeTranslator::BitcodeTranslator(const char *bitcode, size_t bitcodeSize,
80 : mBitcode(bitcode), mBitcodeSize(bitcodeSize), mTranslatedBitcode(nullptr),
89 // the bitcode would be improper.
99 ALOGE("Invalid/empty bitcode");
105 ALOGE("Bitcode wrapper (%u) and translator (%u) disagree about target API",
126 // Do the actual transcoding by invoking a 2.7-era bitcode reader that can
127 // then write the bitcode back out in a more modern (acceptable) version.
142 ALOGE("No compatible bitcode reader for API version %d", mVersion);
147 ALOGE("Could not parse bitcode file");
160 // Use the LLVM 3.2 bitcode writer, instead of the top-of-tree version.
169 ALOGE("Couldn't produce bitcode wrapper!");