Lines Matching defs:styp_flags

517   long styp_flags = 0;
521 styp_flags = STYP_TEXT;
525 styp_flags = STYP_DATA;
529 styp_flags = STYP_BSS;
534 styp_flags = STYP_INFO;
540 styp_flags = STYP_LIB;
546 styp_flags = STYP_LIT;
553 styp_flags = STYP_XCOFF_DEBUG;
555 styp_flags = STYP_DEBUG_INFO;
559 styp_flags = STYP_DEBUG_INFO;
565 styp_flags = STYP_DEBUG_INFO;
571 styp_flags = STYP_PAD;
575 styp_flags = STYP_LOADER;
579 styp_flags = STYP_EXCEPT;
583 styp_flags = STYP_TYPCHK;
589 styp_flags = STYP_TEXT;
593 styp_flags = STYP_DATA;
598 styp_flags = STYP_LIT;
600 styp_flags = STYP_TEXT;
605 styp_flags = STYP_TEXT;
609 styp_flags = STYP_BSS;
614 styp_flags |= STYP_CLINK;
619 styp_flags |= STYP_BLOCK;
624 styp_flags |= STYP_NOLOAD;
627 return styp_flags;
641 long styp_flags = 0;
668 styp_flags |= IMAGE_SCN_CNT_CODE;
670 styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
672 styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
677 styp_flags |= IMAGE_SCN_LNK_COMDAT;
679 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
681 styp_flags |= IMAGE_SCN_LNK_REMOVE;
683 styp_flags |= IMAGE_SCN_LNK_REMOVE;
687 styp_flags |= IMAGE_SCN_LNK_COMDAT;
692 styp_flags |= IMAGE_SCN_MEM_READ; /* Invert NOREAD for read. */
694 styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write. */
696 styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE. */
698 styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful. */
700 return styp_flags;
720 long styp_flags = internal_s->s_flags;
724 if (styp_flags & STYP_BLOCK)
729 if (styp_flags & STYP_CLINK)
734 if (styp_flags & STYP_NOLOAD)
740 if (styp_flags & STYP_TEXT)
747 else if (styp_flags & STYP_DATA)
754 else if (styp_flags & STYP_BSS)
763 else if (styp_flags & STYP_INFO)
775 else if (styp_flags & STYP_PAD)
826 if ((styp_flags & STYP_LIT) == STYP_LIT)
831 if (styp_flags & STYP_OTHER_LOAD)
1132 long styp_flags = internal_s->s_flags;
1148 if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1151 /* Process each flag bit in styp_flags in turn. */
1152 while (styp_flags)
1154 long flag = styp_flags & - styp_flags;
1157 styp_flags &= ~ flag;