HomeSort by: relevance | last modified time | path
    Searched refs:ResType (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPrintfRuntimeBinding.cpp 218 llvm::Type *ResType = llvm::Type::getInt32Ty(Ctx);
222 ResType = llvm::FixedVectorType::get(ResType, NumElem);
229 Arg = Builder.CreateZExt(Arg, ResType);
231 Arg = Builder.CreateSExt(Arg, ResType);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp 3556 llvm::Type *ResType = nullptr;
3561 // If the low part is just padding, it takes no register, leave ResType
3579 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
3583 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) {
3597 ResType = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
3603 ResType = llvm::Type::getX86_FP80Ty(getVMContext());
3611 ResType = llvm::StructType::get(llvm::Type::getX86_FP80Ty(getVMContext()),
3646 ResType = GetByteVectorType(RetTy);
3668 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout())
    [all...]
CGBuiltin.cpp 723 getDefaultBuiltinObjectSizeResult(unsigned Type, llvm::IntegerType *ResType) {
724 return ConstantInt::get(ResType, (Type & 2) ? 0 : -1, /*isSigned=*/true);
729 llvm::IntegerType *ResType,
734 return emitBuiltinObjectSize(E, Type, ResType, EmittedE, IsDynamic);
735 return ConstantInt::get(ResType, ObjectSize, /*isSigned=*/true);
749 llvm::IntegerType *ResType,
774 return getDefaultBuiltinObjectSizeResult(Type, ResType);
781 CGM.getIntrinsic(Intrinsic::objectsize, {ResType, Ptr->getType()});
2905 auto *ResType = cast<llvm::IntegerType>(ConvertType(E->getType()));
2910 return RValue::get(emitBuiltinObjectSize(E->getArg(0), Type, ResType,
    [all...]
CGStmtOpenMP.cpp 5615 QualType SourceType, QualType ResType,
5617 switch (CGF.getEvaluationKind(ResType)) {
5620 convertToScalarValue(CGF, Value, SourceType, ResType, Loc));
5622 auto Res = convertToComplexValue(CGF, Value, SourceType, ResType, Loc);
CodeGenFunction.h 4634 llvm::IntegerType *ResType,
4642 llvm::IntegerType *ResType,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceFileWriter.cpp 556 auto ResType = Res->getResourceType();
557 RETURN_IF_ERROR(checkIntOrString(ResType, "Resource type"));
559 RETURN_IF_ERROR(handleError(writeIdentifier(ResType), Res));
784 ulittle16_t ResType; // 1 for icons, 2 for cursors.
902 if (Header->ResType != NeededType)
903 return createError("Incorrect icon/cursor ResType field; should be " +
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h 1876 template <typename ArgType, typename ResType>
1877 struct CallableTraits<ResType(*)(ArgType)> {
1878 typedef ResType ResultType;
1879 typedef ResType(*StorageType)(ArgType);
1881 static void CheckIsValid(ResType(*f)(ArgType)) {
1886 static ResType Invoke(ResType(*f)(ArgType), T arg) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 10403 QualType ResType = Operand->getType();
10404 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
10405 ResType = ResAtomicType->getValueType();
10407 assert(ResType->isAnyPointerType() && !ResType->isDependentType());
10408 QualType PointeeTy = ResType->getPointeeType();
10425 QualType ResType = Operand->getType();
10426 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
10427 ResType = ResAtomicType->getValueType();
10429 if (!ResType->isAnyPointerType()) return true
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 2710 Type *ResType = I.getType();
2711 Type *ValType = ResType->Type::getStructElementType(0);
2738 Type *ResType = I.getType();
2795 Flags, DL->getTypeStoreSize(ResType),
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 497 QualType ResType = Context.getCanonicalType(Getter->getReturnType());
498 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ResType))
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 6400 Type *ResType = PFS.getFunction().getReturnType();
6403 if (!ResType->isVoidTy())
6405 getTypeString(ResType) + "'");
6415 if (ResType != RV->getType())
6417 getTypeString(ResType) + "'");
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 3987 QualType ResType, ExprValueKind VK, ExprObjectKind OK,
3990 : BinaryOperator(C, lhs, rhs, opc, ResType, VK, OK, OpLoc, FPFeatures,
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 10608 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
10647 return getFunctionNoProtoType(ResType, EI);
10656 return getFunctionType(ResType, ArgTypes, EPI);

Completed in 74 milliseconds