/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerExtFunctionsDlsym.cpp | 24 static T GetFnPtr(const char *FnName, bool WarnIfMissing) { in GetFnPtr() argument 26 void *Fn = dlsym(RTLD_DEFAULT, FnName); in GetFnPtr() 30 Printf("WARNING: Failed to find function \"%s\".", FnName); in GetFnPtr()
|
H A D | FuzzerExtFunctionsWeak.cpp | 33 static void CheckFnPtr(void *FnPtr, const char *FnName, bool WarnIfMissing) { in CheckFnPtr() argument 35 Printf("WARNING: Failed to find function \"%s\".\n", FnName); in CheckFnPtr()
|
H A D | FuzzerExtFunctionsWeakAlias.cpp | 34 static T *GetFnPtr(T *Fun, T *FunDef, const char *FnName, bool WarnIfMissing) { in GetFnPtr() argument 37 Printf("WARNING: Failed to find function \"%s\".\n", FnName); in GetFnPtr()
|
H A D | FuzzerLoop.cpp | 45 static void MissingExternalApiFunction(const char *FnName) { in MissingExternalApiFunction() argument 48 FnName); in MissingExternalApiFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | WasmTranslator.cpp | 738 const auto FnName = Ctx->getGlobalString("llvm.cttz.i32"); in Unop() local 740 const auto *Info = Ctx->getIntrinsicsInfo().find(FnName, BadInstrinsic); in Unop() 745 Func, 1, Dest, Ctx->getConstantExternSym(FnName), Info->Info); in Unop() 764 const auto FnName = Ctx->getGlobalString("llvm.fabs.f32"); in Unop() local 766 const auto *Info = Ctx->getIntrinsicsInfo().find(FnName, BadInstrinsic); in Unop() 771 Func, 1, Dest, Ctx->getConstantExternSym(FnName), Info->Info); in Unop() 778 const auto FnName = Ctx->getGlobalString("llvm.fabs.f64"); in Unop() local 780 const auto *Info = Ctx->getIntrinsicsInfo().find(FnName, BadInstrinsic); in Unop() 785 Func, 1, Dest, Ctx->getConstantExternSym(FnName), Info->Info); in Unop() 792 const auto FnName in Unop() local 803 const auto FnName = Ctx->getGlobalString("env$$floor_d"); Unop() local 814 const auto FnName = Ctx->getGlobalString("llvm.sqrt.f32"); Unop() local 828 const auto FnName = Ctx->getGlobalString("llvm.sqrt.f64"); Unop() local 1102 const auto FnName = toStdString(Module->GetName( CallImport() local 1531 auto FnName = toStdString(Module->GetName(Import.function_name_offset, translate() local 1629 const auto FnName = getFunctionName(Module, Fn.func_index); translate() local 1640 TimerMarker T_func(getContext(), FnName); translate() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/ |
H A D | MCJIT.cpp | 459 Function *MCJIT::FindFunctionNamedInModulePtrSet(StringRef FnName, in FindFunctionNamedInModulePtrSet() argument 463 Function *F = (*I)->getFunction(FnName); in FindFunctionNamedInModulePtrSet() 483 Function *MCJIT::FindFunctionNamed(StringRef FnName) { in FindFunctionNamed() argument 485 FnName, OwnedModules.begin_added(), OwnedModules.end_added()); in FindFunctionNamed() 487 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_loaded(), in FindFunctionNamed() 490 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_finalized(), in FindFunctionNamed()
|
H A D | MCJIT.h | 197 Function *FindFunctionNamedInModulePtrSet(StringRef FnName, 222 /// defines FnName. This is very slow operation and shouldn't be used for 224 Function *FindFunctionNamed(StringRef FnName) override;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A D | IntelJITEventListener.cpp | 78 const char* FnName, in FunctionDescToIntelJITFormat() 85 Result.method_name = const_cast<char*>(FnName); in FunctionDescToIntelJITFormat() 76 FunctionDescToIntelJITFormat( IntelJITEventsWrapper& Wrapper, const char* FnName, uintptr_t FnStart, size_t FnSize) FunctionDescToIntelJITFormat() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | WholeProgramDevirt.cpp | 519 void applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, 550 void applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, bool IsOne, 558 void applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName, 1206 void DevirtModule::applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, in applyUniformRetValOpt() argument 1210 "uniform-ret-val", FnName, RemarksEnabled, OREGetter, in applyUniformRetValOpt() 1312 void DevirtModule::applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, in applyUniqueRetValOpt() argument 1321 Call.replaceAndErase("unique-ret-val", FnName, RemarksEnabled, OREGetter, in applyUniqueRetValOpt() 1381 void DevirtModule::applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName, in applyVirtualConstProp() argument 1392 Call.replaceAndErase("virtual-const-prop-1-bit", FnName, RemarksEnabled, in applyVirtualConstProp() 1397 Call.replaceAndErase("virtual-const-prop", FnName, RemarksEnable in applyVirtualConstProp() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | CompileOnDemandLayer.h | 597 std::string FnName = mangle(SubF->getName(), SrcM.getDataLayout()); in extractAndCompile() local 598 if (auto FnBodySym = BaseLayer.findSymbolIn(PartKey, FnName, false)) { in extractAndCompile() 608 if (auto EC = LD.StubsMgr->updatePointer(FnName, FnBodyAddr)) in extractAndCompile()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | MemoryBuiltins.cpp | 138 StringRef FnName = Callee->getName(); in getAllocationDataForFunction() local 140 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn)) in getAllocationDataForFunction() 469 StringRef FnName = Callee->getName(); in isFreeCall() 471 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn)) in isFreeCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachineInstrBuilder.h | 175 const MachineInstrBuilder &addExternalSymbol(const char *FnName, in addExternalSymbol() argument 177 MI->addOperand(*MF, MachineOperand::CreateES(FnName, TargetFlags)); in addExternalSymbol()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
H A D | ExecutionEngine.h | 211 /// defines FnName. This is very slow operation and shouldn't be used for 213 virtual Function *FindFunctionNamed(StringRef FnName);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 156 Function *ExecutionEngine::FindFunctionNamed(StringRef FnName) { in FindFunctionNamed() argument 158 Function *F = Modules[i]->getFunction(FnName); in FindFunctionNamed()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 3261 StringRef FnName = CI->getCalledFunction()->getName(); 3289 if (!TLI || !TLI->isFunctionVectorizable(FnName, VF) || CI->isNoBuiltin()) 4342 StringRef FnName = CI->getCalledFunction()->getName(); 4381 StringRef VFnName = TLI->getVectorizedFunction(FnName, VF);
|