| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerExtFunctionsDlsym.cpp | 26 void *Fn = dlsym(RTLD_DEFAULT, FnName); 27 if (Fn == nullptr) { 36 return reinterpret_cast<T>(Fn);
|
| FuzzerMutate.h | 98 size_t (MutationDispatcher::*Fn)(uint8_t *Data, size_t Size, size_t Max);
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| CoroutineStmtBuilder.h | 27 sema::FunctionScopeInfo &Fn; 37 CoroutineStmtBuilder(Sema &S, FunctionDecl &FD, sema::FunctionScopeInfo &Fn,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| SwiftErrorValueTracking.h | 39 const Function *Fn;
|
| MachineOptimizationRemarkEmitter.h | 75 const Function &Fn = getFunction(); 76 LLVMContext &Ctx = Fn.getContext(); 101 const Function &Fn = getFunction(); 102 LLVMContext &Ctx = Fn.getContext(); 127 const Function &Fn = getFunction(); 128 LLVMContext &Ctx = Fn.getContext();
|
| FunctionLoweringInfo.h | 55 const Function *Fn; 186 void set(const Function &Fn, MachineFunction &MF, SelectionDAG *DAG);
|
| AsmPrinter.h | 307 const class Function *Fn;
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| Annotation2Metadata.cpp | 63 auto *Fn = dyn_cast<Function>(Bitcast->getOperand(0)); 64 if (!Fn) 68 for (auto &I : instructions(Fn))
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| DiagnosticInfo.cpp | 274 const Function &Fn = getFunction(); 275 LLVMContext &Ctx = Fn.getContext(); 302 const Function &Fn = getFunction(); 303 LLVMContext &Ctx = Fn.getContext(); 337 const Function &Fn = getFunction(); 338 LLVMContext &Ctx = Fn.getContext();
|
| BasicBlock.cpp | 101 std::function<bool(const Instruction &)> Fn = [=](const Instruction &I) { 105 return make_filter_range(*this, Fn); 111 std::function<bool(Instruction &)> Fn = [=](Instruction &I) { 115 return make_filter_range(*this, Fn);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| EntryExitInstrumenter.cpp | 37 FunctionCallee Fn = M.getOrInsertFunction(Func, Type::getVoidTy(C)); 38 CallInst *Call = CallInst::Create(Fn, "", InsertionPt); 46 FunctionCallee Fn = M.getOrInsertFunction( 59 CallInst::Create(Fn, ArrayRef<Value *>(Args), "", InsertionPt);
|
| AMDGPUEmitPrintf.cpp | 65 auto Fn = M->getOrInsertFunction("__ockl_printf_begin", Int64Ty, Int64Ty); 66 return Builder.CreateCall(Fn, Version); 76 auto Fn = M->getOrInsertFunction("__ockl_printf_append_args", Int64Ty, 81 return Builder.CreateCall(Fn, {Desc, NumArgsValue, Arg0, Arg1, Arg2, Arg3, 168 auto Fn = M->getOrInsertFunction("__ockl_printf_append_string_n", Int64Ty, 171 return Builder.CreateCall(Fn, {Desc, Str, Length, IsLastInt32});
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGCXX.cpp | 209 auto *Fn = cast<llvm::Function>( 213 setFunctionLinkage(GD, Fn); 215 CodeGenFunction(*this).GenerateCode(GD, Fn, FnInfo); 216 setNonAliasAttributes(GD, Fn); 217 SetLLVMFunctionAttributesForDefinition(cast<CXXMethodDecl>(GD.getDecl()), Fn); 218 return Fn;
|
| CGObjCRuntime.cpp | 129 CallObjCEndCatch(bool MightThrow, llvm::FunctionCallee Fn) 130 : MightThrow(MightThrow), Fn(Fn) {} 132 llvm::FunctionCallee Fn; 136 CGF.EmitRuntimeCallOrInvoke(Fn); 138 CGF.EmitNounwindRuntimeCall(Fn);
|
| CGDeclCXX.cpp | 242 llvm::Function *fn = CGM.CreateGlobalInitOrCleanUpFunction( local 248 CGM.getContext().VoidTy, fn, FI, FunctionArgList(), 262 return fn; 374 llvm::Function *Fn = llvm::Function::Create( 380 Fn->setSection(Section); 383 SetInternalFunctionAttributes(GlobalDecl(), Fn, FI); 385 Fn->setCallingConv(getRuntimeCC()); 388 Fn->setDoesNotThrow(); 391 !isInNoSanitizeList(SanitizerKind::Address, Fn, Loc)) 392 Fn->addFnAttr(llvm::Attribute::SanitizeAddress) 857 llvm::Function *fn = CGM.CreateGlobalInitOrCleanUpFunction( local [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/ |
| Config.h | 268 DiagnosticHandlerFunction *Fn; 270 : Fn(DiagHandlerFn) {} 272 (*Fn)(DI);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| Parallel.h | 131 void parallel_for_each(IterTy Begin, IterTy End, FuncTy Fn) { 139 Fn(*Begin); 151 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); 154 std::for_each(Begin, End, Fn); 158 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) { 166 Fn(Begin); 179 TG.spawn([=, &Fn] { 181 Fn(J); 185 Fn(J) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/ |
| WholeProgramDevirt.h | 120 VirtualCallTarget(Function *Fn, const TypeMemberInfo *TM); 124 : Fn(nullptr), TM(TM), IsBigEndian(IsBigEndian), WasDevirt(false) {} 127 Function *Fn; 129 // A pointer to the type identifier member through which the pointer to Fn is
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachineModuleInfo.cpp | 71 Function *Fn; // The containing function of the BasicBlock. 113 assert(BB->getParent() == Entry.Fn && "Parent changed"); 122 Entry.Fn = BB->getParent(); 152 assert((BB->getParent() == nullptr || BB->getParent() == Entry.Fn) && 163 DeletedAddrLabelsNeedingEmission[Entry.Fn].push_back(Sym);
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| CrashRecoveryContext.cpp | 225 bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) { 227 Fn(); 233 Fn(); 411 bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) { 424 Fn(); 483 function_ref<void()> Fn; 497 Info->Result = Info->CRC->RunSafely(Info->Fn); 499 bool CrashRecoveryContext::RunSafelyOnThread(function_ref<void()> Fn, 502 RunSafelyOnThreadInfo Info = { Fn, this, UseBackgroundPriority, false };
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| SVEIntrinsicOpts.cpp | 301 auto Fn = Intrinsic::getDeclaration(M, I->getIntrinsicID(), Tys); 302 auto CI = CallInst::Create(Fn, Ops, I->getName(), I);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
| X86WinCOFFTargetStreamer.cpp | 198 const MCSymbol *Fn = CurFPOData->Function; 199 AllFPOData.insert({Fn, std::move(CurFPOData)});
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| LowerExpectIntrinsic.cpp | 83 Function *Fn = CI->getCalledFunction(); 84 if (!Fn || (Fn->getIntrinsicID() != Intrinsic::expect && 85 Fn->getIntrinsicID() != Intrinsic::expect_with_probability)) 97 getBranchWeight(Fn->getIntrinsicID(), CI, n + 1); 301 Function *Fn = CI->getCalledFunction(); 302 if (!Fn || (Fn->getIntrinsicID() != Intrinsic::expect && 303 Fn->getIntrinsicID() != Intrinsic::expect_with_probability)) 316 getBranchWeight(Fn->getIntrinsicID(), CI, 2) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| XCoreFrameLowering.cpp | 326 const Function *Fn = &MF.getFunction(); 328 Fn->hasPersonalityFn() ? Fn->getPersonalityFn() : nullptr; 361 const Function *Fn = &MF.getFunction(); 363 Fn->hasPersonalityFn() ? Fn->getPersonalityFn() : nullptr;
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/ |
| Coroutines.cpp | 110 auto *Fn = Intrinsic::getDeclaration(&TheModule, Intrinsic::coro_subfn_addr); 115 auto *Call = CallInst::Create(Fn, {Arg, IndexVal}, "", InsertPt); 247 auto *Fn = Intrinsic::getDeclaration(M, Intrinsic::coro_save); 249 cast<CoroSaveInst>(CallInst::Create(Fn, CoroBegin, "", SuspendInst));
|