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.cpp958 SmallVector<uint64_t, 64> TypeVals; in writeTypeTable() local
1008 TypeVals.push_back(TypeList.size()); in writeTypeTable()
1009 Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY, TypeVals); in writeTypeTable()
1010 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.cpp1023 SmallVector<uint64_t, 64> TypeVals; in writeTypeTable() local
1072 TypeVals.push_back(TypeList.size()); in writeTypeTable()
1073 Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY, TypeVals); in writeTypeTable()
1074 TypeVals.clear(); in writeTypeTable()
1098 TypeVals.push_back(cast<IntegerType>(T)->getBitWidth()); in writeTypeTable()
1105 TypeVals.push_back(AddressSpace); in writeTypeTable()
1114 TypeVals.push_back(FT->isVarArg()); in writeTypeTable()
1115 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in writeTypeTable()
1117 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); in writeTypeTable()
1124 TypeVals.push_back(ST->isPacked()); in writeTypeTable()
[all …]