Home | History | Annotate | Download | only in Support

Lines Matching refs:Term

104   const Term_ Term;
110 return idx >= 0 && (unsigned) idx < Term->getNumSuccessors();
117 explicit inline SuccIterator(Term_ T) : Term(T), idx(0) {// begin iterator
120 : Term(T) {
121 if (Term)
122 idx = Term->getNumSuccessors();
124 // Term == NULL happens, if a basic block is not fully constructed and
133 assert(Term == I.Term &&"Cannot assign iterators to two different blocks!");
145 inline pointer operator*() const { return Term->getSuccessor(idx); }
160 assert(Term == x.Term && "Cannot compare iterators of different blocks!");
165 assert(Term == x.Term && "Cannot compare iterators of different blocks!");
169 assert(Term == x.Term && "Cannot compare iterators of different blocks!");
174 assert(Term == x.Term && "Cannot compare iterators of different blocks!");
200 assert(Term == x.Term && "Cannot work on iterators of different blocks!");
206 // to Term are only possible with Term->setSuccessor(idx). Pointers that can
217 assert(Term && "Source not available, if basic block was malformed");
218 return Term->getParent();