Lines Matching defs:FT
524 auto *FT = getFunctionType();
528 Type *ArgTy = FT->getParamType(i);
1021 } else if (FunctionType *FT = dyn_cast<FunctionType>(Ty)) {
1022 Result += "f_" + getMangledTypeStr(FT->getReturnType(), HasUnnamedType);
1023 for (size_t i = 0; i < FT->getNumParams(); i++)
1024 Result += getMangledTypeStr(FT->getParamType(i), HasUnnamedType);
1025 if (FT->isVarArg())
1079 Module *M, FunctionType *FT,
1095 if (!FT)
1096 FT = Intrinsic::getType(M->getContext(), Id, Tys);
1098 assert((FT == Intrinsic::getType(M->getContext(), Id, Tys)) &&
1100 return M->getUniqueIntrinsicName(Result, Id, FT);
1106 FunctionType *FT) {
1108 return getIntrinsicNameImpl(Id, Tys, M, FT, true);
1516 auto *FT = getType(M->getContext(), id, Tys);
1519 Tys.empty() ? getName(id) : getName(id, Tys, M, FT), FT)
1809 bool Intrinsic::getIntrinsicSignature(Intrinsic::ID ID, FunctionType *FT,
1818 if (Intrinsic::matchIntrinsicSignature(FT, TableRef, ArgTys) !=
1822 if (Intrinsic::matchIntrinsicVarArg(FT->isVarArg(), TableRef))