Home
last modified time | relevance | path

Searched refs:Bitwidth (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp231 Bitwidth = 128; in doubleLanes()
236 Bitwidth = 64; in halveLanes()
904 Bitwidth /= 2; in applyModifier()
910 Bitwidth *= 2; in applyModifier()
915 Bitwidth /= 2; in applyModifier()
919 Bitwidth *= 2; in applyModifier()
923 Bitwidth *= 2; in applyModifier()
960 Bitwidth *= 2; in applyModifier()
975 Bitwidth *= 2; in applyModifier()
983 Bitwidth /= 2; in applyModifier()
[all …]
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp287 static unsigned CarmichaelShift(unsigned Bitwidth) { in CarmichaelShift() argument
288 if (Bitwidth < 3) in CarmichaelShift()
289 return Bitwidth - 1; in CarmichaelShift()
290 return Bitwidth - 2; in CarmichaelShift()
339 unsigned Bitwidth = LHS.getBitWidth(); in IncorporateWeight() local
349 if (Bitwidth > 3) { in IncorporateWeight()
351 APInt CM = APInt::getOneBitSet(Bitwidth, CarmichaelShift(Bitwidth)); in IncorporateWeight()
353 APInt Threshold = CM + Bitwidth; in IncorporateWeight()
362 unsigned CM = 1U << CarmichaelShift(Bitwidth); in IncorporateWeight()
363 unsigned Threshold = CM + Bitwidth; in IncorporateWeight()
[all …]
/freebsd-12.1/contrib/llvm/lib/IR/
H A DType.cpp57 bool Type::isIntegerTy(unsigned Bitwidth) const { in isIntegerTy()
58 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth; in isIntegerTy()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DType.h200 bool isIntegerTy(unsigned Bitwidth) const;
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExpr.cpp1545 unsigned Bitwidth = LTy->getScalarSizeInBits(); in getRangeForType() local
1551 assert(NumBits <= Bitwidth); in getRangeForType()
1552 End = llvm::APInt(Bitwidth, 1) << (NumBits - 1); in getRangeForType()
1555 assert(NumPositiveBits <= Bitwidth); in getRangeForType()
1556 End = llvm::APInt(Bitwidth, 1) << NumPositiveBits; in getRangeForType()
1557 Min = llvm::APInt(Bitwidth, 0); in getRangeForType()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp584 template <unsigned Bitwidth>
1534 template <unsigned Bitwidth>
1540 Inst.addOperand(MCOperand::createImm(Literal.getLoBits(Bitwidth).getZExtValue())); in addKImmFPOperands()
1546 FPLiteral.convert(*getFltSemantics(Bitwidth / 8), in addKImmFPOperands()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2029 unsigned Bitwidth = Op.getScalarValueSizeInBits(); in getUsefulBits() local
2031 UsefulBits = APInt(Bitwidth, 0); in getUsefulBits()