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

/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp2117 llvm::Type *ResType = 0;
2122 // If the low part is just padding, it takes no register, leave ResType
2140 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
2144 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) {
2158 ResType = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
2164 ResType = llvm::Type::getX86_FP80Ty(getVMContext());
2172 ResType = llvm::StructType::get(llvm::Type::getX86_FP80Ty(getVMContext()),
2208 ResType = GetByteVectorType(RetTy);
2230 ResType = GetX86_64ByValArgumentPair(ResType, HighPar
[all...]
H A DCGBuiltin.cpp403 llvm::Type *ResType = ConvertType(E->getType()); local
413 llvm::Type *Tys[] = { ResType, Builder.getInt8PtrTy(0) };
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp8540 QualType ResType = Op->getType();
8544 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
8545 ResType = ResAtomicType->getValueType();
8547 assert(!ResType.isNull() && "no type for increment/decrement expression");
8549 if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) {
8557 } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) {
8559 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; local
8561 } else if (ResType->isRealType()) {
8563 } else if (ResType->isPointerType()) {
8567 } else if (ResType
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp349 QualType ResType = Context.getCanonicalType(Getter->getResultType()); local
350 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ResType))
/freebsd-10.1-release/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp3393 Type *ResType = PFS.getFunction().getReturnType();
3396 if (!ResType->isVoidTy())
3398 getTypeString(ResType) + "'");
3407 if (ResType != RV->getType())
3409 getTypeString(ResType) + "'");
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h3084 CompoundAssignOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResType, argument
3088 : BinaryOperator(lhs, rhs, opc, ResType, VK, OK, OpLoc, fpContractable,
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp7794 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error, local
7828 return getFunctionNoProtoType(ResType, EI);
7834 return getFunctionType(ResType, ArgTypes, EPI);

Completed in 224 milliseconds