Searched refs:BitIdx (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerValueBitMap.h | 36 uintptr_t BitIdx = Idx % kBitsInWord; in AddValue() local 38 uintptr_t New = Old | (1ULL << BitIdx); in AddValue() 51 uintptr_t BitIdx = Idx % kBitsInWord; in Get() local 52 return Map[WordIdx] & (1ULL << BitIdx); in Get()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | Local.cpp | 3804 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) { in collectBitParts() local 3805 if (A->Provenance[BitIdx] != BitPart::Unset && in collectBitParts() 3806 B->Provenance[BitIdx] != BitPart::Unset && in collectBitParts() 3807 A->Provenance[BitIdx] != B->Provenance[BitIdx]) in collectBitParts() 3810 if (A->Provenance[BitIdx] == BitPart::Unset) in collectBitParts() 3811 Result->Provenance[BitIdx] = B->Provenance[BitIdx]; in collectBitParts() 3813 Result->Provenance[BitIdx] = A->Provenance[BitIdx]; in collectBitParts() 3867 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) in collectBitParts() local 3869 if (AndMask[BitIdx] == 0) in collectBitParts() 3870 Result->Provenance[BitIdx] = BitPart::Unset; in collectBitParts() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | GlobalsStream.cpp | 148 uint8_t BitIdx = I % 32; in readGSIHashBuckets() local 149 bool IsSet = HashBitmap[WordIdx] & (1U << BitIdx); in readGSIHashBuckets()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonISelDAGToDAGHVX.cpp | 1947 for (unsigned BitIdx = 0; BitIdx != Width; ++BitIdx) { in getPerfectCompletions() 1954 BitValues[i] = (M & (1u << BitIdx)) != 0; in getPerfectCompletions() 1956 Worklist[BitIdx] = possibilities(BitValues, Width); in getPerfectCompletions() 1948 for (unsigned BitIdx = 0; BitIdx != Width; ++BitIdx) { getPerfectCompletions() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 5271 int BitIdx = N.getConstantOperandVal(2); in getTargetShuffleMask() local 5272 DecodeEXTRQIMask(NumElems, MaskEltSize, BitLen, BitIdx, Mask); in getTargetShuffleMask() 5282 int BitIdx = N.getConstantOperandVal(3); in getTargetShuffleMask() local 5283 DecodeINSERTQIMask(NumElems, MaskEltSize, BitLen, BitIdx, Mask); in getTargetShuffleMask() 9693 int BitIdx = ExpectedIdx < Size ? ExpectedIdx : (ExpectedIdx - Size); in isTargetShuffleEquivalent() local 9695 ZeroMask.setBit(BitIdx); in isTargetShuffleEquivalent() 11743 uint64_t &BitIdx, const APInt &Zeroable) { in matchShuffleAsEXTRQ() argument 11789 BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f; in matchShuffleAsEXTRQ() 11799 uint64_t &BitIdx) { in matchShuffleAsINSERTQ() argument 11852 BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f; in matchShuffleAsINSERTQ() [all …]
|