Searched refs:ResType (Results 1 - 9 of 9) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp2820 llvm::Type *ResType = nullptr;
2825 // If the low part is just padding, it takes no register, leave ResType
2843 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
2847 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) {
2861 ResType = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
2867 ResType = llvm::Type::getX86_FP80Ty(getVMContext());
2875 ResType = llvm::StructType::get(llvm::Type::getX86_FP80Ty(getVMContext()),
2911 ResType = GetByteVectorType(RetTy);
2933 ResType = GetX86_64ByValArgumentPair(ResType, HighPar
[all...]
H A DCGStmtOpenMP.cpp2322 QualType SourceType, QualType ResType,
2324 switch (CGF.getEvaluationKind(ResType)) {
2327 convertToScalarValue(CGF, Value, SourceType, ResType, Loc));
2329 auto Res = convertToComplexValue(CGF, Value, SourceType, ResType, Loc);
2321 convertToType(CodeGenFunction &CGF, RValue Value, QualType SourceType, QualType ResType, SourceLocation Loc) argument
H A DCGBuiltin.cpp355 getDefaultBuiltinObjectSizeResult(unsigned Type, llvm::IntegerType *ResType) { argument
356 return ConstantInt::get(ResType, (Type & 2) ? 0 : -1, /*isSigned=*/true);
361 llvm::IntegerType *ResType) {
364 return emitBuiltinObjectSize(E, Type, ResType);
365 return ConstantInt::get(ResType, ObjectSize, /*isSigned=*/true);
375 llvm::IntegerType *ResType) {
399 return getDefaultBuiltinObjectSizeResult(Type, ResType);
405 llvm::Type *Tys[] = {ResType, Builder.getInt8PtrTy(0)};
656 auto *ResType = cast<llvm::IntegerType>(ConvertType(E->getType())); local
660 return RValue::get(emitBuiltinObjectSize(E->getArg(0), Type, ResType));
360 evaluateOrEmitBuiltinObjectSize(const Expr *E, unsigned Type, llvm::IntegerType *ResType) argument
374 emitBuiltinObjectSize(const Expr *E, unsigned Type, llvm::IntegerType *ResType) argument
[all...]
H A DCodeGenFunction.h3086 llvm::IntegerType *ResType);
3092 llvm::IntegerType *ResType);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp7886 QualType ResType = Operand->getType(); local
7887 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
7888 ResType = ResAtomicType->getValueType();
7890 assert(ResType->isAnyPointerType() && !ResType->isDependentType());
7891 QualType PointeeTy = ResType->getPointeeType();
7907 QualType ResType = Operand->getType(); local
7908 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
7909 ResType = ResAtomicType->getValueType();
7911 if (!ResType
9864 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp494 QualType ResType = Context.getCanonicalType(Getter->getReturnType()); local
495 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ResType))
/freebsd-11.0-release/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp4883 Type *ResType = PFS.getFunction().getReturnType();
4886 if (!ResType->isVoidTy())
4888 getTypeString(ResType) + "'");
4897 if (ResType != RV->getType())
4899 getTypeString(ResType) + "'");
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h3074 CompoundAssignOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResType, argument
3078 : BinaryOperator(lhs, rhs, opc, ResType, VK, OK, OpLoc, fpContractable,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp8275 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error, local
8312 return getFunctionNoProtoType(ResType, EI);
8318 return getFunctionType(ResType, ArgTypes, EPI);

Completed in 352 milliseconds