| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTImporter.cpp | 78 using ExpectedType = llvm::Expected<QualType>; typedef 177 class ASTNodeImporter : public TypeVisitor<ASTNodeImporter, ExpectedType>, 403 using TypeVisitor<ASTNodeImporter, ExpectedType>::Visit; 408 ExpectedType VisitType(const Type *T); 410 ExpectedType Visit##Class##Type(const Class##Type *T); 848 ExpectedType ToTypeOrErr = import(From.getAsType()); in import() 856 ExpectedType ToTypeOrErr = import(From.getIntegralType()); in import() 866 ExpectedType ToTypeOrErr = import(From.getParamTypeForDecl()); in import() 874 ExpectedType ToTypeOrErr = import(From.getNullPtrType()); in import() 882 ExpectedType ToTypeOrErr = import(From.getStructuralValueType()); in import() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaPPC.cpp | 354 QualType ExpectedType = DecodePPCMMATypeFromStr(Context, TypeStr, Mask); in BuiltinPPCMMACall() local 372 if (StrippedRVType != ExpectedType) in BuiltinPPCMMACall() 373 if (!(ExpectedType->isVoidPointerType() && in BuiltinPPCMMACall() 377 << PassedType << ExpectedType << 1 << 0 << 0; in BuiltinPPCMMACall()
|
| H A D | SemaHLSL.cpp | 2466 static bool CheckArgTypeMatches(Sema *S, Expr *Arg, QualType ExpectedType) { in CheckArgTypeMatches() argument 2468 if (!S->getASTContext().hasSameUnqualifiedType(ArgType, ExpectedType)) { in CheckArgTypeMatches() 2470 << ArgType << ExpectedType << 1 << 0 << 0; in CheckArgTypeMatches()
|
| H A D | SemaLookup.cpp | 1212 QualType ExpectedType = R.getSema().Context.getFunctionType( in LookupDirect() local 1217 if (R.getSema().DeduceTemplateArguments(ConvTemplate, nullptr, ExpectedType, in LookupDirect()
|
| H A D | SemaDeclCXX.cpp | 16605 auto CheckType = [&](unsigned ParamIdx, QualType ExpectedType, in CheckOperatorNewDeleteTypes() 16608 if (ExpectedType.isNull()) { in CheckOperatorNewDeleteTypes() 16615 NormalizeType(SemaRef.Context.getCanonicalType(ExpectedType)); in CheckOperatorNewDeleteTypes() 16625 << FnDecl->getDeclName() << (1 + ParamIdx) << ExpectedType in CheckOperatorNewDeleteTypes()
|
| /freebsd/sys/contrib/dev/acpica/components/debugger/ |
| H A D | dbtest.c | 203 ACPI_OBJECT_TYPE ExpectedType, 1026 ACPI_OBJECT_TYPE ExpectedType, in AcpiDbReadFromObject() argument 1070 if (RetValue->Type != ExpectedType) in AcpiDbReadFromObject() 1073 AcpiUtGetTypeName (ExpectedType), in AcpiDbReadFromObject()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
| H A D | RangeSelector.cpp | 41 Twine ExpectedType) { in typeError() argument 43 ExpectedType + " (node id=" + ID + in typeError()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_handlers.h | 178 const TypeDescriptor &ExpectedType; member
|
| H A D | ubsan_handlers.cpp | 691 << GivenClassStr << Data->ExpectedType; in handleInvalidObjCCast()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVEmitIntrinsics.cpp | 1659 Type *ExpectedType = in insertPtrCastOrAssignTypeInstr() local 1661 if (!ExpectedType && !DemangledName.empty()) in insertPtrCastOrAssignTypeInstr() 1662 ExpectedType = SPIRV::parseBuiltinCallArgumentBaseType( in insertPtrCastOrAssignTypeInstr() 1664 if (!ExpectedType || ExpectedType->isVoidTy()) in insertPtrCastOrAssignTypeInstr() 1667 if (ExpectedType->isTargetExtTy() && in insertPtrCastOrAssignTypeInstr() 1668 !isTypedPointerWrapper(cast<TargetExtType>(ExpectedType))) in insertPtrCastOrAssignTypeInstr() 1669 insertAssignPtrTypeTargetExt(cast<TargetExtType>(ExpectedType), in insertPtrCastOrAssignTypeInstr() 1672 replacePointerOperandWithPtrCast(CI, ArgOperand, ExpectedType, OpIdx, B); in insertPtrCastOrAssignTypeInstr()
|
| H A D | SPIRVBuiltins.cpp | 736 unsigned ExpectedType = GR->getSPIRVTypeForVReg(ExpectedArg)->getOpcode(); in buildAtomicCompareExchangeInst() local 737 (void)ExpectedType; in buildAtomicCompareExchangeInst() 738 assert(IsCmpxchg ? ExpectedType == SPIRV::OpTypeInt in buildAtomicCompareExchangeInst() 739 : ExpectedType == SPIRV::OpTypePointer); in buildAtomicCompareExchangeInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | EarlyCSE.cpp | 961 Value *getOrCreateResult(Instruction *Inst, Type *ExpectedType, in getOrCreateResult() argument 975 return TTI.getOrCreateResultFromMemIntrinsic(II, ExpectedType, in getOrCreateResult() 982 return V->getType() == ExpectedType ? V : nullptr; in getOrCreateResult()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64TargetTransformInfo.h | 272 getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst, Type *ExpectedType,
|
| H A D | AArch64TargetTransformInfo.cpp | 4977 Type *ExpectedType, in getOrCreateResultFromMemIntrinsic() argument 4986 StructType *ST = dyn_cast<StructType>(ExpectedType); in getOrCreateResultFromMemIntrinsic() 4996 Value *Res = PoisonValue::get(ExpectedType); in getOrCreateResultFromMemIntrinsic() 5007 if (Inst->getType() == ExpectedType) in getOrCreateResultFromMemIntrinsic()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TargetTransformInfo.cpp | 1297 IntrinsicInst *Inst, Type *ExpectedType, bool CanCreate) const { in getOrCreateResultFromMemIntrinsic() argument 1298 return TTIImpl->getOrCreateResultFromMemIntrinsic(Inst, ExpectedType, in getOrCreateResultFromMemIntrinsic()
|
| H A D | ValueTracking.cpp | 6944 const Type *ExpectedType = Inst->getType(); in isSafeToSpeculativelyExecuteWithOpcode() local 6946 if (Inst->getOperand(ItOp)->getType() != ExpectedType) in isSafeToSpeculativelyExecuteWithOpcode()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetTransformInfo.h | 1710 getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst, Type *ExpectedType,
|
| H A D | TargetTransformInfoImpl.h | 987 getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst, Type *ExpectedType,
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCalls.cpp | 4249 ConstantInt *ExpectedType = cast<ConstantInt>(Bundle->Inputs[0]); in visitCallBase() 4255 FunctionType->getZExtValue() != ExpectedType->getZExtValue()) in visitCallBase()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 445 unsigned ExpectedType) { in getLinkAsSymtab() argument 452 if ((*SymtabOrErr)->sh_type != ExpectedType) in getLinkAsSymtab() 455 object::getELFSectionTypeName(Obj.getHeader().e_machine, ExpectedType) + in getLinkAsSymtab()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 2212 MVT ExpectedType = (type == MVT::v2f16) ? MVT::f16 in isLiteralImm() local 2218 return canLosslesslyConvertToFPType(FPLiteral, ExpectedType); in isLiteralImm()
|