Lines Matching defs:FTy
1231 llvm::FunctionType *FTy =
1235 llvm::InlineAsm::get(FTy, Asm, Constraints, /*hasSideEffects=*/true);
1371 llvm::FunctionType *FTy = llvm::FunctionType::get(RetType, {PtrType}, false);
1374 llvm::InlineAsm::get(FTy, Asm, Constraints, /*hasSideEffects=*/true);
1974 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, {Int32Ty}, false);
1976 llvm::InlineAsm::get(FTy, Asm, Constraints, /*hasSideEffects=*/true);
4767 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FuncInfo);
4768 llvm::FunctionCallee Func = CGM.CreateRuntimeFunction(FTy, LibCallName);
5557 llvm::FunctionType *FTy = llvm::FunctionType::get(
5561 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name),
5573 llvm::FunctionType *FTy = llvm::FunctionType::get(
5581 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name),
5617 llvm::FunctionType *FTy = llvm::FunctionType::get(
5623 return RValue::get(EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name),
5656 llvm::FunctionType *FTy =
5660 return RValue::get(EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name),
5681 llvm::FunctionType *FTy = llvm::FunctionType::get(
5684 return RValue::get(EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name),
5700 auto FTy = llvm::FunctionType::get(NewRetT, {NewArgT}, false);
5709 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, NewName), {NewArg});
5742 llvm::FunctionType *FTy = llvm::FunctionType::get(
5758 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name, ByValAttrSet),
5818 llvm::FunctionType *FTy = llvm::FunctionType::get(Int32Ty, ArgTys, false);
5820 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name), Args));
5876 llvm::FunctionType *FTy = llvm::FunctionType::get(
5879 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name),
5893 llvm::FunctionType *FTy = llvm::FunctionType::get(
5896 RValue::get(EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name),
6023 auto FTy = F->getFunctionType();
6027 auto PTy0 = FTy->getParamType(0);
6035 auto PTy1 = FTy->getParamType(1);
6057 auto FTy = F->getFunctionType();
6059 auto PTy0 = FTy->getParamType(0);
6065 auto PTy1 = FTy->getParamType(1);
6073 auto PTy2 = FTy->getParamType(2);
6160 llvm::FunctionType *FTy = F->getFunctionType();
6166 llvm::Type *PTy = FTy->getParamType(i);
8599 llvm::FunctionType *FTy =
8610 IsThumb ? InlineAsm::get(FTy, ".inst.n 0x" + utohexstr(ZExtValue), "",
8612 : InlineAsm::get(FTy, ".inst 0x" + utohexstr(ZExtValue), "",
8669 llvm::FunctionType *FTy = cast<llvm::FunctionType>(Ty);
8671 return EmitNounwindRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name), Ops);
11114 llvm::FunctionType *FTy = cast<llvm::FunctionType>(Ty);
11116 return EmitNounwindRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name), Ops);
11711 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy;
11714 return Builder.CreateUIToFP(Ops[0], FTy);
11715 return Builder.CreateSIToFP(Ops[0], FTy);
11726 llvm::Type *FTy = HalfTy;
11736 return Builder.CreateUIToFP(Ops[0], FTy);
11737 return Builder.CreateSIToFP(Ops[0], FTy);
11751 llvm::Type* FTy = HalfTy;
11752 llvm::Type *Tys[2] = {InTy, FTy};
11786 llvm::Type* FTy = HalfTy;
11787 llvm::Type *Tys[2] = {InTy, FTy};
11807 llvm::Type* FTy = HalfTy;
11808 llvm::Type *Tys[2] = {InTy, FTy};
11823 llvm::Type* FTy = HalfTy;
11825 llvm::Type *Tys[2] = {FTy, InTy};
14297 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
14299 CGM.CreateRuntimeFunction(FTy, "__init_cpu_features_resolver");
14307 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy,
14310 CGM.CreateRuntimeFunction(FTy, "__cpu_indicator_init");
16505 llvm::FunctionType *FTy =
16520 llvm::InlineAsm *IA = llvm::InlineAsm::get(FTy, Asm, Constraints,
16611 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
16613 llvm::InlineAsm::get(FTy, "int $$0x2c", "", /*hasSideEffects=*/true);
16867 llvm::FunctionType *FTy =
16870 CGM.CreateRuntimeFunction(FTy, "getsystemcfg");
20093 auto *FTy = F->getFunctionType();
20101 auto *PTy = FTy->getParamType(i);