Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
DBitcodeWriter.cpp195 SmallVector<uint64_t, 64> TypeVals; in WriteTypeTable() local
249 TypeVals.push_back(TypeList.size()); in WriteTypeTable()
250 Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY, TypeVals); in WriteTypeTable()
251 TypeVals.clear(); in WriteTypeTable()
273 TypeVals.push_back(cast<IntegerType>(T)->getBitWidth()); in WriteTypeTable()
279 TypeVals.push_back(VE.getTypeID(PTy->getElementType())); in WriteTypeTable()
281 TypeVals.push_back(AddressSpace); in WriteTypeTable()
289 TypeVals.push_back(FT->isVarArg()); in WriteTypeTable()
290 TypeVals.push_back(0); // FIXME: DEAD: remove in llvm 3.0 in WriteTypeTable()
291 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in WriteTypeTable()
[all …]
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp754 SmallVector<uint64_t, 64> TypeVals; in writeTypeTable() local
808 TypeVals.push_back(TypeList.size()); in writeTypeTable()
809 Stream.EmitRecord(bitc::TYPE_CODE_NUMENTRY, TypeVals); in writeTypeTable()
810 TypeVals.clear(); in writeTypeTable()
833 TypeVals.push_back(cast<IntegerType>(T)->getBitWidth()); in writeTypeTable()
839 TypeVals.push_back(VE.getTypeID(PTy->getElementType())); in writeTypeTable()
841 TypeVals.push_back(AddressSpace); in writeTypeTable()
849 TypeVals.push_back(FT->isVarArg()); in writeTypeTable()
850 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in writeTypeTable()
852 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); in writeTypeTable()
[all …]