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))
287 /// ConvertType - Convert the specified type to its LLVM form.
288 llvm::Type *CodeGenTypes::ConvertType(QualType T) {
396 llvm::Type *EltTy = ConvertType(cast<ComplexType>(Ty)->getElementType());
460 ResultType = llvm::VectorType::get(ConvertType(VT->getElementType()),
535 ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType());
562 return ConvertType(ED->getIntegerType());
CodeGenFunction.cpp 76 llvm::Type *CodeGenFunction::ConvertType(QualType T) {
77 return CGM.getTypes().ConvertType(T);
335 llvm::UndefValue::get(CGM.getTypes().ConvertType(attr->getTypeHint())),
    [all...]
CGExprConstant.cpp 558 // 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());
769 cast<llvm::ArrayType>(ConvertType(ILE->getType()));
893 llvm::Type *ConvertType(QualType T) {
894 return CGM.getTypes().ConvertType(T);
    [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());
368 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
678 llvm::Type *DstTy = ConvertType(DstType);
    [all...]

Completed in 167 milliseconds