Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:ResultType

343   llvm::Type *ResultType = nullptr;
348 ResultType = llvm::StructType::get(getLLVMContext());
353 ResultType = GetFunctionType(*FI);
364 return ResultType;
384 llvm::Type *ResultType = nullptr;
403 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
408 ResultType = llvm::Type::getInt1Ty(getLLVMContext());
427 ResultType = llvm::IntegerType::get(getLLVMContext(),
433 ResultType =
441 ResultType = getTypeForFormat(getLLVMContext(),
448 ResultType = llvm::Type::getInt8PtrTy(getLLVMContext());
453 ResultType = llvm::IntegerType::get(getLLVMContext(), 128);
474 ResultType = CGM.getOpenCLRuntime().convertOpenCLSpecificType(Ty);
490 ResultType = llvm::StructType::get(EltTy, EltTy, nullptr);
499 ResultType = llvm::PointerType::get(PointeeType, AS);
509 ResultType = llvm::PointerType::get(PointeeType, AS);
519 ResultType = ConvertTypeForMem(A->getElementType());
528 ResultType = ConvertTypeForMem(A->getElementType());
529 if (!ResultType->isSized()) {
531 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
533 ResultType = llvm::ArrayType::get(ResultType, 0);
547 ResultType = llvm::ArrayType::get(EltTy, A->getSize().getZExtValue());
553 ResultType = llvm::VectorType::get(ConvertType(VT->getElementType()),
559 ResultType = ConvertFunctionType(T);
562 ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType());
572 ResultType = T;
582 ResultType = T->getPointerTo();
593 ResultType = llvm::Type::getInt32Ty(getLLVMContext());
601 ResultType = llvm::PointerType::get(PointeeType, AS);
608 ResultType =
615 ResultType = ConvertTypeForMem(valueType);
623 ResultType,
626 ResultType = llvm::StructType::get(getLLVMContext(),
633 assert(ResultType && "Didn't convert a type?");
635 TypeCache[Ty] = ResultType;
636 return ResultType;