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

/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp84 /// ConvertType in that it is used to convert to the memory representation for
88 llvm::Type *R = ConvertType(T);
248 if (!ConvertType(ED->getIntegerType())->isIntegerTy(32))
292 /// ConvertType - Convert the specified type to its LLVM form.
293 llvm::Type *CodeGenTypes::ConvertType(QualType T) { function in class:CodeGenTypes
403 llvm::Type *EltTy = ConvertType(cast<ComplexType>(Ty)->getElementType());
467 ResultType = llvm::VectorType::get(ConvertType(VT->getElementType()),
542 ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType());
569 return ConvertType(ED->getIntegerType());
H A DCGExprConstant.cpp525 // Pick the type to use. If the type is layout identical to the ConvertType
530 llvm::Type *ValTy = CGM.getTypes().ConvertType(Ty);
625 llvm::Type *destType = ConvertType(E->getType());
746 cast<llvm::ArrayType>(ConvertType(ILE->getType()));
870 llvm::Type *ConvertType(QualType T) { function in class:__anon15205::ConstExprEmitter
871 return CGM.getTypes().ConvertType(T);
920 return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType()));
937 return llvm::ConstantExpr::getBitCast(Ptr, ConvertType(E->getType()));
1168 llvm::Type *ResultType = getTypes().ConvertType(DestType);
H A DCodeGenFunction.cpp81 llvm::Type *CodeGenFunction::ConvertType(QualType T) { function in class:CodeGenFunction
82 return CGM.getTypes().ConvertType(T);
450 llvm::UndefValue::get(CGM.getTypes().ConvertType(attr->getTypeHint())),
1192 llvm::Type *BaseType = ConvertType(eltType)->getPointerTo(AddressSpace);
H A DCodeGenFunction.h1245 llvm::Type *ConvertType(QualType T);
1246 llvm::Type *ConvertType(const TypeDecl *T) { function in class:clang::CodeGen::CodeGenFunction
1247 return ConvertType(getContext().getTypeDeclType(T));
H A DCGExprScalar.cpp82 llvm::Type *ConvertType(QualType T) { return CGF.ConvertType(T); } function in class:__anon15207::ScalarExprEmitter
189 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
192 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
195 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
207 return Builder.CreateBitCast(V, ConvertType(E->getType()));
211 return llvm::ConstantInt::get(ConvertType(E->getType()),E->getPackLength());
372 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
713 llvm::Type *DstTy = ConvertType(DstType);
891 return llvm::UndefValue::get(CGF.ConvertType(
[all...]

Completed in 142 milliseconds