Home
last modified time | relevance | path

Searched refs:FunctionCallee (Results 1 – 25 of 51) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DModuleUtils.h25 class FunctionCallee; variable
44 FunctionCallee declareSanitizerInitFunction(Module &M, StringRef InitName,
51 std::pair<Function *, FunctionCallee> createSanitizerCtorAndInitFunctions(
63 std::pair<Function *, FunctionCallee> getOrCreateSanitizerCtorAndInitFunctions(
66 function_ref<void(Function *, FunctionCallee)> FunctionsCreatedCallback,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DThreadSanitizer.cpp111 FunctionCallee TsanFuncEntry;
112 FunctionCallee TsanFuncExit;
113 FunctionCallee TsanIgnoreBegin;
114 FunctionCallee TsanIgnoreEnd;
117 FunctionCallee TsanRead[kNumberOfAccessSizes];
118 FunctionCallee TsanWrite[kNumberOfAccessSizes];
119 FunctionCallee TsanUnalignedRead[kNumberOfAccessSizes];
120 FunctionCallee TsanUnalignedWrite[kNumberOfAccessSizes];
121 FunctionCallee TsanAtomicLoad[kNumberOfAccessSizes];
122 FunctionCallee TsanAtomicStore[kNumberOfAccessSizes];
[all …]
DGCOVProfiling.cpp108 FunctionCallee getStartFileFunc(const TargetLibraryInfo *TLI);
109 FunctionCallee getEmitFunctionFunc(const TargetLibraryInfo *TLI);
110 FunctionCallee getEmitArcsFunc(const TargetLibraryInfo *TLI);
111 FunctionCallee getSummaryInfoFunc();
112 FunctionCallee getEndFileFunc();
659 FunctionCallee GCOVFlush = M->getOrInsertFunction("__gcov_flush", FTy); in AddFlushBeforeForkAndExec()
879 FunctionCallee GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy); in emitProfileArcs()
889 FunctionCallee GCOVProfiler::getStartFileFunc(const TargetLibraryInfo *TLI) { in getStartFileFunc()
899 FunctionCallee Res = M->getOrInsertFunction("llvm_gcda_start_file", FTy, AL); in getStartFileFunc()
903 FunctionCallee GCOVProfiler::getEmitFunctionFunc(const TargetLibraryInfo *TLI) { in getEmitFunctionFunc()
[all …]
DSanitizerCoverage.cpp228 FunctionCallee SanCovTracePCIndir;
229 FunctionCallee SanCovTracePC, SanCovTracePCGuard;
230 FunctionCallee SanCovTraceCmpFunction[4];
231 FunctionCallee SanCovTraceConstCmpFunction[4];
232 FunctionCallee SanCovTraceDivFunction[2];
233 FunctionCallee SanCovTraceGepFunction;
234 FunctionCallee SanCovTraceSwitchFunction;
467 FunctionCallee InitFunction = declareSanitizerInitFunction( in instrumentModule()
DAddressSanitizer.cpp681 FunctionCallee AsanHandleNoReturnFunc;
682 FunctionCallee AsanPtrCmpFunction, AsanPtrSubFunction;
686 FunctionCallee AsanErrorCallback[2][2][kNumberOfAccessSizes];
687 FunctionCallee AsanMemoryAccessCallback[2][2][kNumberOfAccessSizes];
690 FunctionCallee AsanErrorCallbackSized[2][2];
691 FunctionCallee AsanMemoryAccessCallbackSized[2][2];
693 FunctionCallee AsanMemmove, AsanMemcpy, AsanMemset;
813 FunctionCallee AsanPoisonGlobals;
814 FunctionCallee AsanUnpoisonGlobals;
815 FunctionCallee AsanRegisterGlobals;
[all …]
DHWAddressSanitizer.cpp247 FunctionCallee HWAsanMemmove, HWAsanMemcpy, HWAsanMemset;
248 FunctionCallee HWAsanHandleVfork;
283 FunctionCallee HwasanMemoryAccessCallback[2][kNumberOfAccessSizes];
284 FunctionCallee HwasanMemoryAccessCallbackSized[2];
286 FunctionCallee HwasanTagMemoryFunc;
287 FunctionCallee HwasanGenerateTagFunc;
402 [&](Function *Ctor, FunctionCallee) { in initializeModule() argument
1438 FunctionCallee HwasanPersonalityWrapper = M.getOrInsertFunction( in instrumentPersonalityFunctions()
1441 FunctionCallee UnwindGetGR = M.getOrInsertFunction("_Unwind_GetGR", VoidTy); in instrumentPersonalityFunctions()
1442 FunctionCallee UnwindGetCFA = M.getOrInsertFunction("_Unwind_GetCFA", VoidTy); in instrumentPersonalityFunctions()
DMemorySanitizer.cpp541 FunctionCallee WarningFn;
544 FunctionCallee MaybeWarningFn[kNumberOfAccessSizes];
545 FunctionCallee MaybeStoreOriginFn[kNumberOfAccessSizes];
549 FunctionCallee MsanSetAllocaOrigin4Fn;
552 FunctionCallee MsanPoisonStackFn;
556 FunctionCallee MsanChainOriginFn;
559 FunctionCallee MemmoveFn, MemcpyFn, MemsetFn;
563 FunctionCallee MsanGetContextStateFn;
566 FunctionCallee MsanPoisonAllocaFn, MsanUnpoisonAllocaFn;
570 FunctionCallee MsanMetadataPtrForLoadN, MsanMetadataPtrForStoreN;
[all …]
DDataFlowSanitizer.cpp348 FunctionCallee DFSanUnionFn;
349 FunctionCallee DFSanCheckedUnionFn;
350 FunctionCallee DFSanUnionLoadFn;
351 FunctionCallee DFSanUnimplementedFn;
352 FunctionCallee DFSanSetLabelFn;
353 FunctionCallee DFSanNonzeroLabelFn;
354 FunctionCallee DFSanVarargWrapperFn;
687 FunctionCallee C = Mod->getOrInsertFunction(FName, FTT); in getOrBuildTrampolineFunction()
1581 FunctionCallee CustomF = DFSF.DFS.Mod->getOrInsertFunction( in visitCallSite()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DModuleUtils.cpp110 FunctionCallee
120 std::pair<Function *, FunctionCallee> llvm::createSanitizerCtorAndInitFunctions( in createSanitizerCtorAndInitFunctions()
127 FunctionCallee InitFunction = in createSanitizerCtorAndInitFunctions()
136 FunctionCallee VersionCheckFunction = M.getOrInsertFunction( in createSanitizerCtorAndInitFunctions()
144 std::pair<Function *, FunctionCallee>
148 function_ref<void(Function *, FunctionCallee)> FunctionsCreatedCallback, in getOrCreateSanitizerCtorAndInitFunctions()
160 FunctionCallee InitFunction; in getOrCreateSanitizerCtorAndInitFunctions()
DEscapeEnumerator.cpp21 static FunctionCallee getDefaultPersonalityFn(Module *M) { in getDefaultPersonalityFn()
71 FunctionCallee PersFn = getDefaultPersonalityFn(F.getParent()); in Next()
DBuildLibCalls.cpp838 FunctionCallee Callee = M->getOrInsertFunction(FuncName, FuncType); in emitLibCall()
916 FunctionCallee MemCpy = M->getOrInsertFunction( in emitMemCpyChk()
1048 FunctionCallee Callee = in emitUnaryFloatFnCallHelper()
1090 FunctionCallee Callee = M->getOrInsertFunction(Name, Op1->getType(), in emitBinaryFloatFnCallHelper()
1136 FunctionCallee PutChar = in emitPutChar()
1159 FunctionCallee PutS = in emitPutS()
1176 FunctionCallee F = M->getOrInsertFunction(FPutcName, B.getInt32Ty(), in emitFPutC()
1197 FunctionCallee F = M->getOrInsertFunction(FPutcUnlockedName, B.getInt32Ty(), in emitFPutCUnlocked()
1217 FunctionCallee F = M->getOrInsertFunction(FPutsName, B.getInt32Ty(), in emitFPutS()
1236 FunctionCallee F = M->getOrInsertFunction(FPutsUnlockedName, B.getInt32Ty(), in emitFPutSUnlocked()
[all …]
DSanitizerStats.cpp59 FunctionCallee StatReport = in create()
100 FunctionCallee StatInit = in finish()
DEntryExitInstrumenter.cpp34 FunctionCallee Fn = M.getOrInsertFunction(Func, Type::getVoidTy(C)); in insertCall()
43 FunctionCallee Fn = M.getOrInsertFunction( in insertCall()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULibCalls.cpp74 FunctionCallee getFunction(Module *M, const FuncInfo &fInfo);
144 FunctionCallee getNativeFunction(Module *M, const FuncInfo &FInfo);
224 static CallInst *CreateCallEx(IRB &B, FunctionCallee Callee, Value *Arg, in INITIALIZE_PASS_DEPENDENCY()
233 static CallInst *CreateCallEx2(IRB &B, FunctionCallee Callee, Value *Arg1, in CreateCallEx2()
479 FunctionCallee AMDGPULibCalls::getFunction(Module *M, const FuncInfo &fInfo) { in getFunction()
526 FunctionCallee sinExpr = getFunction(M, nf); in sincosUseNative()
530 FunctionCallee cosExpr = getFunction(M, nf); in sincosUseNative()
562 FunctionCallee F = getFunction(aCI->getModule(), FInfo); in useNative()
620 FunctionCallee F = AMDGPULibFunc::getOrInsertFunction(M, NewLibFunc); in fold_read_write_pipe()
809 if (FunctionCallee FPExpr = getFunction(M, nf)) { in replaceWithNative()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDerivedTypes.h170 class FunctionCallee {
175 FunctionCallee(T *Fn) in FunctionCallee() function
178 FunctionCallee(FunctionType *FnTy, Value *Callee) in FunctionCallee() function
183 FunctionCallee(std::nullptr_t) {} in FunctionCallee() function
185 FunctionCallee() = default;
DModule.h345 FunctionCallee getOrInsertFunction(StringRef Name, FunctionType *T,
348 FunctionCallee getOrInsertFunction(StringRef Name, FunctionType *T);
357 FunctionCallee getOrInsertFunction(StringRef Name, in getOrInsertFunction()
368 FunctionCallee getOrInsertFunction(StringRef Name, Type *RetTy, in getOrInsertFunction()
375 FunctionCallee
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DCrossDSOCFI.cpp105 FunctionCallee C = M.getOrInsertFunction( in buildCFICheck()
132 FunctionCallee CFICheckFailFn = in buildCFICheck()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCLowerMASSVEntries.cpp109 FunctionCallee FCache = M.getOrInsertFunction( in lowerMASSVCall()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DStackProtector.cpp534 FunctionCallee StackChkFail = M->getOrInsertFunction( in CreateFailBB()
540 FunctionCallee StackChkFail = in CreateFailBB()
DSjLjEHPrepare.cpp43 FunctionCallee RegisterFn;
44 FunctionCallee UnregisterFn;
DPreISelIntrinsicLowering.cpp80 FunctionCallee FCache = M->getOrInsertFunction(NewFn, F.getFunctionType()); in lowerObjCCall()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyLowerGlobalDtors.cpp112 FunctionCallee AtExit = M.getOrInsertFunction( in runOnModule()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86WinEHState.cpp88 FunctionCallee SetJmp3 = nullptr;
89 FunctionCallee CxxLongjmpUnwind = nullptr;
96 FunctionCallee SehLongjmpUnwind = nullptr;
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_misc.cpp306 return CALLA(FunctionCallee(cast<Function>(Callee)), args, name); in CALL()
318 return CALLA(FunctionCallee(cast<Function>(Callee)), args); in CALL()
331 return CALLA(FunctionCallee(cast<Function>(Callee)), args); in CALL2()
345 return CALLA(FunctionCallee(cast<Function>(Callee)), args); in CALL3()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DModule.cpp143 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty, in getOrInsertFunction()
167 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty) { in getOrInsertFunction()

123