Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Return

52       Return,  //< Instr is a return instruction.
54 PostCall //< Instr is the return address of a call.
109 /// getFunction - Return the function to which this metadata applies.
111 const Function &getFunction() const { return F; }
113 /// getStrategy - Return the GC strategy for the function.
115 GCStrategy &getStrategy() { return S; }
133 uint64_t getFrameSize() const { return FrameSize; }
138 iterator begin() { return SafePoints.begin(); }
139 iterator end() { return SafePoints.end(); }
140 size_t size() const { return SafePoints.size(); }
144 roots_iterator roots_begin() { return Roots.begin(); }
145 roots_iterator roots_end () { return Roots.end(); }
146 size_t roots_size() const { return Roots.size(); }
150 live_iterator live_begin(const iterator &p) { return roots_begin(); }
151 live_iterator live_end (const iterator &p) { return roots_end(); }
152 size_t live_size(const iterator &p) const { return roots_size(); }
183 iterator begin() const { return StrategyList.begin(); }
184 iterator end() const { return StrategyList.end(); }