HomeSort by relevance Sort by last modified time
    Searched defs:ConvertType (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 84 /// 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) {
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());
CodeGenFunction.cpp 81 llvm::Type *CodeGenFunction::ConvertType(QualType T) {
82 return CGM.getTypes().ConvertType(T);
450 llvm::UndefValue::get(CGM.getTypes().ConvertType(attr->getTypeHint())),
    [all...]
CGExprConstant.cpp 525 // 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) {
871 return CGM.getTypes().ConvertType(T);
920 return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType()));
    [all...]
CodeGenFunction.h     [all...]
CGExprScalar.cpp 82 llvm::Type *ConvertType(QualType T) { return CGF.ConvertType(T); }
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);
    [all...]

Completed in 208 milliseconds