HomeSort by: relevance | last modified time | path
    Searched refs:CNode (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 3774 MachineSDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
3776 ReplaceUses(N1.getValue(1), SDValue(CNode, 2));
3778 CurDAG->setNodeMemRefs(CNode, {cast<LoadSDNode>(N1)->getMemOperand()});
3779 return CNode;
3784 MachineSDNode *CNode = CurDAG->getMachineNode(ROpc, dl, VTs, Ops);
3785 return CNode;
3807 MachineSDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
3808 InFlag = SDValue(CNode, 3);
3810 ReplaceUses(N2.getValue(1), SDValue(CNode, 2));
3812 CurDAG->setNodeMemRefs(CNode, {cast<LoadSDNode>(N2)->getMemOperand()})
    [all...]
X86ISelLowering.cpp 6491 auto *CNode = dyn_cast<ConstantPoolSDNode>(Ptr);
6492 if (!CNode || CNode->isMachineConstantPoolEntry() || CNode->getOffset() != 0)
6495 return CNode->getConstVal();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 3102 if (auto CNode = dyn_cast<ConstantSDNode>(N)) {
3103 const int64_t ImmVal = CNode->getSExtValue();
3148 if (auto CNode = dyn_cast<ConstantSDNode>(N)) {
3149 int64_t ImmVal = CNode->getSExtValue();
3160 if (auto CNode = dyn_cast<ConstantSDNode>(N)) {
3161 uint64_t ImmVal = CNode->getZExtValue();
3189 if (auto CNode = dyn_cast<ConstantSDNode>(N)) {
3190 uint64_t ImmVal = CNode->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 19511 if (auto CNode = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
19512 return CNode->getZExtValue();

Completed in 132 milliseconds