Home | History | Annotate | Download | only in gas

Lines Matching refs:frag

224    bundle_lock_frag to frag_now and then starts a new frag with
621 /* Start a new instruction bundle. Returns the rs_align_code frag that
626 fragS *frag = frag_now;
630 while (frag->fr_type != rs_align_code)
631 frag = frag->fr_next;
633 gas_assert (frag != frag_now);
635 return frag;
639 at the given frag and extending through frag_now (which is unfinished). */
641 pending_bundle_size (fragS *frag)
643 unsigned int offset = frag->fr_fix;
646 gas_assert (frag != frag_now);
647 gas_assert (frag->fr_type == rs_align_code);
649 while (frag != frag_now)
652 if (frag == NULL)
655 size += frag->fr_fix;
656 if (frag->fr_type == rs_machine_dependent)
657 size += md_frag_max_var (frag);
659 frag = frag->fr_next;
662 gas_assert (frag == frag_now);
664 if (frag->fr_type == rs_machine_dependent)
665 size += md_frag_max_var (frag);
672 /* Finish off the frag created to ensure bundle alignment. */
674 finish_bundle (fragS *frag, unsigned int size)
677 gas_assert (frag->fr_type == rs_align_code);
682 alignment frag. Otherwise we leave it at its initial state from
684 frag->fr_offset = bundle_align_p2;
685 frag->fr_subtype = size - 1;
1421 /* Only make a frag if we HAVE to... */
2246 /* Note: .fill (),0 emits no frag (since we are asked to .fill 0 bytes)
2428 /* Detach from old frag. */
2816 Don't make frag if need_pass_2==1. */
3702 /* Sets frag for given symbol to zero_address_frag, except when the
3703 symbol frag is already set to a dummy listing frag. */
3717 Will change symbols type, value, and frag; */
3832 CONStruct more frag of .bytes, or .words etc.
3833 Should need_pass_2 be 1 then emit no frag(s).
4270 x->frag = frag_now;
4420 emit_expr_fix (expressionS *exp, unsigned int nbytes, fragS *frag, char *p,
4431 TC_CONS_FIX_NEW (frag, p - frag->fr_literal + offset, size, exp, r);
4471 fix_new_exp (frag, p - frag->fr_literal + offset, size,
4807 CONStruct some more frag chars of .floats .ffloats etc.
5771 /* Allocate frag space and store file contents in it. */