Searched refs:getVoidTy (Results 1 - 25 of 86) sorted by relevance

1234

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreSelectionDAGInfo.cpp38 Type::getVoidTy(*DAG.getContext()),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp26 FunctionType *FnTy = FunctionType::get(IRB.getVoidTy(), false);
116 FunctionType::get(Type::getVoidTy(M.getContext()), InitArgTypes, false),
130 FunctionType::get(Type::getVoidTy(M.getContext()), false),
137 VersionCheckName, FunctionType::get(IRB.getVoidTy(), {}, false),
156 Ctor->getReturnType() == Type::getVoidTy(M.getContext()))
171 F->getReturnType() != Type::getVoidTy(M.getContext())) {
181 Type::getVoidTy(M.getContext()))
H A DEntryExitInstrumenter.cpp34 FunctionCallee Fn = M.getOrInsertFunction(Func, Type::getVoidTy(C));
44 Func, FunctionType::get(Type::getVoidTy(C), ArgTypes, false));
H A DSanitizerStats.cpp58 FunctionType::get(B.getVoidTy(), Int8PtrTy, false);
79 Type *VoidTy = Type::getVoidTy(M->getContext());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp210 IRB.getVoidTy(), IRB.getInt8PtrTy());
212 M.getOrInsertFunction("__tsan_func_exit", Attr, IRB.getVoidTy());
214 IRB.getVoidTy());
216 M.getOrInsertFunction("__tsan_ignore_thread_end", Attr, IRB.getVoidTy());
224 TsanRead[i] = M.getOrInsertFunction(ReadName, Attr, IRB.getVoidTy(),
228 TsanWrite[i] = M.getOrInsertFunction(WriteName, Attr, IRB.getVoidTy(),
233 UnalignedReadName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy());
237 UnalignedWriteName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy());
247 AtomicStoreName, Attr, IRB.getVoidTy(), PtrTy, Ty, OrdTy);
280 M.getOrInsertFunction("__tsan_vptr_update", Attr, IRB.getVoidTy(),
[all...]
H A DGCOVProfiling.cpp691 FunctionType *FTy = FunctionType::get(Builder.getVoidTy(), {}, false);
901 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
913 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
916 FTy = FunctionType::get(Builder.getVoidTy(), Params, false);
936 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
952 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
968 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
976 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
981 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
987 FunctionType *WriteoutFTy = FunctionType::get(Type::getVoidTy(*Ct
[all...]
H A DAddressSanitizer.cpp1956 M.getOrInsertFunction(kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy);
1958 M.getOrInsertFunction(kAsanUnpoisonGlobalsName, IRB.getVoidTy());
1962 kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy);
1964 kAsanUnregisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy);
1969 kAsanRegisterImageGlobalsName, IRB.getVoidTy(), IntptrTy);
1971 kAsanUnregisterImageGlobalsName, IRB.getVoidTy(), IntptrTy);
1974 M.getOrInsertFunction(kAsanRegisterElfGlobalsName, IRB.getVoidTy(),
1977 M.getOrInsertFunction(kAsanUnregisterElfGlobalsName, IRB.getVoidTy(),
2035 Function::Create(FunctionType::get(Type::getVoidTy(*C), false),
2491 FunctionType::get(IRB.getVoidTy(), Args
[all...]
H A DHWAddressSanitizer.cpp269 Type *VoidTy = Type::getVoidTy(M.getContext());
442 FunctionType::get(IRB.getVoidTy(), {IntptrTy, IntptrTy}, false));
450 FunctionType::get(IRB.getVoidTy(), {IntptrTy}, false));
455 "__hwasan_tag_memory", IRB.getVoidTy(), Int8PtrTy, Int8Ty, IntptrTy);
475 M.getOrInsertFunction("__hwasan_handle_vfork", IRB.getVoidTy(), IntptrTy);
676 FunctionType::get(IRB.getVoidTy(), {PtrLong->getType()}, false),
685 FunctionType::get(IRB.getVoidTy(), {PtrLong->getType()}, false),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp55 Type::getVoidTy(*DAG.getContext()),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerGlobalDtors.cpp109 FunctionType::get(Type::getVoidTy(C), AtExitFuncArgs,
146 FunctionType *VoidVoid = FunctionType::get(Type::getVoidTy(C),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroEarly.cpp39 AnyResumeFnPtrTy(FunctionType::get(Type::getVoidTy(Context), Int8Ptr,
116 auto *FnTy = FunctionType::get(Type::getVoidTy(C), FramePtrTy,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCrossDSOCFI.cpp106 "__cfi_check", Type::getVoidTy(Ctx), Type::getInt64Ty(Ctx),
133 M.getOrInsertFunction("__cfi_check_fail", Type::getVoidTy(Ctx),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSpeculation.cpp73 Type::getVoidTy(MContext),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/CFGuard/
H A DCFGuard.cpp238 GuardFnType = FunctionType::get(Type::getVoidTy(M.getContext()),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp664 Type *VoidTy = Type::getVoidTy(M->getContext());
865 : Instruction(Type::getVoidTy(RI.getContext()), Instruction::Ret,
874 : Instruction(Type::getVoidTy(C), Instruction::Ret,
882 : Instruction(Type::getVoidTy(C), Instruction::Ret,
890 : Instruction(Type::getVoidTy(Context), Instruction::Ret,
898 : Instruction(Type::getVoidTy(RI.getContext()), Instruction::Resume,
904 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
910 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
941 : Instruction(Type::getVoidTy(CleanupPad->getContext()),
950 : Instruction(Type::getVoidTy(CleanupPa
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp248 llvm::Type::getVoidTy(m_module.getContext()), params, true);
272 llvm::Type::getVoidTy(m_module.getContext()), params, true);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackProtector.cpp535 "__stack_smash_handler", Type::getVoidTy(Context),
541 M->getOrInsertFunction("__stack_chk_fail", Type::getVoidTy(Context));
H A DDwarfEHPrepare.cpp211 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx),
H A DSjLjEHPrepare.cpp476 "_Unwind_SjLj_Register", Type::getVoidTy(M.getContext()),
479 "_Unwind_SjLj_Unregister", Type::getVoidTy(M.getContext()),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp51 FunctionType::get(Type::getVoidTy(C), AsmArgTypes, false);
381 Type *MyVoid = Type::getVoidTy(C);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DIRMutator.cpp28 Function *F = Function::Create(FunctionType::get(Type::getVoidTy(Context), {},
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp46 .setLibCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DType.h408 static Type *getVoidTy(LLVMContext &C);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp141 Void = Type::getVoidTy(Context);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp117 TLI->getLibcallCallingConv(LC), Type::getVoidTy(*DAG.getContext()),

Completed in 220 milliseconds

1234