Lines Matching defs:styp_flags

503   long styp_flags = 0;
507 styp_flags = STYP_TEXT;
511 styp_flags = STYP_DATA;
515 styp_flags = STYP_BSS;
520 styp_flags = STYP_INFO;
526 styp_flags = STYP_LIB;
532 styp_flags = STYP_LIT;
540 styp_flags = STYP_XCOFF_DEBUG;
542 styp_flags = STYP_DEBUG_INFO;
546 styp_flags = STYP_DEBUG_INFO;
552 styp_flags = STYP_DEBUG_INFO;
558 styp_flags = STYP_TDATA;
562 styp_flags = STYP_TBSS;
566 styp_flags = STYP_PAD;
570 styp_flags = STYP_LOADER;
574 styp_flags = STYP_EXCEPT;
578 styp_flags = STYP_TYPCHK;
587 styp_flags = STYP_DWARF | xcoff_dwsect_names[i].flag;
595 styp_flags = STYP_TEXT;
599 styp_flags = STYP_DATA;
604 styp_flags = STYP_LIT;
606 styp_flags = STYP_TEXT;
611 styp_flags = STYP_TEXT;
615 styp_flags = STYP_BSS;
620 styp_flags |= STYP_CLINK;
625 styp_flags |= STYP_BLOCK;
630 styp_flags |= STYP_NOLOAD;
633 return styp_flags;
647 long styp_flags = 0;
680 styp_flags |= IMAGE_SCN_CNT_CODE;
682 styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
684 styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
693 styp_flags |= IMAGE_SCN_LNK_COMDAT;
696 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
699 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
701 styp_flags |= IMAGE_SCN_LNK_REMOVE;
707 styp_flags |= IMAGE_SCN_LNK_COMDAT;
711 styp_flags |= IMAGE_SCN_LNK_COMDAT;
717 styp_flags |= IMAGE_SCN_MEM_READ; /* Invert NOREAD for read. */
719 styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write. */
721 styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE. */
723 styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful. */
725 return styp_flags;
745 unsigned long styp_flags = internal_s->s_flags;
749 if (styp_flags & STYP_BLOCK)
754 if (styp_flags & STYP_CLINK)
759 if (styp_flags & STYP_NOLOAD)
765 if (styp_flags & STYP_TEXT)
772 else if (styp_flags & STYP_DATA)
779 else if (styp_flags & STYP_BSS)
788 else if (styp_flags & STYP_INFO)
800 else if (styp_flags & STYP_PAD)
803 else if (styp_flags & STYP_TDATA)
810 else if (styp_flags & STYP_TBSS)
819 else if (styp_flags & STYP_EXCEPT)
821 else if (styp_flags & STYP_LOADER)
823 else if (styp_flags & STYP_TYPCHK)
825 else if (styp_flags & STYP_DWARF)
878 if ((styp_flags & STYP_LIT) == STYP_LIT)
883 if (styp_flags & STYP_OTHER_LOAD)
1206 unsigned long styp_flags = internal_s->s_flags;
1228 if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1231 /* Process each flag bit in styp_flags in turn. */
1232 while (styp_flags)
1234 unsigned long flag = styp_flags & - styp_flags;
1237 styp_flags &= ~ flag;