/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyExceptionInfo.cpp | 63 SmallVector<const MachineBasicBlock *, 8> WL; in isReachableAmongDominated() local 65 WL.push_back(Src); in isReachableAmongDominated() 67 while (!WL.empty()) { in isReachableAmongDominated() 68 const auto *MBB = WL.pop_back_val(); in isReachableAmongDominated() 74 WL.push_back(Succ); in isReachableAmongDominated() 291 SmallVector<MachineBasicBlock *, 8> WL; in discoverAndMapException() local 292 WL.push_back(EHPad); in discoverAndMapException() 293 while (!WL.empty()) { in discoverAndMapException() 294 MachineBasicBlock *MBB = WL.pop_back_val(); in discoverAndMapException() 310 WL.push_back(Frontier); in discoverAndMapException() [all …]
|
H A D | WebAssemblyLateEHPrepare.cpp | 70 SmallVector<MachineBasicBlock *, 2> WL; in getMatchingEHPad() local 72 WL.push_back(MI->getParent()); in getMatchingEHPad() 74 while (!WL.empty()) { in getMatchingEHPad() 75 MachineBasicBlock *MBB = WL.pop_back_val(); in getMatchingEHPad() 88 WL.push_back(Pred); in getMatchingEHPad() 97 SmallVector<MachineBasicBlock *, 8> WL(MBBs.begin(), MBBs.end()); in eraseDeadBBsAndChildren() local 99 while (!WL.empty()) { in eraseDeadBBsAndChildren() 100 MachineBasicBlock *MBB = WL.pop_back_val(); in eraseDeadBBsAndChildren() 104 WL.append(MBB->succ_begin(), MBB->succ_end()); in eraseDeadBBsAndChildren()
|
/freebsd/sys/contrib/device-tree/src/arm/allwinner/ |
H A D | sun8i-h2-plus-bananapi-m2-zero.dts | 241 "WL-SDIO-CLK", "WL-SDIO-CMD", "WL-SDIO-D0", "WL-SDIO-D1", 242 "WL-SDIO-D2", "WL-SDIO-D3", "BT-UART-TX", "BT-UART-RX", 243 "BT-UART-RTS", "BT-UART-CTS", "WL-WAKE-AP", "BT-WAKE-AP", 253 "VCC-IO-EN", "USB0-ID", "WL-PWR-EN",
|
H A D | sun6i-a31s-sinovoip-bpi-m2.dts | 281 "", "", "", "", "", "", "WL-SDIO-CMD", "WL-SDIO-CLK", 282 "WL-SDIO-D0", "WL-SDIO-D2", "WL-SDIO-D2", "WL-SDIO-D3", 326 "WL-WAKE-HOST", "BT-WAKE_HOST", "BT-ENABLE", 327 "WL-PMU-EN", "", "", "", "", "", "", "", "", "", "", "",
|
H A D | sun7i-a20-bananapi-m1-plus.dts | 91 reset-gpios = <&pio 7 22 GPIO_ACTIVE_LOW>; /* PH22 WL-PMU-EN */
|
H A D | sun8i-a83t-bananapi-m3.dts | 106 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* PL2 WL-PMU-EN */
|
H A D | sun8i-a83t-tbs-a711.dts | 128 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* PL2 WL-PMU-EN */
|
H A D | sun8i-a83t-cubietruck-plus.dts | 155 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* PL2 WL-PMU-EN */
|
H A D | sun9i-a80-cubieboard4.dts | 120 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* PL2 WL-PMU-EN */
|
H A D | sun9i-a80-optimus.dts | 106 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* PL2 WL-PMU-EN */
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TargetSubtargetInfo.cpp | 20 const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, in TargetSubtargetInfo() argument 23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {} in TargetSubtargetInfo()
|
H A D | WasmEHPrepare.cpp | 176 SmallVector<BasicBlock *, 8> WL(BBs.begin(), BBs.end()); in eraseDeadBBsAndChildren() local 177 while (!WL.empty()) { in eraseDeadBBsAndChildren() 178 auto *BB = WL.pop_back_val(); in eraseDeadBBsAndChildren() 181 WL.append(succ_begin(BB), succ_end(BB)); in eraseDeadBBsAndChildren()
|
/freebsd/sys/contrib/ck/include/ |
H A D | ck_rwcohort.h | 44 #define CK_RWCOHORT_WP_INIT(N, RW, WL) ck_rwcohort_wp_##N##_init(RW, WL) argument 148 #define CK_RWCOHORT_RP_INIT(N, RW, WL) ck_rwcohort_rp_##N##_init(RW, WL) argument
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ReachableCode.cpp | 324 SmallVector<const CFGBlock*, 32> WL; in scanFromBlock() local 333 WL.push_back(Start); in scanFromBlock() 336 while (!WL.empty()) { in scanFromBlock() 337 const CFGBlock *item = WL.pop_back_val(); in scanFromBlock() 374 WL.push_back(B); in scanFromBlock()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericDomTree.h | 393 SmallVector<const DomTreeNodeBase<NodeT> *, 8> WL; 394 WL.push_back(RN); 396 while (!WL.empty()) { 397 const DomTreeNodeBase<NodeT> *N = WL.pop_back_val(); 399 WL.append(N->begin(), N->end());
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCSubtargetInfo.cpp | 230 const MCWriteLatencyEntry *WL, in MCSubtargetInfo() argument 236 WriteLatencyTable(WL), ReadAdvanceTable(RA), Stages(IS), in MCSubtargetInfo()
|
/freebsd/sys/contrib/device-tree/src/arm64/allwinner/ |
H A D | sun50i-a64-amarula-relic.dts | 63 reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* WL-PMU-EN: PL2 */ 150 interrupts = <0 3 IRQ_TYPE_LEVEL_LOW>; /* WL-WAKE-AP: PL3 */
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instruction.cpp | 1281 ArrayRef<unsigned> WL) { in copyMetadata() argument 1285 SmallDenseSet<unsigned, 4> WLS(WL.begin(), WL.end()); in copyMetadata() 1292 if (WL.empty() || WLS.count(MD.first)) in copyMetadata() 1295 if (WL.empty() || WLS.count(LLVMContext::MD_dbg)) in copyMetadata()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetSubtargetInfo.h | 69 const MCWriteLatencyEntry *WL,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCSubtargetInfo.h | 100 const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL,
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporter.cpp | 3056 DFSWorkList WL; in findReportInEquivalenceClass() local 3057 WL.push_back(errorNode); in findReportInEquivalenceClass() 3060 while (!WL.empty()) { in findReportInEquivalenceClass() 3061 WLItem &WI = WL.back(); in findReportInEquivalenceClass() 3073 WL.clear(); in findReportInEquivalenceClass() 3084 WL.push_back(Succ); in findReportInEquivalenceClass() 3091 if (!WL.empty() && &WL.back() == &WI) in findReportInEquivalenceClass() 3092 WL.pop_back(); in findReportInEquivalenceClass()
|
H A D | RegionStore.cpp | 699 WorkList WL; member in __anonfa909ae00511::ClusterAnalysis 752 WL.push_back(E); in AddToWorkList() 761 while (!WL.empty()) { in RunWorkList() 762 WorkListElement E = WL.pop_back_val(); in RunWorkList()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Stmt.cpp | 1122 Stmt *Body, SourceLocation WL, SourceLocation LParenLoc, in WhileStmt() argument 1133 setWhileLoc(WL); in WhileStmt() 1144 Stmt *Body, SourceLocation WL, in Create() argument 1151 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc); in Create()
|
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ |
H A D | imx6ull-dhcor-maveo-box.dts | 125 "NFC-IRQ", "WL-REG-ON", "DHCOR-BOOT-M0", "DHCOR-BOOT-M1",
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instruction.h | 420 ArrayRef<unsigned> WL = ArrayRef<unsigned>());
|