Searched refs:extractBitsAsZExtValue (Results 1 – 13 of 13) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVBaseInfo.cpp | 211 if (Imm.extractBitsAsZExtValue(21, 0) != 0) in getLoadFPImm() 214 bool Sign = Imm.extractBitsAsZExtValue(1, 31); in getLoadFPImm() 215 uint8_t Mantissa = Imm.extractBitsAsZExtValue(2, 21); in getLoadFPImm() 216 uint8_t Exp = Imm.extractBitsAsZExtValue(8, 23); in getLoadFPImm()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/ |
| H A D | AMDGPUDisassembler.h | 46 uint64_t extractBitsAsZExtValue(unsigned NumBits, in extractBitsAsZExtValue() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/ |
| H A D | M68kMCCodeEmitter.cpp | 256 CB, static_cast<uint16_t>(EncodedInst.extractBitsAsZExtValue(16, i)), in encodeInstruction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 1601 Buf[I] = Val.extractBitsAsZExtValue(8, I * 8); in bufferLEByte() 1606 Val.extractBitsAsZExtValue(LastByteBits, LastBytePosition); in bufferLEByte() 1675 Buffer->addByte(Val.extractBitsAsZExtValue(8, I * 8)); in bufferAggregateConstant()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
| H A D | AMDGPUMCCodeEmitter.cpp | 405 CB.push_back((uint8_t)Encoding.extractBitsAsZExtValue(8, 8 * i)); in encodeInstruction()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | InterpBuiltin.cpp | 1283 uint64_t Shift = Index.extractBitsAsZExtValue(8, 0); in interp__builtin_ia32_bextr() 1284 uint64_t Length = Index.extractBitsAsZExtValue(8, 8); in interp__builtin_ia32_bextr() 1315 uint64_t Index = Idx.extractBitsAsZExtValue(8, 0); in interp__builtin_ia32_bzhi()
|
| /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 | 520 uint64_t APInt::extractBitsAsZExtValue(unsigned numBits, in extractBitsAsZExtValue() function in APInt
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | APValue.cpp | 486 ID.AddInteger((uint32_t)V.extractBitsAsZExtValue(std::min(32u, N - I), I)); in profileIntValue()
|
| H A D | ExprConstant.cpp | 13896 uint64_t CarryOut = ExResult.extractBitsAsZExtValue(1, BitWidth); in VisitBuiltinCallExpr() 13914 uint64_t Shift = Idx.extractBitsAsZExtValue(8, 0); in VisitBuiltinCallExpr() 13915 uint64_t Length = Idx.extractBitsAsZExtValue(8, 8); in VisitBuiltinCallExpr() 13935 unsigned Index = Idx.extractBitsAsZExtValue(8, 0); in VisitBuiltinCallExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ConstantFolding.cpp | 3492 unsigned Sel = C2->extractBitsAsZExtValue(8, I); in ConstantFoldAMDGCNPermIntrinsic() 3504 B = Src->extractBitsAsZExtValue(8, (Sel & 3) * 8); in ConstantFoldAMDGCNPermIntrinsic() 3506 B = Src->extractBitsAsZExtValue(1, (Sel & 1) ? 31 : 15) * 0xff; in ConstantFoldAMDGCNPermIntrinsic()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 1480 LLVM_ABI uint64_t extractBitsAsZExtValue(unsigned numBits,
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 9532 switch (NonZeroMask.extractBitsAsZExtValue(2, i * 2)) { in LowerBUILD_VECTOR() 9549 bool Reverse1 = NonZeroMask.extractBitsAsZExtValue(2, 0) == 2; in LowerBUILD_VECTOR() 9550 bool Reverse2 = NonZeroMask.extractBitsAsZExtValue(2, 2) == 2; in LowerBUILD_VECTOR() 38829 unsigned Shift = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 0); in computeKnownBitsForTargetNode() 38830 unsigned Length = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 8); in computeKnownBitsForTargetNode() 44884 unsigned Shift = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 0); in SimplifyDemandedBitsForTargetNode() 44885 unsigned Length = Cst1->getAPIntValue().extractBitsAsZExtValue(8, 8); in SimplifyDemandedBitsForTargetNode()
|