Lines Matching defs:styp_flags

448   long styp_flags = 0;
452 styp_flags = STYP_TEXT;
456 styp_flags = STYP_DATA;
460 styp_flags = STYP_BSS;
465 styp_flags = STYP_INFO;
471 styp_flags = STYP_LIB;
477 styp_flags = STYP_LIT;
485 styp_flags = STYP_XCOFF_DEBUG;
487 styp_flags = STYP_DEBUG_INFO;
491 styp_flags = STYP_DEBUG_INFO;
497 styp_flags = STYP_DEBUG_INFO;
503 styp_flags = STYP_TDATA;
507 styp_flags = STYP_TBSS;
511 styp_flags = STYP_PAD;
515 styp_flags = STYP_LOADER;
519 styp_flags = STYP_EXCEPT;
523 styp_flags = STYP_TYPCHK;
532 styp_flags = STYP_DWARF | xcoff_dwsect_names[i].flag;
540 styp_flags = STYP_TEXT;
544 styp_flags = STYP_DATA;
549 styp_flags = STYP_LIT;
551 styp_flags = STYP_TEXT;
556 styp_flags = STYP_TEXT;
560 styp_flags = STYP_BSS;
565 styp_flags |= STYP_CLINK;
570 styp_flags |= STYP_BLOCK;
575 styp_flags |= STYP_NOLOAD;
578 return styp_flags;
592 long styp_flags = 0;
625 styp_flags |= IMAGE_SCN_CNT_CODE;
627 styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
629 styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
638 styp_flags |= IMAGE_SCN_LNK_COMDAT;
641 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
644 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
646 styp_flags |= IMAGE_SCN_LNK_REMOVE;
652 styp_flags |= IMAGE_SCN_LNK_COMDAT;
656 styp_flags |= IMAGE_SCN_LNK_COMDAT;
662 styp_flags |= IMAGE_SCN_MEM_READ; /* Invert NOREAD for read. */
664 styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write. */
666 styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE. */
668 styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful. */
670 return styp_flags;
690 unsigned long styp_flags = internal_s->s_flags;
694 if (styp_flags & STYP_BLOCK)
699 if (styp_flags & STYP_CLINK)
704 if (styp_flags & STYP_NOLOAD)
710 if (styp_flags & STYP_TEXT)
717 else if (styp_flags & STYP_DATA)
724 else if (styp_flags & STYP_BSS)
733 else if (styp_flags & STYP_INFO)
745 else if (styp_flags & STYP_PAD)
748 else if (styp_flags & STYP_TDATA)
755 else if (styp_flags & STYP_TBSS)
764 else if (styp_flags & STYP_EXCEPT)
766 else if (styp_flags & STYP_LOADER)
768 else if (styp_flags & STYP_TYPCHK)
770 else if (styp_flags & STYP_DWARF)
823 if ((styp_flags & STYP_LIT) == STYP_LIT)
828 if (styp_flags & STYP_OTHER_LOAD)
1195 unsigned long styp_flags = internal_s->s_flags;
1217 if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1220 /* Process each flag bit in styp_flags in turn. */
1221 while (styp_flags)
1223 unsigned long flag = styp_flags & - styp_flags;
1226 styp_flags &= ~ flag;