Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:ResultType

354   llvm::Type *ResultType = nullptr;
359 ResultType = llvm::StructType::get(getLLVMContext());
364 ResultType = GetFunctionType(*FI);
375 return ResultType;
395 llvm::Type *ResultType = nullptr;
414 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
419 ResultType = llvm::Type::getInt1Ty(getLLVMContext());
438 ResultType = llvm::IntegerType::get(getLLVMContext(),
444 ResultType =
453 ResultType = getTypeForFormat(getLLVMContext(),
460 ResultType = llvm::Type::getInt8PtrTy(getLLVMContext());
465 ResultType = llvm::IntegerType::get(getLLVMContext(), 128);
477 ResultType = CGM.getOpenCLRuntime().convertOpenCLSpecificType(Ty);
493 ResultType = llvm::StructType::get(EltTy, EltTy, nullptr);
502 ResultType = llvm::PointerType::get(PointeeType, AS);
512 ResultType = llvm::PointerType::get(PointeeType, AS);
522 ResultType = ConvertTypeForMem(A->getElementType());
531 ResultType = ConvertTypeForMem(A->getElementType());
532 if (!ResultType->isSized()) {
534 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
536 ResultType = llvm::ArrayType::get(ResultType, 0);
550 ResultType = llvm::ArrayType::get(EltTy, A->getSize().getZExtValue());
556 ResultType = llvm::VectorType::get(ConvertType(VT->getElementType()),
562 ResultType = ConvertFunctionType(T);
565 ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType());
575 ResultType = T;
585 ResultType = T->getPointerTo();
596 ResultType = llvm::Type::getInt32Ty(getLLVMContext());
604 ResultType = llvm::PointerType::get(PointeeType, AS);
612 ResultType = llvm::StructType::create(getLLVMContext());
614 ResultType = getCXXABI().ConvertMemberPointerType(MPTy);
621 ResultType = ConvertTypeForMem(valueType);
629 ResultType,
632 ResultType = llvm::StructType::get(getLLVMContext(),
638 ResultType = CGM.getOpenCLRuntime().getPipeType();
643 assert(ResultType && "Didn't convert a type?");
645 TypeCache[Ty] = ResultType;
646 return ResultType;