Home | History | Annotate | Download | only in Reader

Lines Matching full:bitcode

10 #include "llvm/Bitcode/ReaderWriter.h"
428 // Functions for parsing blocks from the bitcode file
1051 unsigned BitCode = Stream.readRecord(Entry.ID, Record);
1052 switch (BitCode) {
1146 BitCode == bitc::CST_CODE_CSTRING);
1255 BitCode ==
1566 // For streaming bitcode, suspend parsing when we reach the function
1569 // the bitcode. If the bitcode file is old, the symbol table will be
1766 // Old bitcode files didn't have visibility field.
1797 return Error("Invalid bitcode signature");
1898 return Error("Invalid bitcode signature");
2001 return Error("Bitcode error in function block");
2035 unsigned BitCode = Stream.readRecord(Entry.ID, Record);
2036 switch (BitCode) {
2166 if (BitCode == bitc::FUNC_CODE_INST_INBOUNDS_GEP)
2218 // handles select i1 ... in old bitcode
2857 /// FindFunctionInStream - Find the function body in the bitcode stream
2988 return Error("Invalid bitcode signature");
2990 return Error("Bitcode stream should be a multiple of 4 bytes in length");
2997 return Error("Invalid bitcode wrapper header");
3006 // Check and strip off the bitcode wrapper; BitstreamReader expects never to
3014 return Error("Bitcode stream must be at least 16 bytes in length");
3017 return Error("Invalid bitcode signature");
3074 /// ParseBitcodeFile - Read the specified bitcode file, returning the module.
3091 // TODO: Restore the use-lists to the in-memory state when the bitcode was