Home
last modified time | relevance | path

Searched refs:ResType (Results 1 – 15 of 15) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonPatternsHVX.td100 def: Pat<(ResType (Load (add (i32 AddrFI:$fi), ImmPred:$Off))),
104 def: Pat<(ResType (Load AddrFI:$fi)), (ResType (MI AddrFI:$fi, 0))>;
109 def: Pat<(ResType (Load (add I32:$Rt, ImmPred:$Off))),
111 def: Pat<(ResType (Load I32:$Rt)),
119 def: Pat<(ResType (Load (HexagonCP tconstpool:$Addr))),
121 def: Pat<(ResType (Load (HexagonAtPcrel tconstpool:$Addr))),
127 defm: HvxLdfi_pat<MI, Load, ResType, ImmPred>;
128 defm: HvxLdgi_pat<MI, Load, ResType, ImmPred>;
129 defm: HvxLdc_pat <MI, Load, ResType>;
136 def: Pat<(ResType (Load (valignaddr I32:$Rt))),
[all …]
H A DHexagonPatterns.td325 class OpR_RI_pat<InstHexagon MI, PatFrag Op, ValueType ResType,
327 : Pat<(ResType (Op RegPred:$Rs, ImmPred:$I)),
330 class OpR_RR_pat<InstHexagon MI, PatFrag Op, ValueType ResType,
332 : Pat<(ResType (Op RsPred:$Rs, RtPred:$Rt)),
715 class OpmR_RR_pat<PatFrag Output, PatFrag Op, ValueType ResType,
717 : Pat<(ResType (Op RsPred:$Rs, RtPred:$Rt)),
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp218 llvm::Type *ResType = llvm::Type::getInt32Ty(Ctx); in lowerPrintfForGpu() local
222 ResType = llvm::FixedVectorType::get(ResType, NumElem); in lowerPrintfForGpu()
229 Arg = Builder.CreateZExt(Arg, ResType); in lowerPrintfForGpu()
231 Arg = Builder.CreateSExt(Arg, ResType); in lowerPrintfForGpu()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DTargetInfo.cpp3556 llvm::Type *ResType = nullptr; in classifyReturnType() local
3646 ResType = GetByteVectorType(RetTy); in classifyReturnType()
3668 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
3670 return ABIArgInfo::getDirect(ResType); in classifyReturnType()
3690 llvm::Type *ResType = nullptr; in classifyArgumentType() local
3789 ResType = GetByteVectorType(Ty); in classifyArgumentType()
3797 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyArgumentType()
3799 return ABIArgInfo::getDirect(ResType); in classifyArgumentType()
5628 auto *ResType = in coerceIllegalVector() local
5633 auto *ResType = in coerceIllegalVector() local
[all …]
H A DCGBuiltin.cpp724 return ConstantInt::get(ResType, (Type & 2) ? 0 : -1, /*isSigned=*/true); in getDefaultBuiltinObjectSizeResult()
734 return emitBuiltinObjectSize(E, Type, ResType, EmittedE, IsDynamic); in evaluateOrEmitBuiltinObjectSize()
735 return ConstantInt::get(ResType, ObjectSize, /*isSigned=*/true); in evaluateOrEmitBuiltinObjectSize()
749 llvm::IntegerType *ResType, in emitBuiltinObjectSize() argument
774 return getDefaultBuiltinObjectSizeResult(Type, ResType); in emitBuiltinObjectSize()
781 CGM.getIntrinsic(Intrinsic::objectsize, {ResType, Ptr->getType()}); in emitBuiltinObjectSize()
2905 auto *ResType = cast<llvm::IntegerType>(ConvertType(E->getType())); in EmitBuiltinExpr() local
2910 return RValue::get(emitBuiltinObjectSize(E->getArg(0), Type, ResType, in EmitBuiltinExpr()
14568 llvm::Type *ResType = ConvertType(E->getType()); in EmitX86BuiltinExpr() local
14583 HigherBits = Builder.CreateIntCast(HigherBits, ResType, IsSigned); in EmitX86BuiltinExpr()
[all …]
H A DCGStmtOpenMP.cpp5615 QualType SourceType, QualType ResType, in convertToType() argument
5617 switch (CGF.getEvaluationKind(ResType)) { in convertToType()
5620 convertToScalarValue(CGF, Value, SourceType, ResType, Loc)); in convertToType()
5622 auto Res = convertToComplexValue(CGF, Value, SourceType, ResType, Loc); in convertToType()
H A DCodeGenFunction.h4634 llvm::IntegerType *ResType,
4642 llvm::IntegerType *ResType,
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-rc/
H A DResourceFileWriter.cpp556 auto ResType = Res->getResourceType(); in writeResource() local
557 RETURN_IF_ERROR(checkIntOrString(ResType, "Resource type")); in writeResource()
559 RETURN_IF_ERROR(handleError(writeIdentifier(ResType), Res)); in writeResource()
784 ulittle16_t ResType; // 1 for icons, 2 for cursors. member
902 if (Header->ResType != NeededType) in visitIconOrCursorResource()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp10403 QualType ResType = Operand->getType(); in checkArithmeticIncompletePointerType() local
10407 assert(ResType->isAnyPointerType() && !ResType->isDependentType()); in checkArithmeticIncompletePointerType()
10425 QualType ResType = Operand->getType(); in checkArithmeticOpPointerOperand() local
13249 QualType ResType = Op->getType(); in CheckIncrementDecrementOperand() local
13272 } else if (ResType->isRealType()) { in CheckIncrementDecrementOperand()
13274 } else if (ResType->isPointerType()) { in CheckIncrementDecrementOperand()
13284 } else if (ResType->isAnyComplexType()) { in CheckIncrementDecrementOperand()
13287 << ResType << Op->getSourceRange(); in CheckIncrementDecrementOperand()
13315 << IsInc << ResType; in CheckIncrementDecrementOperand()
13323 return ResType; in CheckIncrementDecrementOperand()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-matchers.h1876 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) {
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp2710 Type *ResType = I.getType(); in translateAtomicCmpXchg() local
2711 Type *ValType = ResType->Type::getStructElementType(0); in translateAtomicCmpXchg()
2738 Type *ResType = I.getType(); in translateAtomicRMW() local
2795 Flags, DL->getTypeStoreSize(ResType), in translateAtomicRMW()
/netbsd/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DObjCMT.cpp497 QualType ResType = Context.getCanonicalType(Getter->getReturnType()); in rewriteToObjCProperty() local
498 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ResType)) in rewriteToObjCProperty()
/netbsd/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp6400 Type *ResType = PFS.getFunction().getReturnType(); in parseRet() local
6403 if (!ResType->isVoidTy()) in parseRet()
6405 getTypeString(ResType) + "'"); in parseRet()
6415 if (ResType != RV->getType()) in parseRet()
6417 getTypeString(ResType) + "'"); in parseRet()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h3987 QualType ResType, ExprValueKind VK, ExprObjectKind OK, in CompoundAssignOperator() argument
3990 : BinaryOperator(C, lhs, rhs, opc, ResType, VK, OK, OpLoc, FPFeatures, in CompoundAssignOperator()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp10608 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error, in GetBuiltinType() local
10647 return getFunctionNoProtoType(ResType, EI); in GetBuiltinType()
10656 return getFunctionType(ResType, ArgTypes, EPI); in GetBuiltinType()