Home
last modified time | relevance | path

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

12345678910>>...54

/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()
132 inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); } in inst_end()
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()
[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()
609 show_paths(struct filemon *F, const struct filemon_state *S, in show_paths()
[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.h70 #define DBG_DUMP_HEX(F,C,M) dbg_dump_hex((F),(C),(M)) argument
71 #define DBG_DUMP_FS(F,C) dbg_dump_fs((F),(C)) argument
72 #define DBG_DUMP_CG(F,C,M) dbg_dump_cg((C),(M)) argument
73 #define DBG_DUMP_CSUM(F,C,M) dbg_dump_csum((C),(M)) argument
74 #define DBG_DUMP_INO(F,C,M) (F)->fs_magic == FS_UFS1_MAGIC \ argument
77 #define DBG_DUMP_IBLK(F,C,M,L) dbg_dump_iblk((F),(C),(M),(L)) argument
78 #define DBG_DUMP_INMAP(F,C,M) dbg_dump_inmap((F),(C),(M)) argument
79 #define DBG_DUMP_FRMAP(F,C,M) dbg_dump_frmap((F),(C),(M)) argument
80 #define DBG_DUMP_CLMAP(F,C,M) dbg_dump_clmap((F),(C),(M)) argument
81 #define DBG_DUMP_CLSUM(F,C,M) 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()
165 void setUnavailable(LibFunc F) { in setUnavailable()
170 void setAvailable(LibFunc F) { in setAvailable()
176 void setAvailableWithName(LibFunc F, StringRef Name) { in setAvailableWithName()
202 bool isFunctionVectorizable(StringRef F, const ElementCount &VF) const { in isFunctionVectorizable()
337 bool isValidProtoForLibFunc(const FunctionType &FTy, LibFunc F, in isValidProtoForLibFunc()
346 bool getLibFunc(StringRef funcName, LibFunc &F) const { in getLibFunc()
350 bool getLibFunc(const Function &FDecl, LibFunc &F) const { in getLibFunc()
356 bool getLibFunc(const CallBase &CB, LibFunc &F) const { in getLibFunc()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DGCMetadata.cpp30 for (const auto &F : M) { in invalidate() local
45 for (auto &F : M) { in run() local
57 GCFunctionAnalysis::run(Function &F, FunctionAnalysisManager &FAM) { in run()
77 GCFunctionInfo::GCFunctionInfo(const Function &F, GCStrategy &S) in GCFunctionInfo()
82 bool GCFunctionInfo::invalidate(Function &F, const PreservedAnalyses &PA, in invalidate()
96 GCFunctionInfo &GCModuleInfo::getFunctionInfo(const Function &F) { in getFunctionInfo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp52 static bool setDoesNotAccessMemory(Function &F) { in setDoesNotAccessMemory()
60 static bool setOnlyAccessesInaccessibleMemory(Function &F) { in setOnlyAccessesInaccessibleMemory()
68 static bool setOnlyReadsMemory(Function &F) { in setOnlyReadsMemory()
76 static bool setOnlyWritesMemory(Function &F) { in setOnlyWritesMemory()
84 static bool setOnlyAccessesArgMemory(Function &F) { in setOnlyAccessesArgMemory()
92 static bool setOnlyAccessesInaccessibleMemOrArgMem(Function &F) { in setOnlyAccessesInaccessibleMemOrArgMem()
100 static bool setDoesNotThrow(Function &F) { in setDoesNotThrow()
108 static bool setRetDoesNotAlias(Function &F) { in setRetDoesNotAlias()
116 static bool setDoesNotCapture(Function &F, unsigned ArgNo) { in setDoesNotCapture()
124 static bool setDoesNotAlias(Function &F, unsigned ArgNo) { in setDoesNotAlias()
[all …]
H A DUnifyFunctionExitNodes.cpp48 unifyUnreachableBlocks(Function & F) unifyUnreachableBlocks() argument
70 unifyReturnBlocks(Function & F) unifyReturnBlocks() argument
116 runOnFunction(Function & F) runOnFunction() argument
123 run(Function & F,FunctionAnalysisManager & AM) run() argument
[all...]
H A DMetaRenamer.cpp111 void MetaRenameOnlyInstructions(Function &F) { in MetaRenameOnlyInstructions() argument
117 void MetaRename(Function &F) { in MetaRename() argument
159 auto ExcludeLibFuncs = [&](Function &F) { in MetaRename() argument
169 for (auto &F in MetaRename() local
212 for (auto &F : M) { MetaRename() local
230 __anon4955dd7f0502(Function &F) run() argument
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSCCP.cpp50 static void findReturnsToZap(Function &F, in findReturnsToZap()
281 Function *F = I.first; in runIPSCCP() local
307 for (auto *F : Solver.getMRVFunctionsTracked()) { in runIPSCCP() local
318 Function *F = RI->getParent()->getParent(); in runIPSCCP() local
386 auto GetTLI = [&FAM](Function &F) -> const TargetLibraryInfo & { in run()
389 auto GetTTI = [&FAM](Function &F) -> TargetTransformInfo & { in run()
392 auto GetAC = [&FAM](Function &F) -> AssumptionCache & { in run()
395 auto GetDT = [&FAM](Function &F) -> DominatorTree & { in run()
398 auto GetBFI = [&FAM](Function &F) -> BlockFrequencyInfo & { in run()
H A DMergeFunctions.cpp174 mutable AssertingVH<Function> F; member in __anonc9c4572e0111::FunctionNode
179 FunctionNode(Function *F) : F(F), Hash(StructuralHash(*F)) {} in FunctionNode()
388 static bool hasDistinctMetadataIntrinsic(const Function &F) { in hasDistinctMetadataIntrinsic()
408 static bool isEligibleForMerging(Function &F) { in isEligibleForMerging()
455 Function *F = cast<Function>(I); in runOnModule() local
699 static bool canCreateThunkFor(Function *F) { in canCreateThunkFor()
732 void MergeFunctions::writeThunk(Function *F, Function *G) { in writeThunk()
817 static bool canCreateAliasFor(Function *F) { in canCreateAliasFor()
828 void MergeFunctions::writeAlias(Function *F, Function *G) { in writeAlias()
853 bool MergeFunctions::writeThunkOrAlias(Function *F, Function *G) { in writeThunkOrAlias()
[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/Target/NVPTX/
H A DNVPTXUtilities.cpp278 std::optional<unsigned> getMaxNTIDx(const Function &F) { in getMaxNTIDx()
282 std::optional<unsigned> getMaxNTIDy(const Function &F) { in getMaxNTIDy()
286 std::optional<unsigned> getMaxNTIDz(const Function &F) { in getMaxNTIDz()
290 std::optional<unsigned> getMaxNTID(const Function &F) { in getMaxNTID()
305 bool getMaxClusterRank(const Function &F, unsigned &x) { in getMaxClusterRank()
309 std::optional<unsigned> getReqNTIDx(const Function &F) { in getReqNTIDx()
313 std::optional<unsigned> getReqNTIDy(const Function &F) { in getReqNTIDy()
317 std::optional<unsigned> getReqNTIDz(const Function &F) { in getReqNTIDz()
321 std::optional<unsigned> getReqNTID(const Function &F) { in getReqNTID()
331 bool getMinCTASm(const Function &F, unsigned &x) { in getMinCTASm()
[all …]
/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
204 static void predictValueUseListOrderImpl(const Value *V, const Function *F, in predictValueUseListOrderImpl()
274 static void predictValueUseListOrder(const Value *V, const Function *F, in predictValueUseListOrder()
314 for (const Function &F : llvm::reverse(M)) { in predictUseListOrder() 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
[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; isExtentSigned() local
381 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; getNewValueOp() local
406 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; getNewValueOp2() local
425 const uint64_t F = MCII.get(MCI.getOpcode()).TSFlags; getType() local
515 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; hasNewValue() local
522 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; hasNewValue2() local
535 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isAccumulator() local
593 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isCofMax1() local
599 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isCofRelax1() local
605 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isCofRelax2() local
615 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isCVINew() local
630 uint64_t const F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isExtendable() local
636 uint64_t const F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isExtended() local
641 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isFloat() local
672 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isNewValue() local
678 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isNewValueStore() local
735 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isPredicated() local
745 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isPredicateLate() local
752 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isPredicatedNew() local
758 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isPredicatedTrue() local
778 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isSoloAX() local
785 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isRestrictSlot1AOK() local
792 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isRestrictNoSlot1Store() local
799 const uint64_t F = MCII.get(MCI.getOpcode()).TSFlags; isSolo() local
870 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; isVector() local
950 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; prefersSlot3() local
970 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; hasHvxTmp() local
[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/Transforms/HipStdPar/
H A DHipStdPar.cpp145 if (auto F = dyn_cast<Function>(C)) in removeUnreachableFunctions() local
152 copy_if(M, std::back_inserter(ToRemove), [&](auto &&F) { in removeUnreachableFunctions()
159 static inline bool isAcceleratorExecutionRoot(const Function *F) { in isAcceleratorExecutionRoot()
166 static inline bool checkIfSupported(const Function *F, const CallBase *CB) { in checkIfSupported()
205 auto F = std::move(Tmp.back()); in run() local
304 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() function
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
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/include/llvm/MC/
H A DMCFragment.h112 static bool classof(const MCFragment *F) { return F->getKind() == FT_Dummy; } in classof()
133 static bool classof(const MCFragment *F) { in classof()
221 static bool classof(const MCFragment *F) { in classof()
235 static bool classof(const MCFragment *F) { in classof()
253 static bool classof(const MCFragment *F) { in classof()
280 static bool classof(const MCFragment *F) { in classof()
329 static bool classof(const MCFragment *F) { in classof()
356 static bool classof(const MCFragment *F) { in classof()
386 static bool classof(const MCFragment *F) { in classof()
411 static bool classof(const MCFragment *F) { in classof()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DValue.h95 const Formula *F; variable
98 explicit BoolValue(Kind ValueKind, const Formula &F) in BoolValue()
118 TopBoolValue(const Formula &F) : BoolValue(Kind::TopBool, F) { in TopBoolValue()
135 explicit AtomicBoolValue(const Formula &F) : BoolValue(Kind::AtomicBool, F) { in AtomicBoolValue()
149 explicit FormulaBoolValue(const Formula &F) in FormulaBoolValue()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp501 Function *F = CGF.CGM.getIntrinsic(ConstrainedIntrinsicID, Src0->getType()); in emitUnaryMaybeConstrainedFPBuiltin() local
504 Function *F = CGF.CGM.getIntrinsic(IntrinsicID, Src0->getType()); in emitUnaryMaybeConstrainedFPBuiltin() local
519 Function *F = CGF.CGM.getIntrinsic(ConstrainedIntrinsicID, Src0->getType()); in emitBinaryMaybeConstrainedFPBuiltin() local
522 Function *F = CGF.CGM.getIntrinsic(IntrinsicID, Src0->getType()); in emitBinaryMaybeConstrainedFPBuiltin() local
536 Function *F = CGF.CGM.getIntrinsic(ConstrainedIntrinsicID, in emitBinaryExpMaybeConstrainedFPBuiltin() local
541 Function *F = in emitBinaryExpMaybeConstrainedFPBuiltin() local
557 Function *F = CGF.CGM.getIntrinsic(ConstrainedIntrinsicID, Src0->getType()); in emitTernaryMaybeConstrainedFPBuiltin() local
560 Function *F = CGF.CGM.getIntrinsic(IntrinsicID, Src0->getType()); in emitTernaryMaybeConstrainedFPBuiltin() local
572 Function *F; in emitCallMaybeConstrainedFPBuiltin() local
595 Function *F = CGF.CGM.getIntrinsic(IntrinsicID, Args[0]->getType()); in emitBuiltinWithOneOverloadedType() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DCNFFormula.cpp130 for (const Formula *F : Formulas) in buildCNF() local
134 const Formula *F = UnprocessedFormulas.front(); in buildCNF() local
148 auto GetVar = [&FormulaToVar](const Formula *F) { in buildCNF()
160 for (const Formula *F : Formulas) in buildCNF() local
166 for (const Formula *F : Formulas) in buildCNF() local
169 const Formula *F = UnprocessedFormulas.front(); in buildCNF() local
/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
173 static void predictValueUseListOrderImpl(const Value *V, const Function *F, in predictValueUseListOrderImpl()
231 static void predictValueUseListOrder(const Value *V, const Function *F, in predictValueUseListOrder()
271 for (const Function &F : llvm::reverse(M)) { in predictUseListOrder() local
311 for (const Function &F : M) in predictUseListOrder() local
324 for (const Function &F : M) { in predictUseListOrder() local
349 for (const Function & F : M) { in ValueEnumerator() local
387 for (const Function &F : M) in ValueEnumerator() local
414 for (const Function &F : M) { in ValueEnumerator() local
[all …]

12345678910>>...54