Lines Matching defs:FTy
427 static std::string getSignature(FunctionType *FTy) {
430 OS << *FTy->getReturnType();
431 for (Type *ParamTy : FTy->params())
433 if (FTy->isVarArg())
495 FunctionType *FTy = FunctionType::get(Int8PtrTy, Args, false);
497 FTy, "__cxa_find_matching_catch_" + Twine(NumClauses + 2), &M);
587 FunctionType *FTy = FunctionType::get(CalleeFTy->getReturnType(), ArgTys,
589 Function *F = getEmscriptenFunction(FTy, "__invoke_" + Sig, M);
989 FunctionType *FTy = FunctionType::get(
991 EmLongjmpF = getEmscriptenFunction(FTy, "emscripten_longjmp", &M);
996 FunctionType *FTy = FunctionType::get(
998 WasmLongjmpF = getEmscriptenFunction(FTy, "__wasm_longjmp", &M);
1009 FunctionType *FTy = FunctionType::get(
1012 WasmSetjmpF = getEmscriptenFunction(FTy, "__wasm_setjmp", &M);
1015 FTy = FunctionType::get(Int32Ty, {Int32PtrTy, Int32PtrTy}, false);
1016 WasmSetjmpTestF = getEmscriptenFunction(FTy, "__wasm_setjmp_test", &M);