Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp626 HexagonOperand &FirstOperand = static_cast<HexagonOperand &>(*Operands[0]); in MatchAndEmitInstruction() local
627 if (FirstOperand.isToken() && FirstOperand.getToken() == "{") { in MatchAndEmitInstruction()
637 if (FirstOperand.isToken() && FirstOperand.getToken() == "}") { in MatchAndEmitInstruction()
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.h166 void printDefaultVccOperand(bool FirstOperand, const MCSubtargetInfo &STI,
H A DAMDGPUInstPrinter.cpp721 void AMDGPUInstPrinter::printDefaultVccOperand(bool FirstOperand, in printDefaultVccOperand() argument
724 if (!FirstOperand) in printDefaultVccOperand()
730 if (FirstOperand) in printDefaultVccOperand()
/src/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp799 SDValue FirstOperand = N->getOperand(0); in performANDCombine() local
800 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performANDCombine()
822 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
833 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
842 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
851 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
869 NewOperand = FirstOperand; in performANDCombine()
1127 SDValue FirstOperand = N->getOperand(0); in performSHLCombine() local
1128 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performSHLCombine()
1151 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1))) || in performSHLCombine()
[all …]
/src/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp3109 SDValue FirstOperand = N->getOperand(0); in performANDCombine() local
3111 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performANDCombine()
3132 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
3142 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
3173 NewOperand = FirstOperand; in performANDCombine()
3201 SDValue FirstOperand = N->getOperand(0); in performSRLCombine() local
3211 if (FirstOperand.getOpcode() != ISD::AND || in performSRLCombine()
3212 !(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1))) || in performSRLCombine()
3223 FirstOperand->getOperand(0), in performSRLCombine()
/src/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp15140 SDValue FirstOperand(Op.getOperand(0)); in combineFPToIntToFP() local
15141 bool SubWordLoad = FirstOperand.getOpcode() == ISD::LOAD && in combineFPToIntToFP()
15142 (FirstOperand.getValueType() == MVT::i8 || in combineFPToIntToFP()
15143 FirstOperand.getValueType() == MVT::i16); in combineFPToIntToFP()
15151 DAG.getIntPtrConstant(FirstOperand.getValueType() == MVT::i8 ? 1 : 2, in combineFPToIntToFP()
15153 LoadSDNode *LDN = cast<LoadSDNode>(FirstOperand.getNode()); in combineFPToIntToFP()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp1014 Expr *FirstOperand, FunctionDecl *EqFD) { in shouldAddReversedEqEq() argument
1031 QualType RHS = FirstOperand->getType(); in shouldAddReversedEqEq()