Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:ResultType

298   llvm::Type *ResultType = 0;
318 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
323 ResultType = llvm::Type::getInt1Ty(getLLVMContext());
342 ResultType = llvm::IntegerType::get(getLLVMContext(),
352 ResultType = llvm::Type::getInt16Ty(getLLVMContext());
357 ResultType = getTypeForFormat(getLLVMContext(),
363 ResultType = llvm::Type::getInt8PtrTy(getLLVMContext());
368 ResultType = llvm::IntegerType::get(getLLVMContext(), 128);
383 ResultType = llvm::StructType::get(EltTy, EltTy, NULL);
392 ResultType = llvm::PointerType::get(PointeeType, AS);
402 ResultType = llvm::PointerType::get(PointeeType, AS);
412 ResultType = ConvertTypeForMem(A->getElementType());
421 ResultType = ConvertTypeForMem(A->getElementType());
422 ResultType->isSized()) {
424 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
426 ResultType = llvm::ArrayType::get(ResultType, 0);
440 ResultType = llvm::ArrayType::get(EltTy, A->getSize().getZExtValue());
446 ResultType = llvm::VectorType::get(ConvertType(VT->getElementType()),
459 ResultType = llvm::StructType::get(getLLVMContext());
469 ResultType = llvm::StructType::get(getLLVMContext());
494 ResultType = llvm::StructType::get(getLLVMContext());
499 ResultType = GetFunctionType(*FI, isVariadic);
514 ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType());
524 ResultType = T;
534 ResultType = T->getPointerTo();
545 ResultType = llvm::Type::getInt32Ty(getLLVMContext());
553 ResultType = llvm::PointerType::get(PointeeType, AS);
558 ResultType =
564 ResultType = ConvertTypeForMem(cast<AtomicType>(Ty)->getValueType());
569 assert(ResultType && "Didn't convert a type?");
571 TypeCache[Ty] = ResultType;
572 return ResultType;