Searched refs:AlignRecord (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2944 unsigned AlignRecord = Log2_32(AI.getAlignment()) + 1; local
2947 assert(AlignRecord < 1 << 5 && "alignment greater than 1 << 64");
2948 AlignRecord |= AI.isUsedWithInAlloca() << 5;
2949 AlignRecord |= 1 << 6;
2950 AlignRecord |= AI.isSwiftError() << 7;
2951 Vals.push_back(AlignRecord);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4809 uint64_t AlignRecord = Record[3];
4815 bool InAlloca = AlignRecord & InAllocaMask;
4816 bool SwiftError = AlignRecord & SwiftErrorMask;
4819 if ((AlignRecord & ExplicitTypeMask) == 0) {
4828 if (Error Err = parseAlignmentValue(AlignRecord & ~FlagMask, Align)) {

Completed in 101 milliseconds