Searched refs:Exponent (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DNativeFormatting.h17 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent }; member in class:llvm::FloatStyle
H A DFormatProviders.h311 S = FloatStyle::Exponent;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DNativeFormatting.cpp175 if (Style == FloatStyle::Exponent)
186 if (Style == FloatStyle::Exponent || Style == FloatStyle::ExponentUpper) {
254 case FloatStyle::Exponent:
H A Draw_ostream.cpp211 llvm::write_double(*this, N, FloatStyle::Exponent);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp609 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2()); local
610 return Builder.CreateShl(ExtendedStride, Exponent);
614 ConstantInt *Exponent = local
616 return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp788 const char *Exponent = s; local
800 TokLoc, Exponent - ThisTokBegin, SM, LangOpts),
900 const char *Exponent = s;
908 TokLoc, Exponent - ThisTokBegin, SM, LangOpts),
1093 uint64_t Exponent = 0;
1108 Exponent = ExpInt.getZExtValue();
1113 if (NegativeExponent) BaseShift -= Exponent;
1114 else BaseShift += Exponent;
1120 // + ceil(Exponent * log2(10)) Exponent
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp796 uint64_t Exponent = 0;
800 // below when the power of 2 exceeds our Exponent, and we want it to be
802 while (E != OpsAndLoops.end() && *I == *E && Exponent != MaxExponent) {
803 ++Exponent;
806 assert(Exponent > 0 && "Trying to calculate a zeroth exponent of operand?");
812 if (Exponent & 1)
814 for (uint64_t BinExp = 2; BinExp <= Exponent; BinExp <<= 1) {
817 if (Exponent & BinExp)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp4649 auto Exponent = MIRBuilder.buildSub(SrcTy, ExponentBits, Bias); local
4650 auto SubExponent = MIRBuilder.buildSub(SrcTy, Exponent, ExponentLoBit);
4651 auto ExponentSub = MIRBuilder.buildSub(SrcTy, ExponentLoBit, Exponent);
4658 S1, Exponent, ExponentLoBit);
4668 S1, Exponent, ZeroSrcTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp726 Error parseAlignmentValue(uint64_t Exponent, MaybeAlign &Alignment);
1538 Error BitcodeReader::parseAlignmentValue(uint64_t Exponent, argument
1542 if (Exponent > Value::MaxAlignmentExponent + 1)
1544 Alignment = decodeMaybeAlign(Exponent);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp6296 SDValue Exponent = DAG.getNode(ISD::SUB, dl, IntVT, ExponentBits, Bias);
6310 dl, Exponent, ExponentLoBit,
6313 DAG.getNode(ISD::SUB, dl, IntVT, Exponent, ExponentLoBit),
6317 DAG.getNode(ISD::SUB, dl, IntVT, ExponentLoBit, Exponent),
6324 Result = DAG.getSelectCC(dl, Exponent, DAG.getConstant(0, dl, IntVT),
H A DLegalizeDAG.cpp4124 SDValue Exponent = DAG.getNode(ISD::SINT_TO_FP, SDLoc(Node),
4129 Exponent));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp3411 if (ConstantInt *Exponent = dyn_cast<ConstantInt>(I->getOperand(1))) {
3413 if (Exponent->getBitWidth() <= 64 && Exponent->getSExtValue() % 2u == 0)

Completed in 220 milliseconds