Home
last modified time | relevance | path

Searched refs:getScale (Results 1 – 23 of 23) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp49 VScaleVal LMULType::getScale(unsigned ElementBitwidth) const { in getScale() function in clang::RISCV::LMULType
596 Scale = LMUL.getScale(ElementBitwidth); in applyModifier()
622 Scale = LMUL.getScale(ElementBitwidth); in applyModifier()
627 Scale = LMUL.getScale(ElementBitwidth); in applyModifier()
632 Scale = LMUL.getScale(ElementBitwidth); in applyModifier()
636 Scale = LMUL.getScale(ElementBitwidth); in applyModifier()
739 Scale = LMUL.getScale(ElementBitwidth); in applyModifier()
753 Scale = LMUL.getScale(ElementBitwidth); in applyLog2EEW()
764 Scale = LMUL.getScale(ElementBitwidth); in applyFixedSEW()
785 Scale = LMUL.getScale(ElementBitwidth); in applyFixedLog2LMUL()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DFixedPointBuilder.h39 unsigned SrcScale = SrcSema.getScale(); in Convert()
40 unsigned DstScale = DstSema.getScale(); in Convert()
121 C.getWidth() + (unsigned)(BothPadded && C.isSaturated()), C.getScale(), in getCommonBinopSemantic()
185 ConstantFP::get(OpTy, std::pow(2, -(int)SrcSema.getScale()))); in CreateFixedToFloating()
200 ConstantFP::get(OpTy, std::pow(2, DstSema.getScale()))); in CreateFloatingToFixed()
304 {WideLHS, WideRHS, B.getInt32(CommonSema.getScale())}); in CreateMul()
332 {WideLHS, WideRHS, B.getInt32(CommonSema.getScale())}); in CreateDiv()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPFixedPoint.h63 unsigned getScale() const { assert(isValidLegacySema()); return -LsbWeight; } in getScale() function
170 inline unsigned getScale() const { return Sema.getScale(); }
/openbsd-src/gnu/llvm/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h222 std::optional<unsigned> getScale(unsigned ElementBitwidth) const;
299 VScaleVal getScale() const { return Scale; } in getScale() function
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DAbstractBasicWriter.h167 asImpl().writeUInt32(sema.getScale()); in writeFixedPointSemantics()
H A DExpr.h1577 unsigned getScale() const { return Scale; } in getScale() function
/openbsd-src/gnu/llvm/llvm/lib/Target/VE/
H A DVECustomDAG.cpp326 return N->getScale(); in getGatherScatterScale()
328 return N->getScale(); in getGatherScatterScale()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaRISCVVectorLookup.cpp119 QT = Context.getScalableVectorType(QT, *Type->getScale()); in RVVType2Qual()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h2740 return !cast<ConstantSDNode>(getScale())->isOne();
2754 const SDValue &getScale() const {
2824 return !cast<ConstantSDNode>(getScale())->isOne();
2835 const SDValue &getScale() const { return getOperand(5); }
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFixedPoint.cpp24 OS << "scale=" << getScale() << ", "; in print()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DScaledNumber.h533 int16_t getScale() const { return Scale; } in getScale() function
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp2130 return {MSC->getMask(), MSC->getIndex(), MSC->getScale()}; in SplitVecRes_Gather()
2133 return {VPSC->getMask(), VPSC->getIndex(), VPSC->getScale()}; in SplitVecRes_Gather()
3498 return {MSC->getMask(), MSC->getIndex(), MSC->getScale(), in SplitVecOp_Scatter()
3502 return {VPSC->getMask(), VPSC->getIndex(), VPSC->getScale(), in SplitVecOp_Scatter()
5251 SDValue Scale = N->getScale(); in WidenVecRes_MGATHER()
5286 SDValue Scale = N->getScale(); in WidenVecRes_VP_GATHER()
6350 SDValue Scale = MG->getScale(); in WidenVecOp_MGATHER()
6371 SDValue Scale = MSC->getScale(); in WidenVecOp_MSCATTER()
6411 SDValue Scale = VPSC->getScale(); in WidenVecOp_VP_SCATTER()
H A DSelectionDAG.cpp8811 assert(isa<ConstantSDNode>(N->getScale()) && in getGatherVP()
8812 cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() && in getGatherVP()
8855 assert(isa<ConstantSDNode>(N->getScale()) && in getScatterVP()
8856 cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() && in getScatterVP()
8997 assert(isa<ConstantSDNode>(N->getScale()) && in getMaskedGather()
8998 cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() && in getMaskedGather()
9043 assert(isa<ConstantSDNode>(N->getScale()) && in getMaskedScatter()
9044 cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() && in getMaskedScatter()
H A DDAGCombiner.cpp6517 GN0->getBasePtr(), GN0->getIndex(), GN0->getScale()}; in visitAND()
11025 SDValue Scale = MSC->getScale(); in visitVPSCATTER()
11056 SDValue Scale = MSC->getScale(); in visitMSCATTER()
11153 SDValue Scale = MGT->getScale(); in visitVPGATHER()
11181 SDValue Scale = MGT->getScale(); in visitMGATHER()
13639 GN0->getBasePtr(), GN0->getIndex(), GN0->getScale()}; in visitSIGN_EXTEND_INREG()
H A DLegalizeIntegerTypes.cpp820 N->getIndex(), N->getScale() }; in PromoteIntRes_MGATHER()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.h1823 const SDValue &getScale() const { return getOperand(5); } in getScale() function
H A DX86ISelDAGToDAG.cpp6012 if (!selectVectorAddr(Mgt, Mgt->getBasePtr(), IndexOp, Mgt->getScale(), in Select()
6085 if (!selectVectorAddr(Sc, Sc->getBasePtr(), IndexOp, Sc->getScale(), in Select()
H A DX86ISelLowering.cpp32831 SDValue Scale = N->getScale(); in LowerMSCATTER()
33035 N->getScale() }; in LowerMGATHER()
34336 Gather->getBasePtr(), Index, Gather->getScale() }; in ReplaceNodeResults()
53645 SDValue Scale = MemOp->getScale(); in combineX86GatherScatter()
53721 SDValue Scale = GorS->getScale(); in combineGatherScatter()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp461 unsigned getScale() const { return Scale; } in getScale() function in __anonbe06ec630111::X86AsmParser::IntelExprStateMachine
2209 IntelExpr Expr(BaseRegStr, IndexRegStr, SM.getScale(), OffsetNameStr, in RewriteIntelExpression()
2591 unsigned Scale = SM.getScale(); in parseIntelOperand()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp2508 unsigned getScale() const { in getScale() function
2643 int Scale = RPI.getScale(); in computeCalleeSaveRegisterPairs()
H A DAArch64ISelLowering.cpp5377 SDValue Scale = MGT->getScale(); in LowerMGATHER()
5476 SDValue Scale = MSC->getScale(); in LowerMSCATTER()
19461 while (foldIndexIntoBase(BasePtr, Index, N->getScale(), SDLoc(N), DAG)) in findMoreOptimalIndexType()
19535 SDValue Scale = MGS->getScale(); in performMaskedGatherScatterCombine()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterStmt.cpp657 Record.push_back(E->getScale()); in VisitFixedPointLiteral()
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp10386 ScaleOp = VPGSN->getScale(); in PerformDAGCombine()
10393 ScaleOp = MGSN->getScale(); in PerformDAGCombine()