Lines Matching defs:end
118 clif_dump_cl(struct clif_dump *clif, uint32_t start, uint32_t end,
130 /* The end address is optional (for example, a BRANCH instruction
131 * won't set an end), but is used for BCL/RCL termination.
134 if (end && !clif_lookup_vaddr(clif, end, &end_vaddr)) {
136 end);
211 clif_dump_cl(clif, reloc->addr, reloc->cl.end, true);
219 reloc->generic_tile_list.end, true);
234 uint32_t start, uint32_t end)
236 for (int i = start; i < end; i++) {
242 out(clif, "@format blank %d /* [%s+0x%08x..0x%08x] */\n", end - start,
243 bo->name, start, end - 1);
247 /* Dumps the binary data in the BO from start to end (relative to the start of
252 uint32_t start, uint32_t end)
257 if (start == end)
260 if (clif_dump_if_blank(clif, bo, start, end))
268 while (offset < end) {
269 if (clif_dump_if_blank(clif, bo, offset, end))
272 if (end - offset >= 4) {
345 offset = clif_dump_cl(clif, reloc->addr, reloc->cl.end,
360 reloc->generic_tile_list.end,
383 clif_dump_add_cl(struct clif_dump *clif, uint32_t start, uint32_t end)
388 entry->cl.end = end;