reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/CodeGen/SelectionDAG.h
  903   SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,

References

include/llvm/CodeGen/SelectionDAG.h
  761     return getNode(ISD::BUILD_VECTOR, DL, VT, Ops);
lib/CodeGen/SelectionDAG/DAGCombiner.cpp
 4062     SDValue Res = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0), N->ops());
 4070     SDValue Res = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1), N->ops());
 4080     SDValue Lo = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0), N->ops());
 4090     SDValue Hi = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1), N->ops());
lib/Target/AArch64/AArch64ISelLowering.cpp
10144                      DAG.getNode(N->getOpcode(), dl, NewVT, N->ops()),
lib/Target/X86/X86ISelLowering.cpp
 9980     SDValue Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT,
 9982     SDValue Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT,
10069     SDValue Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT,
10071     SDValue Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT,
41583       return DAG.getBitcast(OrigVT, DAG.getNode(NewOpcode, DL, VT, Arg->ops()));