HomeSort by: relevance | last modified time | path
    Searched refs:getVoidTy (Results 1 - 25 of 95) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/tools/vfabi-demangle-fuzzer/
vfabi-demangler-fuzzer.cpp 33 FunctionType::get(Type::getVoidTy(M->getContext()), false));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 255 IRB.getVoidTy(), IRB.getInt8PtrTy());
257 M.getOrInsertFunction("__tsan_func_exit", Attr, IRB.getVoidTy());
259 IRB.getVoidTy());
261 M.getOrInsertFunction("__tsan_ignore_thread_end", Attr, IRB.getVoidTy());
269 TsanRead[i] = M.getOrInsertFunction(ReadName, Attr, IRB.getVoidTy(),
273 TsanWrite[i] = M.getOrInsertFunction(WriteName, Attr, IRB.getVoidTy(),
278 UnalignedReadName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy());
282 UnalignedWriteName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy());
286 VolatileReadName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy());
290 VolatileWriteName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy())
    [all...]
GCOVProfiling.cpp 737 FunctionType *FTy = FunctionType::get(Builder.getVoidTy(), {}, false);
1046 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1053 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1055 FTy = FunctionType::get(Builder.getVoidTy(), {PFTy, PFTy}, false);
1072 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
1086 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
1101 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
1109 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1114 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1120 FunctionType *WriteoutFTy = FunctionType::get(Type::getVoidTy(*Ctx), false)
    [all...]
AddressSanitizer.cpp 2065 M.getOrInsertFunction(kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy);
2067 M.getOrInsertFunction(kAsanUnpoisonGlobalsName, IRB.getVoidTy());
2071 kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy);
2073 kAsanUnregisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy);
2078 kAsanRegisterImageGlobalsName, IRB.getVoidTy(), IntptrTy);
2080 kAsanUnregisterImageGlobalsName, IRB.getVoidTy(), IntptrTy);
2083 M.getOrInsertFunction(kAsanRegisterElfGlobalsName, IRB.getVoidTy(),
2086 M.getOrInsertFunction(kAsanUnregisterElfGlobalsName, IRB.getVoidTy(),
2144 FunctionType::get(Type::getVoidTy(*C), false),
2650 FunctionType::get(IRB.getVoidTy(), Args2, false))
    [all...]
HWAddressSanitizer.cpp 278 Type *VoidTy = Type::getVoidTy(M.getContext());
568 FunctionType::get(IRB.getVoidTy(), {IntptrTy, IntptrTy}, false));
576 FunctionType::get(IRB.getVoidTy(), {IntptrTy}, false));
581 "__hwasan_tag_memory", IRB.getVoidTy(), Int8PtrTy, Int8Ty, IntptrTy);
601 M.getOrInsertFunction("__hwasan_handle_vfork", IRB.getVoidTy(), IntptrTy);
808 FunctionType::get(IRB.getVoidTy(), {PtrLong->getType()}, false),
819 FunctionType::get(IRB.getVoidTy(), {PtrLong->getType()}, false),
MemProfiler.cpp 540 FunctionType::get(IRB.getVoidTy(), Args2, false));
544 FunctionType::get(IRB.getVoidTy(), Args1, false));
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.cpp 38 Type::getVoidTy(*DAG.getContext()),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 28 FunctionType *FnTy = FunctionType::get(IRB.getVoidTy(), false);
120 FunctionType::get(Type::getVoidTy(M.getContext()), InitArgTypes, false),
126 FunctionType::get(Type::getVoidTy(M.getContext()), false),
148 VersionCheckName, FunctionType::get(IRB.getVoidTy(), {}, false),
167 Ctor->getReturnType() == Type::getVoidTy(M.getContext()))
182 F->getReturnType() != Type::getVoidTy(M.getContext())) {
192 Type::getVoidTy(M.getContext()))
EntryExitInstrumenter.cpp 37 FunctionCallee Fn = M.getOrInsertFunction(Func, Type::getVoidTy(C));
47 Func, FunctionType::get(Type::getVoidTy(C), ArgTypes, false));
SanitizerStats.cpp 58 FunctionType::get(B.getVoidTy(), Int8PtrTy, false);
79 Type *VoidTy = Type::getVoidTy(M->getContext());
  /src/external/apache2/llvm/dist/clang/tools/clang-offload-wrapper/
ClangOffloadWrapper.cpp 249 auto *FuncTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg*/ false);
255 auto *RegFuncTy = FunctionType::get(Type::getVoidTy(C), getBinDescPtrTy(),
275 auto *FuncTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg*/ false);
281 auto *UnRegFuncTy = FunctionType::get(Type::getVoidTy(C), getBinDescPtrTy(),
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
IndirectThunks.h 50 auto Type = FunctionType::get(Type::getVoidTy(Ctx), false);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.cpp 55 Type::getVoidTy(*DAG.getContext()),
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLowerGlobalDtors.cpp 120 FunctionType::get(Type::getVoidTy(C), AtExitFuncArgs,
162 FunctionType *VoidVoid = FunctionType::get(Type::getVoidTy(C),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroEarly.cpp 35 AnyResumeFnPtrTy(FunctionType::get(Type::getVoidTy(Context), Int8Ptr,
111 auto *FnTy = FunctionType::get(Type::getVoidTy(C), FramePtrTy,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
CrossDSOCFI.cpp 106 "__cfi_check", Type::getVoidTy(Ctx), Type::getInt64Ty(Ctx),
133 M.getOrInsertFunction("__cfi_check_fail", Type::getVoidTy(Ctx),
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
Speculation.cpp 70 Type::getVoidTy(MContext),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/CFGuard/
CFGuard.cpp 233 GuardFnType = FunctionType::get(Type::getVoidTy(M.getContext()),
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 766 Type *VoidTy = Type::getVoidTy(M->getContext());
964 : Instruction(Type::getVoidTy(RI.getContext()), Instruction::Ret,
973 : Instruction(Type::getVoidTy(C), Instruction::Ret,
981 : Instruction(Type::getVoidTy(C), Instruction::Ret,
989 : Instruction(Type::getVoidTy(Context), Instruction::Ret,
997 : Instruction(Type::getVoidTy(RI.getContext()), Instruction::Resume,
1003 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
1009 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
1041 : Instruction(Type::getVoidTy(CleanupPad->getContext()),
1050 : Instruction(Type::getVoidTy(CleanupPad->getContext())
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 1091 builder.getVoidTy(),
1353 builder.getVoidTy(),
1696 llvm::Type *retType = builder.getVoidTy();
1715 retType = builder.getVoidTy();
1734 retType = builder.getVoidTy();
1752 retType = builder.getVoidTy();
1770 retType = builder.getVoidTy();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackProtector.cpp 580 "__stack_smash_handler", Type::getVoidTy(Context),
586 M->getOrInsertFunction("__stack_chk_fail", Type::getVoidTy(Context));
SjLjEHPrepare.cpp 484 "_Unwind_SjLj_Register", Type::getVoidTy(M.getContext()),
487 "_Unwind_SjLj_Unregister", Type::getVoidTy(M.getContext()),
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 51 FunctionType::get(Type::getVoidTy(C), AsmArgTypes, false);
381 Type *MyVoid = Type::getVoidTy(C);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 46 .setLibCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULowerModuleLDSPass.cpp 119 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx), {});

Completed in 36 milliseconds

1 2 3 4