HomeSort by: relevance | last modified time | path
    Searched defs:destType (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprConstant.cpp 1042 llvm::Constant *VisitCastExpr(CastExpr *E, QualType destType) {
1058 auto destTy = ConvertType(destType);
1099 return Visit(subExpr, destType);
1263 QualType destType) {
1264 auto C = Visit(E->getBase(), destType);
1271 if (!EmitDesignatedInitUpdater(Emitter, Const, CharUnits::Zero(), destType,
1275 llvm::Type *ValTy = CGM.getTypes().ConvertType(destType);
1277 if (auto *RT = destType->getAs<RecordType>())
1353 ConstantEmitter::tryEmitAbstract(const Expr *E, QualType destType) {
1355 auto C = tryEmitPrivate(E, destType);
    [all...]
CGExpr.cpp 57 llvm::PointerType *destType = Int8PtrTy;
59 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace);
61 if (value->getType() == destType) return value;
62 return Builder.CreateBitCast(value, destType);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 2940 QualType DestType;
2953 DestType = Context.getPointerType(DestRecordType);
2957 DestType = DestRecordType;
2964 DestType = Method->getThisType();
2965 DestRecordType = DestType->getPointeeType();
2972 DestType = DestRecordType;
2993 if (DestType->isDependentType() || FromType->isDependentType())
3059 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase,
7946 QualType destType = S.Context.getPointerType(S.Context.VoidTy);
7947 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast)
    [all...]

Completed in 25 milliseconds