Home
last modified time | relevance | path

Searched refs:FnTy (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDerivedTypes.h176 : FnTy(Fn ? Fn->getFunctionType() : nullptr), Callee(Fn) {} in FunctionCallee()
178 FunctionCallee(FunctionType *FnTy, Value *Callee) in FunctionCallee() argument
179 : FnTy(FnTy), Callee(Callee) { in FunctionCallee()
180 assert((FnTy == nullptr) == (Callee == nullptr)); in FunctionCallee()
187 FunctionType *getFunctionType() { return FnTy; } in getFunctionType()
194 FunctionType *FnTy = nullptr;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroEarly.cpp116 auto *FnTy = FunctionType::get(Type::getVoidTy(C), FramePtrTy, in lowerCoroNoop() local
118 auto *FnPtrTy = FnTy->getPointerTo(); in lowerCoroNoop()
123 Function::Create(FnTy, GlobalValue::LinkageTypes::PrivateLinkage, in lowerCoroNoop()
DCoroFrame.cpp409 auto *FnTy = FunctionType::get(Type::getVoidTy(C), FramePtrTy, in buildFrameType() local
411 auto *FnPtrTy = FnTy->getPointerTo(); in buildFrameType()
1166 auto FnTy = FunctionType::get(ValueTy, {}, false); in emitGetSwiftErrorValue() local
1167 auto Fn = ConstantPointerNull::get(FnTy->getPointerTo()); in emitGetSwiftErrorValue()
1181 auto FnTy = FunctionType::get(V->getType()->getPointerTo(), in emitSetSwiftErrorValue() local
1183 auto Fn = ConstantPointerNull::get(FnTy->getPointerTo()); in emitSetSwiftErrorValue()
DCoroSplit.cpp399 auto *FnTy = Shape.getResumeFunctionType(); in createCloneDeclaration() local
402 Function::Create(FnTy, GlobalValue::LinkageTypes::InternalLinkage, in createCloneDeclaration()
1416 FunctionType *FnTy = FunctionType::get(Type::getVoidTy(Context), in prepareForSplit() local
1418 auto *IndirectCall = CallInst::Create(FnTy, DevirtFnAddr, Null, "", InsertPt); in prepareForSplit()
1434 auto *FnTy = FunctionType::get(Type::getVoidTy(C), Type::getInt8PtrTy(C), in createDevirtTriggerFunc() local
1437 Function::Create(FnTy, GlobalValue::LinkageTypes::PrivateLinkage, in createDevirtTriggerFunc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DModuleUtils.cpp26 FunctionType *FnTy = FunctionType::get(IRB.getVoidTy(), false); in appendToGlobalArray() local
32 IRB.getInt32Ty(), PointerType::getUnqual(FnTy), IRB.getInt8PtrTy()); in appendToGlobalArray()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMustExecute.cpp489 template <typename K, typename V, typename FnTy, typename... ArgsTy>
491 FnTy &&Fn, ArgsTy&&... args) { in getOrCreateCachedOptional()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2784 Type *FnTy = getTypeByID(Record[0]); in parseConstants() local
2785 if (!FnTy) in parseConstants()
2788 dyn_cast_or_null<Function>(ValueList.getConstantFwdRef(Record[1],FnTy)); in parseConstants()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2564 FunctionType *FnTy = GuardCheckFn->getFunctionType(); in visitSPDescriptorParent() local
2565 assert(FnTy->getNumParams() == 1 && "Invalid function signature"); in visitSPDescriptorParent()
2570 Entry.Ty = FnTy->getParamType(0); in visitSPDescriptorParent()
2578 .setCallee(GuardCheckFn->getCallingConv(), FnTy->getReturnType(), in visitSPDescriptorParent()