Home
last modified time | relevance | path

Searched full:maskwords (Results 1 – 25 of 30) sorted by relevance

12

/external/llvm-project/llvm/test/tools/obj2yaml/ELF/
Dgnu-hash-section.yaml54 # INVALID-NEXT: - Name: .gnu.hash.broken.maskwords
94 MaskWords: 0x0
99 ## Case 3: MaskWords field is broken: it says that the number of entries
101 - Name: .gnu.hash.broken.maskwords
106 MaskWords: 0x1
118 MaskWords: 0x0
/external/llvm/include/llvm/ADT/
DBitVector.h483 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
484 applyMask<true, false>(Mask, MaskWords);
489 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
490 applyMask<false, false>(Mask, MaskWords);
495 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
496 applyMask<true, true>(Mask, MaskWords);
501 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
502 applyMask<false, true>(Mask, MaskWords);
546 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
548 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]
DSmallBitVector.h514 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
516 applyMask<true, false>(Mask, MaskWords);
518 getPointer()->setBitsInMask(Mask, MaskWords);
523 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
525 applyMask<false, false>(Mask, MaskWords);
527 getPointer()->clearBitsInMask(Mask, MaskWords);
532 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
534 applyMask<true, true>(Mask, MaskWords);
536 getPointer()->setBitsNotInMask(Mask, MaskWords);
541 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DBitVector.h483 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
484 applyMask<true, false>(Mask, MaskWords);
489 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
490 applyMask<false, false>(Mask, MaskWords);
495 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
496 applyMask<true, true>(Mask, MaskWords);
501 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
502 applyMask<false, true>(Mask, MaskWords);
546 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
548 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/
Dgnuhash.test35 MaskWords: [[MASKWORDS=2]]
283 ## Case A: the 'maskwords' field is set so that the table goes past the end of the file.
284 …N: yaml2obj --docnum=1 -DBITS=64 -DMACHINE=EM_X86_64 -D MASKWORDS=4294967295 %s -o %t.err.maskwords
285 # RUN: llvm-readobj --gnu-hash-table %t.err.maskwords 2>&1 | \
286 # RUN: FileCheck %s -DFILE=%t.err.maskwords -DMASKWORDS=4294967295 -DNBUCKETS=3 --check-prefix=ERR
287 # RUN: llvm-readelf --gnu-hash-table %t.err.maskwords 2>&1 | \
288 # RUN: FileCheck %s -DFILE=%t.err.maskwords -DMASKWORDS=4294967295 -DNBUCKETS=3 --check-prefix=ERR
300 # ERR-NEXT: Num Mask Words: [[MASKWORDS]]
Dhash-symbols.test467 ## Case A: the 'maskwords' field is set so that the table goes past the end of the file.
468 # RUN: yaml2obj --docnum=8 -D MASKWORDS=4294967295 %s -o %t.err.maskwords
469 # RUN: llvm-readelf --hash-symbols %t.err.maskwords 2>&1 | \
470 # RUN: FileCheck %s -DFILE=%t.err.maskwords --check-prefix=ERR4
494 MaskWords: [[MASKWORDS=2]]
Dhash-histogram.test263 ## Case A: the 'maskwords' field is set so that the GNU hash table goes past the end of the file.
264 # RUN: yaml2obj --docnum=6 -D MASKWORDS=0x80000000 %s -o %t7
288 MaskWords: [[MASKWORDS=1]]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallBitVector.h631 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
633 applyMask<true, false>(Mask, MaskWords);
635 getPointer()->setBitsInMask(Mask, MaskWords);
640 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
642 applyMask<false, false>(Mask, MaskWords);
644 getPointer()->clearBitsInMask(Mask, MaskWords);
649 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
651 applyMask<true, true>(Mask, MaskWords);
653 getPointer()->setBitsNotInMask(Mask, MaskWords);
658 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
[all …]
DBitVector.h775 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
776 applyMask<true, false>(Mask, MaskWords);
781 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
782 applyMask<false, false>(Mask, MaskWords);
787 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
788 applyMask<true, true>(Mask, MaskWords);
793 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
794 applyMask<false, true>(Mask, MaskWords);
899 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
901 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]
/external/llvm-project/llvm/include/llvm/ADT/
DSmallBitVector.h631 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
633 applyMask<true, false>(Mask, MaskWords);
635 getPointer()->setBitsInMask(Mask, MaskWords);
640 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
642 applyMask<false, false>(Mask, MaskWords);
644 getPointer()->clearBitsInMask(Mask, MaskWords);
649 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
651 applyMask<true, true>(Mask, MaskWords);
653 getPointer()->setBitsNotInMask(Mask, MaskWords);
658 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
[all …]
DBitVector.h762 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
763 applyMask<true, false>(Mask, MaskWords);
768 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
769 applyMask<false, false>(Mask, MaskWords);
774 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
775 applyMask<true, true>(Mask, MaskWords);
780 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
781 applyMask<false, true>(Mask, MaskWords);
886 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
888 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]
/external/swiftshader/third_party/subzero/src/
DIceBitVector.h718 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
719 applyMask<true, false>(Mask, MaskWords);
724 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
725 applyMask<false, false>(Mask, MaskWords);
730 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
731 applyMask<true, true>(Mask, MaskWords);
736 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
737 applyMask<false, true>(Mask, MaskWords);
785 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
787 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]
/external/llvm/include/llvm/Object/
DELFTypes.h545 Elf_Word maskwords;
550 maskwords);
/external/llvm-project/llvm/test/tools/yaml2obj/ELF/
Dgnu-hash-section.yaml275 MaskWords: 0x3
/external/llvm-project/llvm/include/llvm/Object/
DELFTypes.h528 Elf_Word maskwords;
533 maskwords);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DELFTypes.h530 Elf_Word maskwords;
535 maskwords);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DELFEmitter.cpp1278 // Write the number of words in the Bloom filter. As above, the "MaskWords" in writeSectionContent()
1280 if (Section.Header->MaskWords) in writeSectionContent()
1281 support::endian::write<uint32_t>(OS, *Section.Header->MaskWords, in writeSectionContent()
DELFYAML.cpp1501 IO.mapOptional("MaskWords", E.MaskWords); in mapping()
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp1274 uint32_t MaskWords = Data.getU32(Cur); in dumpGnuHashSection() local
1280 if (!Cur || (Size < MaskWords * AddrSize + NBuckets * 4) || in dumpGnuHashSection()
1289 S->BloomFilter.emplace(MaskWords); in dumpGnuHashSection()
/external/elfutils/libdwfl/
Ddwfl_module_getdwarf.c734 Elf32_Word maskwords; in translate_offs() member
748 * header->maskwords)); in translate_offs()
/external/llvm-project/llvm/lib/ObjectYAML/
DELFEmitter.cpp1720 // Write the number of words in the Bloom filter. As above, the "MaskWords" in writeSectionContent()
1722 if (Section.Header->MaskWords) in writeSectionContent()
1723 CBA.write<uint32_t>(*Section.Header->MaskWords, ELFT::TargetEndianness); in writeSectionContent()
DELFYAML.cpp1560 IO.mapOptional("MaskWords", E.MaskWords); in mapping()
/external/llvm-project/lld/ELF/
DSyntheticSections.cpp2328 maskWords = 1; in finalizeContents()
2331 maskWords = NextPowerOf2(numBits / (config->wordsize * 8)); in finalizeContents()
2335 size += config->wordsize * maskWords; // Bloom filter in finalizeContents()
2349 write32(buf + 8, maskWords); in writeTo()
2355 buf += config->wordsize * maskWords; in writeTo()
2371 size_t i = (sym.hash / c) & (maskWords - 1); in writeBloomFilter()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DELFYAML.h298 Optional<llvm::yaml::Hex32> MaskWords; member
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h357 Optional<llvm::yaml::Hex32> MaskWords; member

12