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 | 3902 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) { in collectBitParts() local 3903 if (A->Provenance[BitIdx] != BitPart::Unset && in collectBitParts() 3904 B->Provenance[BitIdx] != BitPart::Unset && in collectBitParts() 3905 A->Provenance[BitIdx] != B->Provenance[BitIdx]) in collectBitParts() 3908 if (A->Provenance[BitIdx] == BitPart::Unset) in collectBitParts() 3909 Result->Provenance[BitIdx] = B->Provenance[BitIdx]; in collectBitParts() 3911 Result->Provenance[BitIdx] = A->Provenance[BitIdx]; in collectBitParts() 3965 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) in collectBitParts() local 3967 if (AndMask[BitIdx] == 0) in collectBitParts() 3968 Result->Provenance[BitIdx] = BitPart::Unset; in collectBitParts() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | GlobalsStream.cpp | 147 uint8_t BitIdx = I % 32; in readGSIHashBuckets() local 148 bool IsSet = HashBitmap[WordIdx] & (1U << BitIdx); in readGSIHashBuckets()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelDAGToDAGHVX.cpp | 1941 for (unsigned BitIdx = 0; BitIdx != Width; ++BitIdx) { in getPerfectCompletions() local 1948 BitValues[i] = (M & (1u << BitIdx)) != 0; in getPerfectCompletions() 1950 Worklist[BitIdx] = possibilities(BitValues, Width); in getPerfectCompletions()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 5566 int BitIdx = N.getConstantOperandVal(2); in getTargetShuffleMask() local 5567 DecodeEXTRQIMask(NumElems, MaskEltSize, BitLen, BitIdx, Mask); in getTargetShuffleMask() 5577 int BitIdx = N.getConstantOperandVal(3); in getTargetShuffleMask() local 5578 DecodeINSERTQIMask(NumElems, MaskEltSize, BitLen, BitIdx, Mask); in getTargetShuffleMask() 10149 int BitIdx = ExpectedIdx < Size ? ExpectedIdx : (ExpectedIdx - Size); in isTargetShuffleEquivalent() local 10151 ZeroMask.setBit(BitIdx); in isTargetShuffleEquivalent() 12233 uint64_t &BitIdx, const APInt &Zeroable) { in matchShuffleAsEXTRQ() argument 12279 BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f; in matchShuffleAsEXTRQ() 12289 uint64_t &BitIdx) { in matchShuffleAsINSERTQ() argument 12342 BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f; in matchShuffleAsINSERTQ() [all …]
|