Searched refs:MainTy (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| D | WebAssemblyFixFunctionBitcasts.cpp | 227 static bool shouldFixMainFunction(FunctionType *FuncTy, FunctionType *MainTy) { in shouldFixMainFunction() argument 231 return FuncTy->getReturnType() == MainTy->getReturnType() && in shouldFixMainFunction() 261 FunctionType *MainTy = FunctionType::get(Type::getInt32Ty(C), MainArgTys, in runOnModule() local 263 if (shouldFixMainFunction(F.getFunctionType(), MainTy)) { in runOnModule() 269 ConstantExpr::getBitCast(Main, PointerType::get(MainTy, 0)); in runOnModule() 270 CallMain = CallInst::Create(MainTy, Casted, Args, "call_main"); in runOnModule()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| D | ExecutorProcessControl.cpp | 108 using MainTy = int (*)(int, char *[]); in runAsMain() typedef 109 return orc::runAsMain(jitTargetAddressToFunction<MainTy>(MainFnAddr), Args); in runAsMain()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/orc/ |
| D | macho_platform.cpp | 708 using MainTy = int (*)(int, char *[]); in __orc_rt_macho_run_program() typedef 718 reinterpret_cast<MainTy>(__orc_rt_macho_jit_dlsym(H, EntrySymbolName)); in __orc_rt_macho_run_program()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| D | LegalizerHelper.h | 190 bool extractParts(Register Reg, LLT RegTy, LLT MainTy,
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| D | LegalizerHelper.cpp | 160 LLT MainTy, LLT &LeftoverTy, in extractParts() argument 166 unsigned MainSize = MainTy.getSizeInBits(); in extractParts() 173 VRegs.push_back(MRI.createGenericVirtualRegister(MainTy)); in extractParts() 178 if (MainTy.isVector()) { in extractParts() 179 unsigned EltSize = MainTy.getScalarSizeInBits(); in extractParts() 190 Register NewReg = MRI.createGenericVirtualRegister(MainTy); in extractParts()
|