Home
last modified time | relevance | path

Searched defs:F (Results 1 – 25 of 1317) sorted by relevance

12345678910>>...53

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstIterator.h131 inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); } in inst_begin()
133 inline inst_range instructions(Function *F) { in instructions()
136 inline const_inst_iterator inst_begin(const Function *F) { in inst_begin()
139 inline const_inst_iterator inst_end(const Function *F) { in inst_end()
142 inline const_inst_range instructions(const Function *F) { in instructions()
145 inline inst_iterator inst_begin(Function &F) { return inst_iterator(F); } in inst_begin()
146 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true); } in inst_end()
147 inline inst_range instructions(Function &F) { in instructions()
150 inline const_inst_iterator inst_begin(const Function &F) { in inst_begin()
153 inline const_inst_iterator inst_end(const Function &F) { in inst_end()
[all …]
/freebsd/contrib/bmake/filemon/
H A Dfilemon_ktrace.c198 struct filemon *F; in filemon_open() local
246 filemon_closefd(struct filemon *F) in filemon_closefd()
282 filemon_setfd(struct filemon *F, int fd) in filemon_setfd()
316 filemon_setpid_parent(struct filemon *F, pid_t pid) in filemon_setpid_parent()
329 filemon_setpid_child(const struct filemon *F, pid_t pid) in filemon_setpid_child()
351 filemon_close(struct filemon *F) in filemon_close()
393 filemon_readfd(const struct filemon *F) in filemon_readfd()
408 filemon_dispatch(struct filemon *F) in filemon_dispatch()
511 filemon_process(struct filemon *F) in filemon_process()
671 show_fork(struct filemon *F, const struct filemon_state *S, in show_fork()
[all …]
H A Dfilemon_dev.c67 struct filemon *F; in filemon_open() local
93 filemon_setfd(struct filemon *F, int fd) in filemon_setfd()
114 filemon_setpid_child(const struct filemon *F, pid_t pid) in filemon_setpid_child()
122 filemon_close(struct filemon *F) in filemon_close()
/freebsd/sbin/growfs/
H A Ddebug.h123 #define DBG_DUMP_HEX(F,C,M) argument
124 #define DBG_DUMP_FS(F,C) argument
125 #define DBG_DUMP_CG(F,C,M) argument
126 #define DBG_DUMP_CSUM(F,C,M) argument
127 #define DBG_DUMP_INO(F,C,M) argument
128 #define DBG_DUMP_IBLK(F,C,M,L) argument
129 #define DBG_DUMP_INMAP(F,C,M) argument
130 #define DBG_DUMP_FRMAP(F,C,M) argument
131 #define DBG_DUMP_CLMAP(F,C,M) argument
132 #define DBG_DUMP_CLSUM(F,C,M) argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h97 void setState(LibFunc F, AvailabilityState State) { in setState()
101 AvailabilityState getState(LibFunc F) const { in getState()
164 void setUnavailable(LibFunc F) { in setUnavailable()
169 void setAvailable(LibFunc F) { in setAvailable()
175 void setAvailableWithName(LibFunc F, StringRef Name) { in setAvailableWithName()
381 void setUnavailable(LibFunc F) LLVM_ATTRIBUTE_UNUSED { in setUnavailable()
392 bool has(LibFunc F) const { in has()
398 bool isFunctionVectorizable(StringRef F) const { in isFunctionVectorizable()
412 bool hasOptimizedCodeGen(LibFunc F) const { in hasOptimizedCodeGen()
444 StringRef getName(LibFunc F) const { in getName()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DGCMetadata.cpp29 for (const auto &F : M) { in invalidate() local
44 for (auto &F : M) { in run() local
56 GCFunctionAnalysis::run(Function &F, FunctionAnalysisManager &FAM) { in run()
76 GCFunctionInfo::GCFunctionInfo(const Function &F, GCStrategy &S) in GCFunctionInfo()
81 bool GCFunctionInfo::invalidate(Function &F, const PreservedAnalyses &PA, in invalidate()
95 GCFunctionInfo &GCModuleInfo::getFunctionInfo(const Function &F) { in getFunctionInfo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp1451 if (const Function *F = in emitLibCall() local
1535 if (const Function *F = in emitMemCpyChk() local
1711 if (const Function *F = in emitUnaryFloatFnCallHelper() local
1761 if (const Function *F = in emitBinaryFloatFnCallHelper() local
1812 if (const Function *F = in emitPutChar() local
1830 if (const Function *F = in emitPutS() local
1913 if (const Function *F = in emitMalloc() local
1933 if (const auto *F = in emitCalloc() local
1953 if (const Function *F = in emitHotColdNew() local
1974 if (const Function *F = in emitHotColdNewNoThrow() local
[all …]
H A DUnifyFunctionExitNodes.cpp24 bool unifyUnreachableBlocks(Function &F) { in unifyUnreachableBlocks()
46 bool unifyReturnBlocks(Function &F) { in unifyReturnBlocks()
89 PreservedAnalyses UnifyFunctionExitNodesPass::run(Function &F, in run()
H A DMetaRenamer.cpp111 void MetaRenameOnlyInstructions(Function &F) { in MetaRenameOnlyInstructions()
117 void MetaRename(Function &F) { in MetaRename()
159 auto ExcludeLibFuncs = [&](Function &F) { in MetaRename()
169 for (auto &F : M) { in MetaRename() local
212 for (auto &F : M) { in MetaRename() local
230 auto GetTLI = [&FAM](Function &F) -> TargetLibraryInfo & { in run()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSCCP.cpp50 static void findReturnsToZap(Function &F, in findReturnsToZap()
282 Function *F = I.first; in runIPSCCP() local
319 for (auto *F : Solver.getMRVFunctionsTracked()) { in runIPSCCP() local
330 Function *F = RI->getParent()->getParent(); in runIPSCCP() local
398 auto GetTLI = [&FAM](Function &F) -> const TargetLibraryInfo & { in run()
401 auto GetTTI = [&FAM](Function &F) -> TargetTransformInfo & { in run()
404 auto GetAC = [&FAM](Function &F) -> AssumptionCache & { in run()
407 auto GetDT = [&FAM](Function &F) -> DominatorTree & { in run()
410 auto GetBFI = [&FAM](Function &F) -> BlockFrequencyInfo & { in run()
H A DAlwaysInliner.cpp100 erase_if(InlinedFunctions, [&](Function *F) { in AlwaysInlineImpl()
107 InlinedFunctions, [&](Function *F) { return F->hasComdat(); }); in AlwaysInlineImpl()
143 auto GetAAR = [&](Function &F) -> AAResults & { in runOnModule()
146 auto GetAssumptionCache = [&](Function &F) -> AssumptionCache & { in runOnModule()
182 auto GetAssumptionCache = [&](Function &F) -> AssumptionCache & { in run()
185 auto GetBFI = [&](Function &F) -> BlockFrequencyInfo & { in run()
188 auto GetAAR = [&](Function &F) -> AAResults & { in run()
H A DMergeFunctions.cpp174 mutable AssertingVH<Function> F; member in __anon572da0f60111::FunctionNode
381 static bool hasDistinctMetadataIntrinsic(const Function &F) { in hasDistinctMetadataIntrinsic()
401 static bool isEligibleForMerging(Function &F) { in isEligibleForMerging()
448 Function *F = cast<Function>(I); in runOnModule() local
649 static bool canCreateThunkFor(Function *F) { in canCreateThunkFor()
680 void MergeFunctions::writeThunk(Function *F, Function *G) { in writeThunk()
763 static bool canCreateAliasFor(Function *F) { in canCreateAliasFor()
774 void MergeFunctions::writeAlias(Function *F, Function *G) { in writeAlias()
888 Function *F = FN.getFunc(); in replaceFunctionInTree() local
941 Function *F = OldF.getFunc(); in insert() local
[all …]
H A DLoopExtractor.cpp117 auto LookupDomTree = [this](Function &F) -> DominatorTree & { in runOnModule()
120 auto LookupLoopInfo = [this, &Changed](Function &F) -> LoopInfo & { in runOnModule()
123 auto LookupACT = [this](Function &F) -> AssumptionCache * { in runOnModule()
146 Function &F = *I; in runOnModule() local
161 bool LoopExtractor::runOnFunction(Function &F) { in runOnFunction()
263 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree & { in run()
266 auto LookupLoopInfo = [&FAM](Function &F) -> LoopInfo & { in run()
269 auto LookupAssumptionCache = [&FAM](Function &F) -> AssumptionCache * { in run()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCFGPrinter.cpp60 static void writeCFGToDotFile(Function &F, BlockFrequencyInfo *BFI, in writeCFGToDotFile()
82 static void viewCFG(Function &F, const BlockFrequencyInfo *BFI, in viewCFG()
93 PreservedAnalyses CFGViewerPass::run(Function &F, FunctionAnalysisManager &AM) { in run()
102 PreservedAnalyses CFGOnlyViewerPass::run(Function &F, in run()
112 PreservedAnalyses CFGPrinterPass::run(Function &F, in run()
122 PreservedAnalyses CFGOnlyPrinterPass::run(Function &F, in run()
164 const Function *F) { in computeDeoptOrUnreachablePaths()
H A DRegionInfo.cpp79 bool RegionInfo::invalidate(Function &F, const PreservedAnalyses &PA, in invalidate()
96 void RegionInfo::recalculate(Function &F, DominatorTree *DT_, in recalculate()
124 bool RegionInfoPass::runOnFunction(Function &F) { in runOnFunction()
188 RegionInfo RegionInfoAnalysis::run(Function &F, FunctionAnalysisManager &AM) { in run()
201 PreservedAnalyses RegionInfoPrinterPass::run(Function &F, in run()
209 PreservedAnalyses RegionInfoVerifierPass::run(Function &F, in run()
H A DPostDominators.cpp45 bool PostDominatorTree::invalidate(Function &F, const PreservedAnalyses &PA, in invalidate()
76 bool PostDominatorTreeWrapperPass::runOnFunction(Function &F) { in runOnFunction()
98 PostDominatorTree PostDominatorTreeAnalysis::run(Function &F, in run()
108 PostDominatorTreePrinterPass::run(Function &F, FunctionAnalysisManager &AM) { in run()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILValueEnumerator.cpp125 for (const Function &F : M) { in orderModule() local
140 for (const Function &F : M) { in orderModule() local
168 for (const Function &F : M) in orderModule() local
178 for (const Function &F : M) { in orderModule() local
339 for (const Function &F : M) in predictUseListOrder() local
352 for (const Function &F : M) { in predictUseListOrder() local
372 for (const Function &F : M) { in ValueEnumerator() local
411 for (const Function &F : M) in ValueEnumerator() local
438 for (const Function &F : M) { in ValueEnumerator() local
746 unsigned F, const DIArgList *ArgList) { in EnumerateFunctionLocalListMetadata()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp107 static FPParamVariant whichFPParamVariantNeeded(Function &F) { in whichFPParamVariantNeeded()
157 static bool needsFPStubFromParams(Function &F) { in needsFPStubFromParams()
171 static bool needsFPReturnHelper(Function &F) { in needsFPReturnHelper()
181 static bool needsFPHelperFromSig(Function &F) { in needsFPHelperFromSig()
257 static void assureFPCallStub(Function &F, Module *M, in assureFPCallStub()
371 static bool isIntrinsicInline(Function *F) { in isIntrinsicInline()
378 static bool fixupFPReturnAndCall(Function &F, Module *M, in fixupFPReturnAndCall()
416 FunctionCallee F = (M->getOrInsertFunction(Name, A, MyVoid, T)); in fixupFPReturnAndCall() local
445 static void createFPFnStub(Function *F, Module *M, FPParamVariant PV, in createFPFnStub()
483 static void removeUseSoftFloat(Function &F) { in removeUseSoftFloat()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.cpp243 uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getMemAccessSize() local
250 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getAddrMode() local
318 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtendableOp() local
336 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtentAlignment() local
342 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtentBits() local
348 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in isExtentSigned() local
381 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getNewValueOp() local
406 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getNewValueOp2() local
425 const uint64_t F = MCII.get(MCI.getOpcode()).TSFlags; in getType() local
515 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in hasNewValue() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/HipStdPar/
H A DHipStdPar.cpp144 if (auto F = dyn_cast<Function>(C)) in removeUnreachableFunctions() local
151 copy_if(M, std::back_inserter(ToRemove), [&](auto &&F) { in removeUnreachableFunctions()
158 static inline bool isAcceleratorExecutionRoot(const Function *F) { in isAcceleratorExecutionRoot()
165 static inline bool checkIfSupported(const Function *F, const CallBase *CB) { in checkIfSupported()
204 auto F = std::move(Tmp.back()); in run() local
303 if (auto F = M.getFunction("__hipstdpar_hidden_free")) { in run() local
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DEscapeEnumerator.h30 Function &F; variable
43 : F(F), CleanupBBName(N), StateBB(F.begin()), StateE(F.end()), in F() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DThreadPool.h66 auto async(Function &&F, Args &&...ArgList) { in async()
74 auto async(ThreadPoolTaskGroup &Group, Function &&F, Args &&...ArgList) { in async()
124 auto F = Promise->get_future(); in createTaskAndFuture() local
133 auto F = Promise->get_future(); in createTaskAndFuture() local
235 inline auto async(Function &&F, Args &&...ArgList) { in async()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h141 static bool classof(const MCFragment *F) { in classof()
232 static bool classof(const MCFragment *F) { in classof()
247 static bool classof(const MCFragment *F) { in classof()
266 static bool classof(const MCFragment *F) { in classof()
293 static bool classof(const MCFragment *F) { in classof()
342 static bool classof(const MCFragment *F) { in classof()
369 static bool classof(const MCFragment *F) { in classof()
399 static bool classof(const MCFragment *F) { in classof()
426 static bool classof(const MCFragment *F) { in classof()
452 static bool classof(const MCFragment *F) { in classof()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp116 for (const Function &F : reverse(M)) in orderModule() local
125 for (const Function &F : M) { in orderModule() local
263 for (const Function &F : llvm::reverse(M)) { in predictUseListOrder() local
297 for (const Function &F : M) in predictUseListOrder() local
310 for (const Function &F : M) { in predictUseListOrder() local
335 for (const Function & F : M) { in ValueEnumerator() local
373 for (const Function &F : M) in ValueEnumerator() local
400 for (const Function &F : M) { in ValueEnumerator() local
721 unsigned F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata()
741 unsigned F, const DIArgList *ArgList) { in EnumerateFunctionLocalListMetadata()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp253 bool getMaxNTIDx(const Function &F, unsigned &x) { in getMaxNTIDx()
257 bool getMaxNTIDy(const Function &F, unsigned &y) { in getMaxNTIDy()
261 bool getMaxNTIDz(const Function &F, unsigned &z) { in getMaxNTIDz()
265 bool getMaxClusterRank(const Function &F, unsigned &x) { in getMaxClusterRank()
269 bool getReqNTIDx(const Function &F, unsigned &x) { in getReqNTIDx()
273 bool getReqNTIDy(const Function &F, unsigned &y) { in getReqNTIDy()
277 bool getReqNTIDz(const Function &F, unsigned &z) { in getReqNTIDz()
281 bool getMinCTASm(const Function &F, unsigned &x) { in getMinCTASm()
285 bool getMaxNReg(const Function &F, unsigned &x) { in getMaxNReg()
289 bool isKernelFunction(const Function &F) { in isKernelFunction()
[all …]

12345678910>>...53