Home
last modified time | relevance | path

Searched refs:DFS (Results 1 – 25 of 40) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopIterator.h174 LoopBlocksDFS DFS;
177 LoopBlocksRPO(Loop *Container) : DFS(Container) {} in LoopBlocksRPO()
181 DFS.perform(LI); in perform()
206 LoopBlocksDFS &DFS;
211 DFS(Storage), LI(LInfo) {} in LoopBlocksTraversal()
219 return po_ext_begin(DFS.L->getHeader(), *this); in begin()
223 return po_ext_end(DFS.L->getHeader(), *this); in end()
232 if (!DFS.L->contains(LI->getLoopFor(BB))) in visitPreorder()
235 return DFS.PostNumbers.insert(std::make_pair(BB, 0)).second; in visitPreorder()
242 DFS.PostBlocks.push_back(BB); in finishPostorder()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp580 DataFlowSanitizer &DFS; member
618 : DFS(DFS), F(F), IsNativeABI(IsNativeABI), in DFSanFunction()
1787 Value *Base = IRB.CreatePointerCast(DFS.ArgTLS, DFS.IntptrTy); in getArgTLS()
1796 DFS.RetvalTLS, PointerType::get(DFS.getShadowTy(T), 0), "_dfsret"); in getRetvalTLS()
1802 return IRB.CreateConstGEP2_64(DFS.ArgOriginTLSTy, DFS.ArgOriginTLS, 0, ArgNo, in getArgOriginTLS()
1809 return DFS.ZeroOrigin; in getOrigin()
1968 if (DFS.isZeroShadow(V1)) in combineShadows()
2051 return DFS.ZeroOrigin; in combineOrigins()
2164 ShadowSize == 4 ? Type::getInt32Ty(*DFS.Ctx) : Type::getInt64Ty(*DFS.Ctx); in loadShadowFast()
2320 DFS.DFSanUnionLoadFn, {ShadowAddr, ConstantInt::get(DFS.IntptrTy, Size)}); in loadShadowOriginSansLoadTracking()
[all …]
/freebsd-14.2/sys/contrib/dev/mediatek/mt76/
H A Dmt76x02_dfs.c148 mt76_wr(dev, MT_BBP(DFS, 36), data); in mt76x02_dfs_set_capture_mode_ctrl()
212 mt76_wr(dev, MT_BBP(DFS, 1), 0xf); in mt76x02_dfs_detector_reset()
254 mt76_wr(dev, MT_BBP(DFS, 0), data); in mt76x02_dfs_get_hw_pulse()
668 mt76_wr(dev, MT_BBP(DFS, 1), 0xf); in mt76x02_dfs_tasklet()
742 mt76_wr(dev, MT_BBP(DFS, 2), data); in mt76x02_dfs_set_bbp_params()
745 mt76_wr(dev, MT_BBP(DFS, 3), data); in mt76x02_dfs_set_bbp_params()
749 mt76_wr(dev, MT_BBP(DFS, 0), i); in mt76x02_dfs_set_bbp_params()
787 mt76_wr(dev, MT_BBP(DFS, 1), 0xf); in mt76x02_dfs_set_bbp_params()
788 mt76_wr(dev, MT_BBP(DFS, 36), 0x3); in mt76x02_dfs_set_bbp_params()
817 mt76_wr(dev, MT_BBP(DFS, 0), 0); in mt76x02_phy_dfs_adjust_agc()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopSimplifyCFG.cpp117 LoopBlocksDFS DFS; member in __anon64818a000111::ConstantTerminatorFoldingImpl
182 bool hasIrreducibleCFG(LoopBlocksDFS &DFS) { in hasIrreducibleCFG() argument
183 assert(DFS.isComplete() && "DFS is expected to be finished"); in hasIrreducibleCFG()
187 for (auto I = DFS.beginRPO(), E = DFS.endRPO(); I != E; ++I) in hasIrreducibleCFG()
190 for (auto I = DFS.beginRPO(), E = DFS.endRPO(); I != E; ++I) { in hasIrreducibleCFG()
205 DFS.perform(&LI); in analyze()
206 assert(DFS.isComplete() && "DFS is expected to be finished"); in analyze()
215 if (hasIrreducibleCFG(DFS)) { in analyze()
222 for (auto I = DFS.beginRPO(), E = DFS.endRPO(); I != E; ++I) { in analyze()
298 for (auto I = DFS.beginPostorder(), E = DFS.endPostorder(); I != E; ++I) { in analyze()
[all …]
/freebsd-14.2/contrib/file/magic/Magdir/
H A Ddyadic50 >>>1 byte 0x16 DFS component file 64-bit level 1 journaled checksummed
51 >>>1 byte 0x17 DFS component file 64-bit level 2 journaled checksummed
52 >>>1 byte 0x18 DFS component file 64-bit level 3 journaled checksummed
H A Dsvf5 0 string DFS\ File\x0D\x0Ahttp://www.difstream.com\x0D\x0A SmartVersion binary patch file
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DDDG.cpp205 LoopBlocksDFS DFS(&L); in DataDependenceGraph() local
206 DFS.perform(&LI); in DataDependenceGraph()
208 append_range(BBList, make_range(DFS.beginRPO(), DFS.endRPO())); in DataDependenceGraph()
H A DLoopInfo.cpp685 LoopBlocksDFS DFS; member in __anon951701df0511::UnloopUpdater
698 UnloopUpdater(Loop *UL, LoopInfo *LInfo) : Unloop(*UL), LI(LInfo), DFS(UL) {} in UnloopUpdater()
717 LoopBlocksTraversal Traversal(DFS, LI); in updateBlockParents()
745 for (LoopBlocksDFS::POIterator POI = DFS.beginPostorder(), in updateBlockParents()
746 POE = DFS.endPostorder(); in updateBlockParents()
832 assert((FoundIB || !DFS.hasPostorder(*I)) && "should have seen IB"); in getNearestLoop()
H A DVectorUtils.cpp1075 LoopBlocksDFS DFS(TheLoop); in collectConstStrideAccesses() local
1076 DFS.perform(LI); in collectConstStrideAccesses()
1077 for (BasicBlock *BB : make_range(DFS.beginRPO(), DFS.endRPO())) in collectConstStrideAccesses()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1474 SchedDAGReverseDFS DFS; in compute() local
1476 DFS.follow(&SU); in compute()
1479 while (DFS.getPred() != DFS.getPredEnd()) { in compute()
1480 const SDep &PredDep = *DFS.getPred(); in compute()
1481 DFS.advance(); in compute()
1489 Impl.visitCrossEdge(PredDep, DFS.getCurr()); in compute()
1493 DFS.follow(PredDep.getSUnit()); in compute()
1496 const SUnit *Child = DFS.getCurr(); in compute()
1497 const SDep *PredDep = DFS.backtrack(); in compute()
1500 Impl.visitPostorderEdge(*PredDep, DFS.getCurr()); in compute()
[all …]
H A DScheduleDAG.cpp558 DFS(Y, UpperBound, HasLoop); in AddPred()
571 void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound, in DFS() function in ScheduleDAGTopologicalSort
739 DFS(TargetSU, UpperBound, HasLoop); in IsReachable()
/freebsd-14.2/sys/contrib/dev/athk/
H A Ddfs_pattern_detector.c225 ath_dbg(dpd->common, DFS, in channel_detector_create()
302 ath_dbg(dpd->common, DFS, in dpd_add_pulse()
373 ath_dbg(common, DFS,"Could not set DFS domain to %d", region); in dfs_pattern_detector_init()
/freebsd-14.2/sys/contrib/dev/athk/ath10k/
H A DKconfig86 bool "Atheros DFS support for certified platforms"
90 This option enables DFS support for initiating radiation on
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DWorkList.cpp36 class DFS : public WorkList { class
82 return std::make_unique<DFS>(); in makeDFS()
H A DAnalyzerOptions.cpp70 .Case("dfs", ExplorationStrategyKind::DFS) in getExplorationStrategy()
/freebsd-14.2/sys/contrib/device-tree/Bindings/clock/
H A Dmvebu-cpu-clock.txt8 by address and length of the PMU DFS registers
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp522 LoopBlocksDFS DFS(L); in UnrollLoop() local
523 DFS.perform(LI); in UnrollLoop()
526 LoopBlocksDFS::RPOIterator BlockBegin = DFS.beginRPO(); in UnrollLoop()
527 LoopBlocksDFS::RPOIterator BlockEnd = DFS.endRPO(); in UnrollLoop()
H A DLoopUnrollAndJam.cpp337 LoopBlocksDFS DFS(L); in UnrollAndJamLoop() local
338 DFS.perform(LI); in UnrollAndJamLoop()
340 LoopBlocksDFS::RPOIterator BlockBegin = DFS.beginRPO(); in UnrollAndJamLoop()
341 LoopBlocksDFS::RPOIterator BlockEnd = DFS.endRPO(); in UnrollAndJamLoop()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp415 std::vector<BasicBlock *> DFS; in computeOutliningColdRegionsInfo() local
417 DFS.push_back(CurrEntry); in computeOutliningColdRegionsInfo()
426 while (!DFS.empty()) { in computeOutliningColdRegionsInfo()
427 auto *ThisBB = DFS.back(); in computeOutliningColdRegionsInfo()
428 DFS.pop_back(); in computeOutliningColdRegionsInfo()
439 DFS.push_back(*SI); in computeOutliningColdRegionsInfo()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp293 struct DFS { in FindInterveningFrames() struct
303 DFS(Function *end, ModuleList &images, Target &target, in FindInterveningFrames() argument
351 DFS(&end, images, target, exe_ctx).search(*first_edge, *first_callee, path); in FindInterveningFrames()
/freebsd-14.2/sys/contrib/device-tree/Bindings/cpufreq/
H A Dbrcm,stb-avs-cpu-freq.txt16 firmware. On some SoCs, this firmware supports DFS and DVFS in addition to
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyzerOptions.h108 DFS, enumerator
/freebsd-14.2/sys/contrib/dev/iwlwifi/
H A Diwl-eeprom-parse.c499 CHECK_AND_PRINT(DFS), in iwl_mod_ht40_chan_info()
582 CHECK_AND_PRINT_I(DFS), in iwl_init_channel_map()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericLoopInfoImpl.h589 PopulateLoopsDFS<BlockT, LoopT> DFS(this); in analyze()
590 DFS.traverse(DomRoot->getBlock()); in analyze()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp3056 DFS; in getBlocksForScope() local
3065 DFS.push_back({succ, succ->succ_begin()}); in getBlocksForScope()
3069 while (!DFS.empty()) { in getBlocksForScope()
3070 const MachineBasicBlock *CurBB = DFS.back().first; in getBlocksForScope()
3071 MachineBasicBlock::const_succ_iterator &CurSucc = DFS.back().second; in getBlocksForScope()
3074 DFS.pop_back(); in getBlocksForScope()
3082 DFS.push_back({*CurSucc, (*CurSucc)->succ_begin()}); in getBlocksForScope()

12