Home
last modified time | relevance | path

Searched refs:LegalTypes (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp952 auto It = LegalTypes.find(Idx); in computeType()
953 if (It != LegalTypes.end()) in computeType()
964 InsertResult = LegalTypes.insert({Idx, T}); in computeType()
/freebsd/contrib/llvm-project/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h357 std::unordered_map<uint64_t, RVVType> LegalTypes;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp163 bool LegalTypes = false; member in __anon666e37100111::DAGCombiner
859 if (!LegalTypes) return true; in isTypeLegal()
1381 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); in SimplifyDemandedBits()
1400 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); in SimplifyDemandedVectorElts()
1731 LegalTypes = Level >= AfterLegalizeTypes; in Run()
5799 LegalTypes && !TLI.isTypeDesirableForOp(LogicOpcode, XVT)) in hoistLogicOpWithSameOpcodeHands()
7234 if (LegalTypes) { in visitAND()
10653 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) { in visitSRL()
12602 if (CC == ISD::SETEQ && !LegalTypes && N0.getValueType() == MVT::i1 && in visitSELECT_CC()
12869 SelectionDAG &DAG, bool LegalTypes) { in tryToFoldExtendOfConstant() argument
[all …]
H A DSelectionDAG.cpp2995 SDValue SelectionDAG::getSplatValue(SDValue V, bool LegalTypes) { in getSplatValue() argument
3000 if (LegalTypes && !TLI->isTypeLegal(SVT)) { in getSplatValue()
H A DTargetLowering.cpp1067 if (TLO.LegalTypes() && !TLI.isOperationLegal(AVGOpc, NVT)) { in combineShiftToAVG()
2583 if (TLO.LegalTypes() && !isTypeDesirableForOp(ISD::SRL, VT)) in SimplifyDemandedBits()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp808 const TypeSetByHwMode::SetType &LegalTypes = Legal.getSimple(); in expandOverloads() local
811 expandOverloads(I.second, LegalTypes); in expandOverloads()
856 TypeSetByHwMode::SetType &LegalTypes = LegalCache.getOrCreate(DefaultMode); in getLegalTypes() local
860 LegalTypes.insert(I.second); in getLegalTypes()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h2178 SDValue getSplatValue(SDValue V, bool LegalTypes = false);
H A DTargetLowering.h3941 bool LegalTypes() const { return LegalTys; } in LegalTypes() function