Searched defs:SDValue (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp138 SDValue ExtraOper = SDValue()) {
139 SmallVector<SDValue, 4> Ops;
163 static bool AddGlue(SDNode *N, SDValue Glue, bool AddGlue, SelectionDAG *DAG) {
275 SDValue InGlue = SDValue(nullptr, 0);
277 InGlue = SDValue(Lead, Lead->getNumValues() - 1);
286 InGlue = SDValue(Load, Load->getNumValues() - 1);
371 SDValue GlueVal(N, N->getNumValues()-1);
703 DenseMap<SDValue, unsigne
136 CloneNodeWithValues(SDNode *N, SelectionDAG *DAG, SmallVectorImpl<EVT> &VTs, SDValue ExtraOper = SDValue()) argument
[all...]
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h109 /// SDValue - Unlike LLVM values, Selection DAG nodes may return multiple
117 /// of information is represented with the SDValue value type.
119 class SDValue { class in namespace:llvm
123 SDValue() : Node(nullptr), ResNo(0) {} function in class:llvm::SDValue
124 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {} function in class:llvm::SDValue
137 bool operator==(const SDValue &O) const {
140 bool operator!=(const SDValue &O) const {
143 bool operator<(const SDValue &O) const {
150 SDValue getValue(unsigned R) const {
151 return SDValue(Nod
[all...]

Completed in 136 milliseconds