Home
last modified time | relevance | path

Searched refs:FirstOperand (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp408 SDValue FirstOperand = N->getOperand(0); in performANDCombine() local
410 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performANDCombine()
431 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
441 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
457 NewOperand = FirstOperand; in performANDCombine()
477 SDValue FirstOperand = N->getOperand(0); in performSRLCombine() local
487 if (FirstOperand.getOpcode() != ISD::AND || in performSRLCombine()
488 !(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1))) || in performSRLCombine()
499 FirstOperand->getOperand(0), in performSRLCombine()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp611 HexagonOperand &FirstOperand = static_cast<HexagonOperand &>(*Operands[0]); in MatchAndEmitInstruction() local
612 if (FirstOperand.isToken() && FirstOperand.getToken() == "{") { in MatchAndEmitInstruction()
622 if (FirstOperand.isToken() && FirstOperand.getToken() == "}") { in MatchAndEmitInstruction()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp595 void AMDGPUInstPrinter::printDefaultVccOperand(bool FirstOperand, in printDefaultVccOperand() argument
598 if (!FirstOperand) in printDefaultVccOperand()
604 if (FirstOperand) in printDefaultVccOperand()
H A DAMDGPUInstPrinter.h180 void printDefaultVccOperand(bool FirstOperand, const MCSubtargetInfo &STI,
/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp770 SDValue FirstOperand = N->getOperand(0); in performANDCombine() local
771 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performANDCombine()
793 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
804 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
813 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
822 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
840 NewOperand = FirstOperand; in performANDCombine()
1103 SDValue FirstOperand = N->getOperand(0); in performSHLCombine() local
1104 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performSHLCombine()
1127 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1))) || in performSHLCombine()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp14472 SDValue FirstOperand(Op.getOperand(0)); in combineFPToIntToFP() local
14473 bool SubWordLoad = FirstOperand.getOpcode() == ISD::LOAD && in combineFPToIntToFP()
14474 (FirstOperand.getValueType() == MVT::i8 || in combineFPToIntToFP()
14475 FirstOperand.getValueType() == MVT::i16); in combineFPToIntToFP()
14483 DAG.getIntPtrConstant(FirstOperand.getValueType() == MVT::i8 ? 1 : 2, in combineFPToIntToFP()
14485 LoadSDNode *LDN = cast<LoadSDNode>(FirstOperand.getNode()); in combineFPToIntToFP()