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.cpp949 auto It = LegalTypes.find(Idx); in computeType()
950 if (It != LegalTypes.end()) in computeType()
961 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.cpp166 bool LegalTypes = false; member in __anon666e37100111::DAGCombiner
879 if (!LegalTypes) return true; in isTypeLegal()
1438 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); in SimplifyDemandedBits()
1457 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); in SimplifyDemandedVectorElts()
1788 LegalTypes = Level >= AfterLegalizeTypes; in Run()
6174 LegalTypes && !TLI.isTypeDesirableForOp(LogicOpcode, XVT)) in hoistLogicOpWithSameOpcodeHands()
7657 if (LegalTypes) { in visitAND()
11102 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) { in visitSRL()
11443 (!LegalTypes || hasOperation(ABDOpcode, MaxVT))) { in foldABSToABD()
13467 if (CC == ISD::SETEQ && !LegalTypes && N0.getValueType() == MVT::i1 && in visitSELECT_CC()
[all …]
H A DSelectionDAG.cpp3243 SDValue SelectionDAG::getSplatValue(SDValue V, bool LegalTypes) { in getSplatValue() argument
3248 if (LegalTypes && !TLI->isTypeLegal(SVT)) { in getSplatValue()
H A DTargetLowering.cpp1122 if (TLO.LegalTypes() && !TLI.isOperationLegal(AVGOpc, NVT)) { in combineShiftToAVG()
2651 if (TLO.LegalTypes() && !isTypeDesirableForOp(ISD::SRL, VT)) in SimplifyDemandedBits()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp807 const TypeSetByHwMode::SetType &LegalTypes = Legal.getSimple(); in expandOverloads() local
810 expandOverloads(I.second, LegalTypes); in expandOverloads()
855 TypeSetByHwMode::SetType &LegalTypes = LegalCache.getOrCreate(DefaultMode); in getLegalTypes() local
859 LegalTypes.insert(I.second); in getLegalTypes()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h2339 LLVM_ABI SDValue getSplatValue(SDValue V, bool LegalTypes = false);
H A DTargetLowering.h4096 bool LegalTypes() const { return LegalTys; } in LegalTypes() function