Home
last modified time | relevance | path

Searched refs:TypeVals (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp961 SmallVector<uint64_t, 64> TypeVals; in writeTypeTable() local
1011 TypeVals.push_back(TypeList.size()); in writeTypeTable()
1012 Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY, TypeVals); in writeTypeTable()
1013 TypeVals.clear(); in writeTypeTable()
1057 TypeVals.push_back(cast<IntegerType>(T)->getBitWidth()); in writeTypeTable()
1063 TypeVals.push_back(getTypeID(PTy->getElementType())); in writeTypeTable()
1065 TypeVals.push_back(AddressSpace); in writeTypeTable()
1075 TypeVals.push_back(false); in writeTypeTable()
1085 TypeVals.push_back(FT->isVarArg()); in writeTypeTable()
1086 TypeVals.push_back(getTypeID(FT->getReturnType())); in writeTypeTable()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1091 SmallVector<uint64_t, 64> TypeVals; in writeTypeTable() local
1140 TypeVals.push_back(TypeList.size()); in writeTypeTable()
1141 Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY, TypeVals); in writeTypeTable()
1142 TypeVals.clear(); in writeTypeTable()
1167 TypeVals.push_back(cast<IntegerType>(T)->getBitWidth()); in writeTypeTable()
1174 TypeVals.push_back(AddressSpace); in writeTypeTable()
1183 TypeVals.push_back(FT->isVarArg()); in writeTypeTable()
1184 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in writeTypeTable()
1186 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); in writeTypeTable()
1193 TypeVals.push_back(ST->isPacked()); in writeTypeTable()
[all …]