Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp152 bool LegalOperations = false; member in __anon001c44270111::DAGCombiner
329 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); in SimplifyDemandedBits()
785 return TLI.isOperationLegalOrCustom(Opcode, VT, LegalOperations); in hasOperation()
1239 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); in SimplifyDemandedBits()
1258 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); in SimplifyDemandedVectorElts()
1358 if (!LegalOperations) in PromoteIntBinOp()
1426 if (!LegalOperations) in PromoteIntShiftOp()
1475 if (!LegalOperations) in PromoteExtend()
1503 if (!LegalOperations) in PromoteLoad()
1588 LegalOperations = Level >= AfterLegalizeVectorOps; in Run()
[all …]
H A DTargetLowering.cpp2058 if ((!TLO.LegalOperations() || isOperationLegal(ISD::SHL, VT)) && in SimplifyDemandedBits()
2063 if ((!TLO.LegalOperations() || isOperationLegal(ISD::SRL, VT)) && in SimplifyDemandedBits()
2133 if (!TLO.LegalOperations() || isOperationLegal(ShiftOpcode, VT)) { in SimplifyDemandedBits()
2254 if (!TLO.LegalOperations() || isOperationLegal(Opc, VT)) in SimplifyDemandedBits()
2294 if (!TLO.LegalOperations() || isOperationLegal(Opc, VT)) in SimplifyDemandedBits()
2318 if (!TLO.LegalOperations() || isOperationLegal(Opc, VT)) in SimplifyDemandedBits()
2483 if (!TLO.LegalOperations() && !VT.isVector() && !SrcVT.isVector() && in SimplifyDemandedBits()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.h58 bool LegalOperations) const override { in canCombineTruncStore() argument
H A DAMDGPUISelLowering.h171 bool LegalOperations, bool ForCodeSize,
H A DAMDGPUISelLowering.cpp792 SDValue Op, SelectionDAG &DAG, bool LegalOperations, bool ForCodeSize, in getNegatedExpression() argument
807 return TargetLowering::getNegatedExpression(Op, DAG, LegalOperations, in getNegatedExpression()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.h1065 bool LegalOperations, bool ForCodeSize,
H A DX86ISelLowering.cpp52097 bool LegalOperations = !DCI.isBeforeLegalizeOps(); in combineFneg() local
52099 TLI.getNegatedExpression(Arg, DAG, LegalOperations, CodeSize)) in combineFneg()
52106 bool LegalOperations, in getNegatedExpression() argument
52144 Op.getOperand(i), DAG, LegalOperations, ForCodeSize, Depth + 1); in getNegatedExpression()
52162 getNegatedExpression(Op.getOperand(0), DAG, LegalOperations, in getNegatedExpression()
52168 return TargetLowering::getNegatedExpression(Op, DAG, LegalOperations, in getNegatedExpression()
53088 bool LegalOperations = !DCI.isBeforeLegalizeOps(); in combineFMA() local
53089 if (SDValue NegV = TLI.getCheaperNegatedExpression(V, DAG, LegalOperations, in combineFMA()
53100 Vec, DAG, LegalOperations, CodeSize)) { in combineFMA()
53143 bool LegalOperations = !DCI.isBeforeLegalizeOps(); in combineFMADDSUB() local
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetLowering.h3661 bool LegalOperations() const { return LegalOps; } in LegalOperations() function