Searched refs:MaskWords (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | SmallBitVector.h | 646 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 648 applyMask<true, false>(Mask, MaskWords); 650 getPointer()->setBitsInMask(Mask, MaskWords); 655 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 657 applyMask<false, false>(Mask, MaskWords); 659 getPointer()->clearBitsInMask(Mask, MaskWords); 664 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 666 applyMask<true, true>(Mask, MaskWords); 668 getPointer()->setBitsNotInMask(Mask, MaskWords); 673 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { [all …]
|
H A D | BitVector.h | 707 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 708 applyMask<true, false>(Mask, MaskWords); 713 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 714 applyMask<false, false>(Mask, MaskWords); 719 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 720 applyMask<true, true>(Mask, MaskWords); 725 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 726 applyMask<false, true>(Mask, MaskWords); 803 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument 805 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineLICM.cpp | 461 const unsigned MaskWords = (NumRegs + 31) / 32; in applyBitsNotInRegMaskToRegUnitsMask() local 462 for (unsigned K = 0; K < MaskWords; ++K) { in applyBitsNotInRegMaskToRegUnitsMask()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | ELFYAML.h | 451 std::optional<llvm::yaml::Hex32> MaskWords; member
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | ELFEmitter.cpp | 1864 if (Section.Header->MaskWords) in writeSectionContent() 1865 CBA.write<uint32_t>(*Section.Header->MaskWords, ELFT::Endianness); in writeSectionContent()
|
H A D | ELFYAML.cpp | 1880 IO.mapOptional("MaskWords", E.MaskWords); in mapping()
|