• Home
  • Raw
  • Download

Lines Matching full:end

24 		assert(entry->start <= entry->end); /* single instruction block; jump to a jump */  in block_range__debug()
26 old = entry->end; in block_range__debug()
43 else if (addr > entry->end) in block_range__find()
75 * @end: branch ending this basic block
79 struct block_range_iter block_range__create(u64 start, u64 end) in block_range__create() argument
92 else if (start > entry->end) in block_range__create()
99 * Didn't find anything.. there's a hole at @start, however @end might in block_range__create()
110 if (entry->end < start) { in block_range__create()
117 if (next->start <= end) { /* add head: [start...][n->start...] */ in block_range__create()
124 .end = next->start - 1, in block_range__create()
139 * The whole [start..end] range is non-overlapping. in block_range__create()
147 .end = end, in block_range__create()
157 iter.end = entry; in block_range__create()
171 .end = start - 1, in block_range__create()
194 * At this point we've got: @iter.start = [@start...] but @end can still be in block_range__create()
200 * If @end is inside @entry, split. in block_range__create()
202 if (end < entry->end) { /* split: [...end][...e->end] */ in block_range__create()
208 .start = end + 1, in block_range__create()
209 .end = entry->end, in block_range__create()
218 entry->end = end; in block_range__create()
227 iter.end = entry; in block_range__create()
232 * If @end matches @entry, done in block_range__create()
234 if (end == entry->end) { in block_range__create()
236 iter.end = entry; in block_range__create()
245 * If @end is in beyond @entry but not inside @next, add tail. in block_range__create()
247 if (end < next->start) { /* add tail: [...e->end][...end] */ in block_range__create()
255 .start = entry->end + 1, in block_range__create()
256 .end = end, in block_range__create()
265 iter.end = tail; in block_range__create()
272 if (entry->end + 1 != next->start) { in block_range__create()
278 .start = entry->end + 1, in block_range__create()
279 .end = next->start - 1, in block_range__create()
294 assert(iter.end->end == end && iter.end->is_branch); in block_range__create()