HomeSort by relevance Sort by last modified time
    Searched defs:SDUse (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
SelectionDAGNodes.h 200 /// SDUse - Represents a use of a SDNode. This class holds an SDValue,
205 class SDUse {
212 SDUse **Prev, *Next;
214 SDUse(const SDUse &U); // Do not implement
215 void operator=(const SDUse &U); // Do not implement
218 SDUse() : Val(), User(NULL), Prev(NULL), Next(NULL) {}
220 /// Normally SDUse will just implicitly convert to an SDValue that it holds.
230 /// getNext - Get the next SDUse in the use list.
231 SDUse *getNext() const { return Next;
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 234 class SDUse {
241 SDUse **Prev, *Next;
243 SDUse(const SDUse &U) = delete;
244 void operator=(const SDUse &U) = delete;
247 SDUse() : Val(), User(nullptr), Prev(nullptr), Next(nullptr) {}
249 /// Normally SDUse will just implicitly convert to an SDValue that it holds.
259 /// Get the next SDUse in the use list.
260 SDUse *getNext() const { return Next; }
296 /// SDUse with a non-null value
    [all...]

Completed in 349 milliseconds