Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVBaseInfo.cpp272 if (Imm.extractBitsAsZExtValue(21, 0) != 0) in getLoadFPImm()
275 bool Sign = Imm.extractBitsAsZExtValue(1, 31); in getLoadFPImm()
276 uint8_t Mantissa = Imm.extractBitsAsZExtValue(2, 21); in getLoadFPImm()
277 uint8_t Exp = Imm.extractBitsAsZExtValue(8, 23); in getLoadFPImm()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.h56 uint64_t extractBitsAsZExtValue(unsigned NumBits, in extractBitsAsZExtValue() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCCodeEmitter.cpp355 CB.push_back((uint8_t)Encoding.extractBitsAsZExtValue(8, 8 * i)); in encodeInstruction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp181 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-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp2994 unsigned Sel = C2->extractBitsAsZExtValue(8, I); in ConstantFoldAMDGCNPermIntrinsic()
3006 B = Src->extractBitsAsZExtValue(8, (Sel & 3) * 8); in ConstantFoldAMDGCNPermIntrinsic()
3008 B = Src->extractBitsAsZExtValue(1, (Sel & 1) ? 31 : 15) * 0xff; in ConstantFoldAMDGCNPermIntrinsic()
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1426 uint64_t extractBitsAsZExtValue(unsigned numBits, unsigned bitPosition) const;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1840 Buf[I] = Val.extractBitsAsZExtValue(8, I * 8); in bufferLEByte()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp8989 switch (NonZeroMask.extractBitsAsZExtValue(2, i * 2)) { in LowerBUILD_VECTOR()
9006 bool Reverse1 = NonZeroMask.extractBitsAsZExtValue(2, 0) == 2; in LowerBUILD_VECTOR()
9007 bool Reverse2 = NonZeroMask.extractBitsAsZExtValue(2, 2) == 2; in LowerBUILD_VECTOR()
36720 unsigned Shift = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 0); in computeKnownBitsForTargetNode()
36721 unsigned Length = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 8); in computeKnownBitsForTargetNode()
42151 unsigned Shift = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 0); in SimplifyDemandedBitsForTargetNode()
42152 unsigned Length = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 8); in SimplifyDemandedBitsForTargetNode()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp3183 return ValInt.extractBitsAsZExtValue(BitWidth, 0); in getExactInteger()