Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp619 HexagonOperand &FirstOperand = static_cast<HexagonOperand &>(*Operands[0]); in MatchAndEmitInstruction() local
620 if (FirstOperand.isToken() && FirstOperand.getToken() == "{") { in MatchAndEmitInstruction()
630 if (FirstOperand.isToken() && FirstOperand.getToken() == "}") { in MatchAndEmitInstruction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.h164 void printDefaultVccOperand(bool FirstOperand, const MCSubtargetInfo &STI,
H A DAMDGPUInstPrinter.cpp667 void AMDGPUInstPrinter::printDefaultVccOperand(bool FirstOperand, in printDefaultVccOperand() argument
670 if (!FirstOperand) in printDefaultVccOperand()
676 if (FirstOperand) in printDefaultVccOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp783 SDValue FirstOperand = N->getOperand(0); in performANDCombine() local
784 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performANDCombine()
806 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
817 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
826 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
835 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
853 NewOperand = FirstOperand; in performANDCombine()
1111 SDValue FirstOperand = N->getOperand(0); in performSHLCombine() local
1112 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performSHLCombine()
1135 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1))) || in performSHLCombine()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp2104 SDValue FirstOperand = N->getOperand(0); in performANDCombine() local
2106 unsigned FirstOperandOpc = FirstOperand.getOpcode(); in performANDCombine()
2127 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1)))) in performANDCombine()
2137 NewOperand = FirstOperand.getOperand(0); in performANDCombine()
2168 NewOperand = FirstOperand; in performANDCombine()
2196 SDValue FirstOperand = N->getOperand(0); in performSRLCombine() local
2206 if (FirstOperand.getOpcode() != ISD::AND || in performSRLCombine()
2207 !(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1))) || in performSRLCombine()
2218 FirstOperand->getOperand(0), in performSRLCombine()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp14927 SDValue FirstOperand(Op.getOperand(0)); in combineFPToIntToFP() local
14928 bool SubWordLoad = FirstOperand.getOpcode() == ISD::LOAD && in combineFPToIntToFP()
14929 (FirstOperand.getValueType() == MVT::i8 || in combineFPToIntToFP()
14930 FirstOperand.getValueType() == MVT::i16); in combineFPToIntToFP()
14938 DAG.getIntPtrConstant(FirstOperand.getValueType() == MVT::i8 ? 1 : 2, in combineFPToIntToFP()
14940 LoadSDNode *LDN = cast<LoadSDNode>(FirstOperand.getNode()); in combineFPToIntToFP()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp936 Expr *FirstOperand, FunctionDecl *EqFD) { in shouldAddReversedEqEq() argument
953 QualType RHS = FirstOperand->getType(); in shouldAddReversedEqEq()