Home
last modified time | relevance | path

Searched refs:LogicOp0 (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp12415 SDValue LogicOp0 = N0.getOperand(0); in foldBitcastedFPLogic() local
12418 LogicOp0.getOpcode() == ISD::BITCAST && in foldBitcastedFPLogic()
12419 LogicOp0.getOperand(0).getValueType() == VT) { in foldBitcastedFPLogic()
12420 SDValue FPOp = DAG.getNode(FPOpcode, SDLoc(N), VT, LogicOp0.getOperand(0)); in foldBitcastedFPLogic()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp40173 SDValue LogicOp0 = N0.getOperand(0); in combineBitcast() local
40178 if (N0.hasOneUse() && LogicOp0.getOpcode() == ISD::BITCAST && in combineBitcast()
40179 LogicOp0.hasOneUse() && LogicOp0.getOperand(0).hasOneUse() && in combineBitcast()
40180 LogicOp0.getOperand(0).getValueType() == VT && in combineBitcast()
40181 !isa<ConstantSDNode>(LogicOp0.getOperand(0))) { in combineBitcast()
40184 return DAG.getNode(Opcode, DL0, VT, LogicOp0.getOperand(0), CastedOp1); in combineBitcast()
40191 SDValue CastedOp0 = DAG.getBitcast(VT, LogicOp0); in combineBitcast()