Searched refs:MaskWords (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | SmallBitVector.h | 648 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 650 applyMask<true, false>(Mask, MaskWords); 652 getPointer()->setBitsInMask(Mask, MaskWords); 657 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 659 applyMask<false, false>(Mask, MaskWords); 661 getPointer()->clearBitsInMask(Mask, MaskWords); 666 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 668 applyMask<true, true>(Mask, MaskWords); 670 getPointer()->setBitsNotInMask(Mask, MaskWords); 675 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); 801 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument 803 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineLICM.cpp | 488 const unsigned MaskWords = (NumRegs + 31) / 32; in applyBitsNotInRegMaskToRegUnitsMask() local 489 for (unsigned K = 0; K < MaskWords; ++K) { in applyBitsNotInRegMaskToRegUnitsMask()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | ELFYAML.h | 466 std::optional<llvm::yaml::Hex32> MaskWords; member
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | ELFEmitter.cpp | 1891 if (Section.Header->MaskWords) in writeSectionContent() 1892 CBA.write<uint32_t>(*Section.Header->MaskWords, ELFT::Endianness); in writeSectionContent()
|
| H A D | ELFYAML.cpp | 1915 IO.mapOptional("MaskWords", E.MaskWords); in mapping()
|