HomeSort by: relevance | last modified time | path
    Searched defs:label_align (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
final.cc 316 static vec<align_flags> label_align;
458 #ifndef LABEL_ALIGN
459 #define LABEL_ALIGN(LABEL) align_labels
498 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno])
622 label_align.truncate (0);
626 label_align.safe_grow_cleared (max_labelno - min_labelno + 1, true);
665 max_alignment = LABEL_ALIGN (label);
736 /* Grow the LABEL_ALIGN array after new labels are created. */
750 label_align.safe_grow_cleared (n_labels, true);
842 /* Compute maximum UID and allocate label_align / uid_shuid. *
313 static vec<align_flags> label_align; variable
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
final.cc 331 static vec<align_flags> label_align;
473 #ifndef LABEL_ALIGN
474 #define LABEL_ALIGN(LABEL) align_labels
513 (label_align[CODE_LABEL_NUMBER (LABEL) - min_labelno])
637 label_align.truncate (0);
641 label_align.safe_grow_cleared (max_labelno - min_labelno + 1, true);
681 max_alignment = LABEL_ALIGN (label);
756 /* Grow the LABEL_ALIGN array after new labels are created. */
770 label_align.safe_grow_cleared (n_labels, true);
858 /* Compute maximum UID and allocate label_align / uid_shuid. *
328 static vec<align_flags> label_align; variable
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/nios2/
nios2.cc 5409 static unsigned char *label_align;
5422 if (label_align)
5423 free (label_align);
5426 label_align = XCNEWVEC (unsigned char, max_labelno - min_labelno + 1);
5447 if (label_align[index] != 2)
5449 label_align[index] = 2;
5457 /* Implement LABEL_ALIGN, using the information gathered in nios2_reorg. */
5463 if (label_align && n >= min_labelno && n <= max_labelno)
5464 return MAX (label_align[n - min_labelno], align_labels.levels[0].log);
5398 static unsigned char *label_align; variable
  /src/external/gpl3/gcc.old/dist/gcc/config/nios2/
nios2.cc 5403 static unsigned char *label_align;
5416 if (label_align)
5417 free (label_align);
5420 label_align = XCNEWVEC (unsigned char, max_labelno - min_labelno + 1);
5441 if (label_align[index] != 2)
5443 label_align[index] = 2;
5451 /* Implement LABEL_ALIGN, using the information gathered in nios2_reorg. */
5457 if (label_align && n >= min_labelno && n <= max_labelno)
5458 return MAX (label_align[n - min_labelno], align_labels.levels[0].log);
5392 static unsigned char *label_align; variable

Completed in 57 milliseconds