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

  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 35 FRAMEIX = 2 // value is contents of a stack location
44 unsigned FrameIx; // valid for stack objects
80 kind = FRAMEIX;
81 u.FrameIx = FI;
102 // Returns the FrameIx for a stack object
103 unsigned getFrameIx() const { assert (kind==FRAMEIX); return u.FrameIx; }
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 35 FRAMEIX = 2 // value is contents of a stack location
45 unsigned FrameIx; // valid for stack objects
73 kind = FRAMEIX;
74 u.FrameIx = FI;
92 // Returns the FrameIx for a stack object
93 unsigned getFrameIx() { assert (kind==FRAMEIX); return u.FrameIx; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 35 FRAMEIX = 2, ///< Value is contents of a stack location.
45 unsigned FrameIx; ///< Valid for stack objects.
79 assert((Kind == VREG || Kind == FRAMEIX) &&
85 u.FrameIx = VRegOrFrameIdx;
106 /// Returns the FrameIx for a stack object
107 unsigned getFrameIx() const { assert (kind==FRAMEIX); return u.FrameIx; }

Completed in 54 milliseconds