/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | VecFuncs.def | 18 #define MASKED true 722 TLI_DEFINE_VECFUNC("acos", "_ZGVsMxv_acos", SCALABLE(2), MASKED, "_ZGVsMxv") 723 TLI_DEFINE_VECFUNC("acosf", "_ZGVsMxv_acosf", SCALABLE(4), MASKED, "_ZGVsMxv") 724 TLI_DEFINE_VECFUNC("llvm.acos.f64", "_ZGVsMxv_acos", SCALABLE(2), MASKED, "_ZGVsMxv") 725 TLI_DEFINE_VECFUNC("llvm.acos.f32", "_ZGVsMxv_acosf", SCALABLE(4), MASKED, "_ZGVsMxv") 727 TLI_DEFINE_VECFUNC("acosh", "_ZGVsMxv_acosh", SCALABLE(2), MASKED, "_ZGVsMxv") 728 TLI_DEFINE_VECFUNC("acoshf", "_ZGVsMxv_acoshf", SCALABLE(4), MASKED, "_ZGVsMxv") 730 TLI_DEFINE_VECFUNC("asin", "_ZGVsMxv_asin", SCALABLE(2), MASKED, "_ZGVsMxv") 731 TLI_DEFINE_VECFUNC("asinf", "_ZGVsMxv_asinf", SCALABLE(4), MASKED, "_ZGVsMxv") 732 TLI_DEFINE_VECFUNC("llvm.asin.f64", "_ZGVsMxv_asin", SCALABLE(2), MASKED, "_ZGVsMxv") [all …]
|
H A D | TargetLibraryInfo.h | 36 /// <mask> = "M" if masked, "N" if no mask. 47 bool Masked; variable 53 ElementCount VectorizationFactor, bool Masked, StringRef VABIPrefix) in VecDesc() argument 55 VectorizationFactor(VectorizationFactor), Masked(Masked), in VecDesc() 61 bool isMasked() const { return Masked; } in isMasked() 214 bool Masked) const; 220 bool Masked) const; 396 bool Masked = false) const { 397 return Impl->getVectorizedFunction(F, VF, Masked); 400 bool Masked) const { in getVectorMappingInfo() argument [all …]
|
/freebsd/sys/dev/ath/ath_hal/ar5416/ |
H A D | ar5416_interrupts.c | 58 * the interrupt line, and returns both the masked and unmasked mapped ISR 62 * (*masked) is cleared on initial call. 64 * Returns: A hardware-abstracted bitmap of all non-masked-out 68 ar5416GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) in ar5416GetPendingInterrupts() argument 85 *masked = 0; in ar5416GetPendingInterrupts() 98 *masked = 0; in ar5416GetPendingInterrupts() 145 *masked = 0; in ar5416GetPendingInterrupts() 149 *masked = isr & HAL_INT_COMMON; in ar5416GetPendingInterrupts() 152 *masked |= HAL_INT_RX; in ar5416GetPendingInterrupts() 154 *masked |= HAL_INT_TX; in ar5416GetPendingInterrupts() [all …]
|
/freebsd/sys/dev/ath/ath_hal/ar5211/ |
H A D | ar5211_interrupts.c | 41 * the interrupt line, and returns both the masked and unmasked mapped ISR 45 * Returns: A hardware-abstracted bitmap of all non-masked-out 49 ar5211GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) in ar5211GetPendingInterrupts() argument 55 *masked = 0; in ar5211GetPendingInterrupts() 59 *masked = isr & HAL_INT_COMMON; in ar5211GetPendingInterrupts() 62 *masked |= HAL_INT_FATAL; in ar5211GetPendingInterrupts() 64 *masked |= HAL_INT_RX; in ar5211GetPendingInterrupts() 66 *masked |= HAL_INT_TX; in ar5211GetPendingInterrupts() 75 *masked |= HAL_INT_FATAL; in ar5211GetPendingInterrupts() 81 if (*masked & HAL_INT_FATAL) { in ar5211GetPendingInterrupts()
|
/freebsd/sys/dev/ath/ath_hal/ar5212/ |
H A D | ar5212_interrupts.c | 46 * the interrupt line, and returns both the masked and unmasked mapped ISR 50 * Returns: A hardware-abstracted bitmap of all non-masked-out 54 ar5212GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) in ar5212GetPendingInterrupts() argument 77 *masked = 0; in ar5212GetPendingInterrupts() 81 *masked = isr & HAL_INT_COMMON; in ar5212GetPendingInterrupts() 84 *masked |= HAL_INT_FATAL; in ar5212GetPendingInterrupts() 86 *masked |= HAL_INT_RX; in ar5212GetPendingInterrupts() 88 *masked |= HAL_INT_TX; in ar5212GetPendingInterrupts() 105 *masked |= HAL_INT_FATAL; in ar5212GetPendingInterrupts() 107 *masked |= mask2; in ar5212GetPendingInterrupts() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VVPInstrPatternsVec.td | 35 // Masked (imm stride). 41 // Masked. 69 // Masked (imm stride). 80 // Masked. 105 // Masked. 122 // Masked. 143 // Masked with select. 154 // Masked. 164 // Masked with select. 175 // Masked. [all …]
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_interrupts.c | 65 * the interrupt line, and returns both the masked and unmasked mapped ISR 69 * Returns: A hardware-abstracted bitmap of all non-masked-out 83 HAL_INT *masked, in ar9300_get_pending_interrupts() argument 98 *masked = 0; in ar9300_get_pending_interrupts() 104 *masked = HAL_INT_RXHP; in ar9300_get_pending_interrupts() 109 *masked = HAL_INT_RXLP; in ar9300_get_pending_interrupts() 113 *masked = HAL_INT_TX; in ar9300_get_pending_interrupts() 212 *masked = 0; in ar9300_get_pending_interrupts() 217 *masked = isr & HAL_INT_COMMON; in ar9300_get_pending_interrupts() 227 *masked |= HAL_INT_RXLP; in ar9300_get_pending_interrupts() [all …]
|
/freebsd/sys/dev/ath/ath_hal/ar5210/ |
H A D | ar5210_interrupts.c | 42 ar5210GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) in ar5210GetPendingInterrupts() argument 51 *masked = 0; in ar5210GetPendingInterrupts() 58 * also masked with the abstracted IMR to insure no in ar5210GetPendingInterrupts() 62 *masked = (isr & (HAL_INT_COMMON - HAL_INT_BNR)) & ahp->ah_maskReg; in ar5210GetPendingInterrupts() 65 *masked |= HAL_INT_FATAL; in ar5210GetPendingInterrupts() 67 *masked |= HAL_INT_RX; in ar5210GetPendingInterrupts() 69 *masked |= HAL_INT_TX; in ar5210GetPendingInterrupts() 74 if (*masked & HAL_INT_FATAL) { in ar5210GetPendingInterrupts()
|
/freebsd/lib/libpmc/pmu-events/arch/x86/goldmont/ |
H A D | other.json | 22 "BriefDescription": "Cycles hardware interrupts are masked", 26 "EventName": "HW_INTERRUPTS.MASKED", 27 …"PublicDescription": "Counts the number of core cycles during which interrupts are masked (disable… 32 "BriefDescription": "Cycles pending interrupts are masked", 37 …core cycles during which there are pending interrupts, but interrupts are masked (EFLAGS.IF = 0).",
|
/freebsd/lib/libpmc/pmu-events/arch/x86/goldmontplus/ |
H A D | other.json | 26 "BriefDescription": "Cycles hardware interrupts are masked", 30 "EventName": "HW_INTERRUPTS.MASKED", 33 …"PublicDescription": "Counts the number of core cycles during which interrupts are masked (disable… 38 "BriefDescription": "Cycles pending interrupts are masked", 45 …core cycles during which there are pending interrupts, but interrupts are masked (EFLAGS.IF = 0).",
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | MVEGatherScatterLowering.cpp | 52 cl::desc("Enable the generation of masked gathers and scatters")); 180 LLVM_DEBUG(dbgs() << "masked gathers/scatters: instruction does not have " in isLegalTypeAndAlignment() 259 LLVM_DEBUG(dbgs() << "masked gathers/scatters: no getelementpointer " in decomposeGEP() 263 LLVM_DEBUG(dbgs() << "masked gathers/scatters: getelementpointer found." in decomposeGEP() 272 LLVM_DEBUG(dbgs() << "masked gathers/scatters: getelementptr with too many" in decomposeGEP() 306 LLVM_DEBUG(dbgs() << "masked gathers/scatters: found correct offsets\n"); in decomposeGEP() 316 LLVM_DEBUG(dbgs() << "masked gathers/scatters: looking through " in lookThroughBitcast() 333 LLVM_DEBUG(dbgs() << "masked gathers/scatters: incorrect scale. Can't " in computeScale() 403 LLVM_DEBUG(dbgs() << "masked gathers: checking transform preconditions\n" in lowerGather() 406 // @llvm.masked.gather.*(Ptrs, alignment, Mask, Src0) in lowerGather() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/delegate/ |
H A D | zfs_allow_007_pos.ksh | 36 # Verify the permissions set will be masked on its descendent 48 # its descendent since it is masked 53 log_assert "Verify permission set can be masked on descendent dataset." 88 # to its descendent datasets since it is masked 104 log_pass "Verify permission set can be masked on descendent dataset pass."
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/tmpfile/ |
H A D | tmpfile_stat_mode.c | 55 mode_t masked = 0777 & ~mask; in test_stat_mode() local 83 if (mode != masked) in test_stat_mode() 84 errx(5, "fstat(2) %o != %o\n", mode, masked); in test_stat_mode() 95 if (mode != masked) in test_stat_mode() 96 errx(8, "fstat(2) %o != %o\n", mode, masked); in test_stat_mode()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | CaymanInstructions.td | 114 let DST_SEL_Y = 7; // Masked 115 let DST_SEL_Z = 7; // Masked 116 let DST_SEL_W = 7; // Masked 124 let DST_SEL_Y = 7; // Masked 125 let DST_SEL_Z = 7; // Masked 126 let DST_SEL_W = 7; // Masked 136 let DST_SEL_Y = 7; // Masked 137 let DST_SEL_Z = 7; // Masked 138 let DST_SEL_W = 7; // Masked
|
H A D | R600ExpandSpecialInstrs.cpp | 176 // TO_Y (write masked) = DP4 T1_Y, T2_Y in runOnMachineFunction() 177 // TO_Z (write masked) = DP4 T1_Z, T2_Z in runOnMachineFunction() 178 // TO_W (write masked) = DP4 T1_W, T2_W in runOnMachineFunction() 184 // T0_Y (write masked) = MULLO_INT T1_X, T2_X in runOnMachineFunction() 185 // T0_Z (write masked) = MULLO_INT T1_X, T2_X in runOnMachineFunction() 186 // T0_W (write masked) = MULLO_INT T1_X, T2_X in runOnMachineFunction()
|
/freebsd/tests/sys/cddl/zfs/tests/delegate/ |
H A D | zfs_allow_007_pos.ksh | 36 # Verify the permissions set will be masked on its descendent 48 # its descendent since it is masked 62 log_assert "Verify permission set can be masked on descendent dataset." 100 # to its descendent datasets since it is masked 116 log_pass "Verify permission set can be masked on descendetn dataset pass."
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVISelDAGToDAG.h | 209 uint16_t Masked : 1; member 219 uint16_t Masked : 1; member 229 uint16_t Masked : 1; member 238 uint16_t Masked : 1; member 247 uint16_t Masked : 1; member 256 uint16_t Masked :1; member 264 uint16_t Masked : 1; member
|
/freebsd/lib/libpmc/pmu-events/arch/x86/elkhartlake/ |
H A D | other.json | 102 …"BriefDescription": "Counts the number of core cycles during which interrupts are masked (disabled… 106 "EventName": "HW_INTERRUPTS.MASKED", 109 …"PublicDescription": "Counts the number of core cycles during which interrupts are masked (disable… 114 … of core cycles during which there are pending interrupts while interrupts are masked (disabled).", 121 …re cycles during which there are pending interrupts while interrupts are masked (disabled). Increm…
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | ScalarizeMaskedMemIntrin.cpp | 1 //===- ScalarizeMaskedMemIntrin.cpp - Scalarize unsupported masked mem ----===// 10 // This pass replaces masked memory intrinsics - when unsupported by the target 42 #define DEBUG_TYPE "scalarize-masked-mem-intrin" 58 return "Scalarize Masked Memory Intrinsics"; in getPassName() 79 "Scalarize unsupported masked memory intrinsics", false, 84 "Scalarize unsupported masked memory intrinsics", false, in INITIALIZE_PASS_DEPENDENCY() 111 // Translate a masked load intrinsic like 112 // <16 x i32 > @llvm.masked.load( <16 x i32>* %addr, i32 align, 255 // Translate a masked store intrinsic, like 256 // void @llvm.masked.store(<16 x i32> %src, <16 x i32>* %addr, i32 align, [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrFMA3Info.h | 72 /// Returns true iff the group of FMA opcodes holds k-merge-masked opcodes. 77 /// Returns true iff the group of FMA opcodes holds k-zero-masked opcodes. 80 /// Returns true iff the group of FMA opcodes holds any of k-masked opcodes.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
H A D | ScalarizeMaskedMemIntrin.h | 1 //===- ScalarizeMaskedMemIntrin.h - Scalarize unsupported masked mem ----===// 10 // This pass replaces masked memory intrinsics - when unsupported by the target
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/ |
H A D | LoopIdiomVectorize.h | 16 enum class LoopIdiomVectorizeStyle { Masked, Predicated }; enumerator 19 LoopIdiomVectorizeStyle VectorizeStyle = LoopIdiomVectorizeStyle::Masked;
|
/freebsd/sys/contrib/alpine-hal/ |
H A D | al_hal_pcie_interrupts.h | 55 * The reset mask state of all interrupts is: Masked 74 * All interrupts not listed below should be masked 136 * All interrupts not listed below should be masked 187 * All interrupts not listed below should be masked. 221 * The reset mask state of all interrupts is: Masked
|
/freebsd/contrib/ofed/libcxgb4/ |
H A D | verbs.c | 46 #define MASKED(x) (void *)((unsigned long)(x) & c4iw_page_mask) macro 234 munmap(MASKED(chp->cq.ugts), c4iw_page_size); in c4iw_create_cq() 273 munmap(MASKED(chp->cq.ugts), c4iw_page_size); in c4iw_destroy_cq() 401 munmap(MASKED(qhp->wq.rq.udb), c4iw_page_size); in create_qp_v0() 405 munmap(MASKED(qhp->wq.sq.udb), c4iw_page_size); in create_qp_v0() 556 munmap(MASKED(qhp->wq.rq.udb), c4iw_page_size); in create_qp() 560 munmap(MASKED(qhp->wq.sq.udb), c4iw_page_size); in create_qp() 631 munmap(MASKED(qhp->wq.sq.udb), c4iw_page_size); in c4iw_destroy_qp() 632 munmap(MASKED(qhp->wq.rq.udb), c4iw_page_size); in c4iw_destroy_qp()
|
/freebsd/share/man/man4/ |
H A D | ciss.4 | 73 marked as being masked. 74 Masked devices can be exposed by setting the
|