Home
last modified time | relevance | path

Searched refs:extractBitsAsZExtValue (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVBaseInfo.cpp184 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 DAMDGPUDisassembler.h57 uint64_t extractBitsAsZExtValue(unsigned NumBits, in extractBitsAsZExtValue() function
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCCodeEmitter.cpp393 CB.push_back((uint8_t)Encoding.extractBitsAsZExtValue(8, 8 * i)); in encodeInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1855 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 DConstantFolding.cpp3069 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 DKnownBits.cpp280 return MaxValue.extractBitsAsZExtValue(Log2_32(BitWidth), 0); in getMaxShiftAmount()
H A DAPInt.cpp489 uint64_t APInt::extractBitsAsZExtValue(unsigned numBits, in extractBitsAsZExtValue() function in APInt
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp476 ID.AddInteger((uint32_t)V.extractBitsAsZExtValue(std::min(32u, N - I), I)); in profileIntValue()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1441 uint64_t extractBitsAsZExtValue(unsigned numBits, unsigned bitPosition) const;
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp9131 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 DRISCVISelLowering.cpp3357 return ValInt.extractBitsAsZExtValue(BitWidth, 0); in getExactInteger()