Home
last modified time | relevance | path

Searched refs:getHiBits (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp148 if (Imm.getHiBits(16).isZero()) { in materialize32BitImm()
157 .addImm(Imm.getHiBits(16).getLimitedValue()); in materialize32BitImm()
170 .addImm(Imm.getHiBits(16).getLimitedValue()); in materialize32BitImm()
607 if (!materialize32BitImm(GPRRegHigh, APImm.getHiBits(32).trunc(32), B)) in select()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h521 APInt getHiBits(unsigned numBits) const;
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp5242 if (Bits.getHiBits(64) != Bits.getLoBits(64)) in tryAdvSIMDModImm8()
5266 if (Bits.getHiBits(64) != Bits.getLoBits(64)) in tryAdvSIMDModImm16()
5296 if (Bits.getHiBits(64) != Bits.getLoBits(64)) in tryAdvSIMDModImm32()
5331 if (Bits.getHiBits(64) != Bits.getLoBits(64)) in tryAdvSIMDModImm64()
5354 if (Bits.getHiBits(64) != Bits.getLoBits(64)) in tryAdvSIMDModImm321s()
5384 if (Bits.getHiBits(64) != Bits.getLoBits(64)) in tryAdvSIMDModImmFP()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp1507 Out << format_hex_no_prefix(API.getHiBits(16).getZExtValue(), 4, in WriteAPFloatInternal()
1515 Out << format_hex_no_prefix(API.getHiBits(64).getZExtValue(), 16, in WriteAPFloatInternal()
1521 Out << format_hex_no_prefix(API.getHiBits(64).getZExtValue(), 16, in WriteAPFloatInternal()
H A DConstantRange.cpp1922 unsigned LCPPopCount = Lower.getHiBits(LCPLength).popcount(); in getUnsignedPopCountRange()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp572 .getHiBits(32) in getMachineOpValue()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFoldOperands.cpp1094 Imm = Imm.getHiBits(32); in foldOperand()
H A DSIInstrInfo.cpp2201 APInt Hi(32, Imm.getHiBits(32).getZExtValue()); in expandPostRAPseudo()
2265 APInt Hi(32, Imm.getHiBits(32).getZExtValue()); in expandPostRAPseudo()
H A DAMDGPUInstructionSelector.cpp273 return MachineOperand::CreateImm(Imm.getHiBits(32).getSExtValue()); in getSubOperand64()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp608 APInt APInt::getHiBits(unsigned numBits) const { in getHiBits() function in APInt
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3221 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue(); in parseHexOcta()
H A DMasmParser.cpp3805 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue(); in parseHexOcta()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp13415 if (Bits.getHiBits(64) == Bits.getLoBits(64)) { in tryAdvSIMDModImm64()
13442 if (Bits.getHiBits(64) == Bits.getLoBits(64)) { in tryAdvSIMDModImm32()
13495 if (Bits.getHiBits(64) == Bits.getLoBits(64)) { in tryAdvSIMDModImm16()
13534 if (Bits.getHiBits(64) == Bits.getLoBits(64)) { in tryAdvSIMDModImm321s()
13565 if (Bits.getHiBits(64) == Bits.getLoBits(64)) { in tryAdvSIMDModImm8()
13586 if (Bits.getHiBits(64) == Bits.getLoBits(64)) { in tryAdvSIMDModImmFP()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp6873 if (!Known.Zero.getHiBits(NS).isZero()) in getRangeRef()
6875 if (!Known.One.getHiBits(NS).isZero()) in getRangeRef()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3985 Known.Zero = Known.Zero.getHiBits(Known.getBitWidth() - Index * EltBitWidth); in computeKnownBits()
3986 Known.One = Known.One.getHiBits(Known.getBitWidth() - Index * EltBitWidth); in computeKnownBits()
H A DTargetLowering.cpp2406 APInt MaskHi = DemandedBits.getHiBits(HalfBitWidth).trunc(HalfBitWidth); in SimplifyDemandedBits()