Lines Matching defs:after
332 /* Register allocation occurs after instruction scheduling, which is fine until
336 * the instruction into a new bundle before/after the bundle of the instruction
416 /* Find the bundle that we want to insert after */
417 unsigned after = mir_bundle_idx_for_ins(tag, block);
419 /* All the bundles after that one, we move ahead by one */
421 memmove(bundles + after + 2, bundles + after + 1, (count - after - 1) * sizeof(midgard_bundle));
422 midgard_bundle *after_bundle = bundles + after;
425 memcpy(bundles + after + 1, &new, sizeof(new));