Searched defs:ConvertType (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp83 /// ConvertType in that it is used to convert to the memory representation for
87 llvm::Type *R = ConvertType(T);
247 if (!ConvertType(ED->getIntegerType())->isIntegerTy(32))
281 /// ConvertType - Convert the specified type to its LLVM form.
282 llvm::Type *CodeGenTypes::ConvertType(QualType T) { function in class:CodeGenTypes
380 llvm::Type *EltTy = ConvertType(cast<ComplexType>(Ty)->getElementType());
444 ResultType = llvm::VectorType::get(ConvertType(VT->getElementType()),
509 ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType());
536 return ConvertType(ED->getIntegerType());
559 ResultType = ConvertType(cas
[all...]
H A DCGExprConstant.cpp558 // Pick the type to use. If the type is layout identical to the ConvertType
563 llvm::Type *ValTy = CGM.getTypes().ConvertType(Ty);
654 llvm::Type *destType = ConvertType(E->getType());
768 cast<llvm::ArrayType>(ConvertType(ILE->getType()));
899 llvm::Type *ConvertType(QualType T) { function in class:__anon46::ConstExprEmitter
900 return CGM.getTypes().ConvertType(T);
951 return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType()));
968 return llvm::ConstantExpr::getBitCast(Ptr, ConvertType(E->getType()));
1170 llvm::Type *ResultType = getTypes().ConvertType(DestType);
H A DCodeGenFunction.cpp62 llvm::Type *CodeGenFunction::ConvertType(QualType T) { function in class:CodeGenFunction
63 return CGM.getTypes().ConvertType(T);
988 llvm::Type *BaseType = ConvertType(eltType)->getPointerTo(AddressSpace);
H A DCodeGenFunction.h1489 llvm::Type *ConvertType(QualType T);
1490 llvm::Type *ConvertType(const TypeDecl *T) { function in namespace:clang::CodeGen
1491 return ConvertType(getContext().getTypeDeclType(T));
H A DCGExprScalar.cpp81 llvm::Type *ConvertType(QualType T) { return CGF.ConvertType(T); } function in class:__anon48::ScalarExprEmitter
180 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
183 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
186 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
198 return Builder.CreateBitCast(V, ConvertType(E->getType()));
202 return llvm::ConstantInt::get(ConvertType(E->getType()),E->getPackLength());
359 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
562 llvm::Type *DstTy = ConvertType(DstType);
684 return llvm::Constant::getNullValue(ConvertType(T
[all...]

Completed in 96 milliseconds