Lines Matching refs:styp_flags

507   long styp_flags = 0;
511 styp_flags = STYP_TEXT;
515 styp_flags = STYP_DATA;
519 styp_flags = STYP_BSS;
524 styp_flags = STYP_INFO;
530 styp_flags = STYP_LIB;
536 styp_flags = STYP_LIT;
544 styp_flags = STYP_XCOFF_DEBUG;
546 styp_flags = STYP_DEBUG_INFO;
550 styp_flags = STYP_DEBUG_INFO;
556 styp_flags = STYP_DEBUG_INFO;
562 styp_flags = STYP_PAD;
566 styp_flags = STYP_LOADER;
570 styp_flags = STYP_EXCEPT;
574 styp_flags = STYP_TYPCHK;
583 styp_flags = STYP_DWARF | xcoff_dwsect_names[i].flag;
591 styp_flags = STYP_TEXT;
595 styp_flags = STYP_DATA;
600 styp_flags = STYP_LIT;
602 styp_flags = STYP_TEXT;
607 styp_flags = STYP_TEXT;
611 styp_flags = STYP_BSS;
616 styp_flags |= STYP_CLINK;
621 styp_flags |= STYP_BLOCK;
626 styp_flags |= STYP_NOLOAD;
629 return styp_flags;
643 long styp_flags = 0;
676 styp_flags |= IMAGE_SCN_CNT_CODE;
678 styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
680 styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
685 styp_flags |= IMAGE_SCN_LNK_COMDAT;
687 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
689 styp_flags |= IMAGE_SCN_LNK_REMOVE;
691 styp_flags |= IMAGE_SCN_LNK_REMOVE;
695 styp_flags |= IMAGE_SCN_LNK_COMDAT;
699 styp_flags |= IMAGE_SCN_LNK_COMDAT;
704 styp_flags |= IMAGE_SCN_MEM_READ; /* Invert NOREAD for read. */
706 styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write. */
708 styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE. */
710 styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful. */
712 return styp_flags;
732 long styp_flags = internal_s->s_flags;
736 if (styp_flags & STYP_BLOCK)
741 if (styp_flags & STYP_CLINK)
746 if (styp_flags & STYP_NOLOAD)
752 if (styp_flags & STYP_TEXT)
759 else if (styp_flags & STYP_DATA)
766 else if (styp_flags & STYP_BSS)
775 else if (styp_flags & STYP_INFO)
787 else if (styp_flags & STYP_PAD)
790 else if (styp_flags & STYP_EXCEPT)
792 else if (styp_flags & STYP_LOADER)
794 else if (styp_flags & STYP_TYPCHK)
796 else if (styp_flags & STYP_DWARF)
849 if ((styp_flags & STYP_LIT) == STYP_LIT)
854 if (styp_flags & STYP_OTHER_LOAD)
1177 unsigned long styp_flags = internal_s->s_flags;
1199 if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1202 /* Process each flag bit in styp_flags in turn. */
1203 while (styp_flags)
1205 unsigned long flag = styp_flags & - styp_flags;
1208 styp_flags &= ~ flag;