Searched refs:extractBitsAsZExtValue (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVBaseInfo.cpp | 184 if (Imm.extractBitsAsZExtValue(21, 0) != 0) in getLoadFPImm() 187 bool Sign = Imm.extractBitsAsZExtValue(1, 31); in getLoadFPImm() 188 uint8_t Mantissa = Imm.extractBitsAsZExtValue(2, 21); in getLoadFPImm() 189 uint8_t Exp = Imm.extractBitsAsZExtValue(8, 23); in getLoadFPImm()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/ |
H A D | AMDGPUDisassembler.h | 57 uint64_t extractBitsAsZExtValue(unsigned NumBits, in extractBitsAsZExtValue() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUMCCodeEmitter.cpp | 393 CB.push_back((uint8_t)Encoding.extractBitsAsZExtValue(8, 8 * i)); in encodeInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.cpp | 1855 Buf[I] = Val.extractBitsAsZExtValue(8, I * 8); in bufferLEByte() 1860 Val.extractBitsAsZExtValue(LastByteBits, LastBytePosition); in bufferLEByte()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 3069 unsigned Sel = C2->extractBitsAsZExtValue(8, I); in ConstantFoldAMDGCNPermIntrinsic() 3081 B = Src->extractBitsAsZExtValue(8, (Sel & 3) * 8); in ConstantFoldAMDGCNPermIntrinsic() 3083 B = Src->extractBitsAsZExtValue(1, (Sel & 1) ? 31 : 15) * 0xff; in ConstantFoldAMDGCNPermIntrinsic()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | KnownBits.cpp | 280 return MaxValue.extractBitsAsZExtValue(Log2_32(BitWidth), 0); in getMaxShiftAmount()
|
H A D | APInt.cpp | 489 uint64_t APInt::extractBitsAsZExtValue(unsigned numBits, in extractBitsAsZExtValue() function in APInt
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | APValue.cpp | 476 ID.AddInteger((uint32_t)V.extractBitsAsZExtValue(std::min(32u, N - I), I)); in profileIntValue()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APInt.h | 1441 uint64_t extractBitsAsZExtValue(unsigned numBits, unsigned bitPosition) const;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 9131 switch (NonZeroMask.extractBitsAsZExtValue(2, i * 2)) { in LowerBUILD_VECTOR() 9148 bool Reverse1 = NonZeroMask.extractBitsAsZExtValue(2, 0) == 2; in LowerBUILD_VECTOR() 9149 bool Reverse2 = NonZeroMask.extractBitsAsZExtValue(2, 2) == 2; in LowerBUILD_VECTOR() 37419 unsigned Shift = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 0); in computeKnownBitsForTargetNode() 37420 unsigned Length = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 8); in computeKnownBitsForTargetNode() 43096 unsigned Shift = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 0); in SimplifyDemandedBitsForTargetNode() 43097 unsigned Length = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 8); in SimplifyDemandedBitsForTargetNode()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVISelLowering.cpp | 3357 return ValInt.extractBitsAsZExtValue(BitWidth, 0); in getExactInteger()
|