Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp4174 return CNode; in emitPCMPISTR()
4180 return CNode; in emitPCMPISTR()
4208 return CNode; in emitPCMPESTR()
4215 return CNode; in emitPCMPESTR()
4924 MachineSDNode *CNode; in tryVPTESTM() local
5068 MachineSDNode *CNode; in Select() local
5147 MachineSDNode *CNode; in Select() local
5182 MachineSDNode *CNode; in Select() local
5444 MachineSDNode *CNode; in Select() local
6065 MachineSDNode *CNode; in Select() local
[all …]
H A DX86ISelLowering.cpp4571 ConstantPoolSDNode *CNode = getTargetConstantPoolFromBasePtr(Ptr); in getTargetConstantFromBasePtr() local
4572 if (!CNode || CNode->isMachineConstantPoolEntry() || CNode->getOffset() != 0) in getTargetConstantFromBasePtr()
4574 return CNode->getConstVal(); in getTargetConstantFromBasePtr()
46778 ConstantSDNode *CNode = isConstOrConstSplat( in combineMul() local
46781 if (!CNode) { in combineMul()
46790 C = &(CNode->getAPIntValue()); in combineMul()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp741 NodePtr CNode = identifyNodeWithImplicitAdd(CRInst, CIInst, PartialMatch); in identifyPartialMul() local
742 if (!CNode) { in identifyPartialMul()
765 Node->addOperand(CNode); in identifyPartialMul()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp4053 if (auto CNode = dyn_cast<ConstantSDNode>(N)) { in SelectSVESignedArithImm() local
4054 int64_t ImmVal = CNode->getSExtValue(); in SelectSVESignedArithImm()
4065 if (auto CNode = dyn_cast<ConstantSDNode>(N)) { in SelectSVEArithImm() local
4066 uint64_t ImmVal = CNode->getZExtValue(); in SelectSVEArithImm()
4094 if (auto CNode = dyn_cast<ConstantSDNode>(N)) { in SelectSVELogicalImm() local
4095 uint64_t ImmVal = CNode->getZExtValue(); in SelectSVELogicalImm()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp16508 auto *CNode = dyn_cast<ConstantPoolSDNode>(Ptr); in getTargetConstantFromLoad() local
16509 if (!CNode || CNode->isMachineConstantPoolEntry() || in getTargetConstantFromLoad()
16510 CNode->getOffset() != 0) in getTargetConstantFromLoad()
16513 return CNode; in getTargetConstantFromLoad()
16518 auto *CNode = GetSupportedConstantPool(Ptr); in getTargetConstantFromLoad() local
16519 if (!CNode || CNode->getTargetFlags() != 0) in getTargetConstantFromLoad()
16522 return CNode->getConstVal(); in getTargetConstantFromLoad()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp12568 ConstantSDNode *CNode = isConstOrConstSplat(Op, /*AllowUndefs*/ false, in visitSETCC() local
12570 if (CNode == nullptr) in visitSETCC()
12572 return CNode->getAPIntValue(); in visitSETCC()
23422 if (auto CNode = dyn_cast<ConstantSDNode>(Op.getOperand(1))) in visitBUILD_VECTOR() local
23423 return CNode->getZExtValue(); in visitBUILD_VECTOR()