Home | History | Annotate | Download | only in bcinfo

Lines Matching refs:bitcode

28 #include "llvm/Bitcode/BitstreamWriter.h"
29 #include "llvm/Bitcode/ReaderWriter.h"
61 * compatible with LLVM's default bitcode reader).
68 BitcodeTranslator::BitcodeTranslator(const char *bitcode, size_t bitcodeSize,
70 : mBitcode(bitcode), mBitcodeSize(bitcodeSize), mTranslatedBitcode(NULL),
79 // the bitcode would be improper.
89 ALOGE("Invalid/empty bitcode");
95 ALOGE("Bitcode wrapper (%u) and translator (%u) disagree about target API",
115 // Do the actual transcoding by invoking a 2.7-era bitcode reader that can
116 // then write the bitcode back out in a more modern (acceptable) version.
131 ALOGE("No compatible bitcode reader for API version %d", mVersion);
136 ALOGE("Could not parse bitcode file");
152 ALOGE("Couldn't produce bitcode wrapper!");