Lines Matching refs:styp_flags

399   long styp_flags = 0;
403 styp_flags = STYP_TEXT;
407 styp_flags = STYP_DATA;
411 styp_flags = STYP_BSS;
416 styp_flags = STYP_INFO;
422 styp_flags = STYP_LIB;
428 styp_flags = STYP_LIT;
435 styp_flags = STYP_XCOFF_DEBUG;
437 styp_flags = STYP_DEBUG_INFO;
441 styp_flags = STYP_DEBUG_INFO;
446 styp_flags = STYP_DEBUG_INFO;
452 styp_flags = STYP_PAD;
456 styp_flags = STYP_LOADER;
460 styp_flags = STYP_EXCEPT;
464 styp_flags = STYP_TYPCHK;
470 styp_flags = STYP_TEXT;
474 styp_flags = STYP_DATA;
479 styp_flags = STYP_LIT;
481 styp_flags = STYP_TEXT;
486 styp_flags = STYP_TEXT;
490 styp_flags = STYP_BSS;
495 styp_flags |= STYP_CLINK;
500 styp_flags |= STYP_BLOCK;
505 styp_flags |= STYP_NOLOAD;
508 return styp_flags;
522 long styp_flags = 0;
541 styp_flags |= IMAGE_SCN_CNT_CODE;
543 styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
545 styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
550 styp_flags |= IMAGE_SCN_LNK_COMDAT;
552 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
554 styp_flags |= IMAGE_SCN_LNK_REMOVE;
556 styp_flags |= IMAGE_SCN_LNK_REMOVE;
560 styp_flags |= IMAGE_SCN_LNK_COMDAT;
569 styp_flags |= IMAGE_SCN_MEM_READ; /* Always readable. */
571 styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write. */
573 styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE. */
575 styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful. */
578 return styp_flags;
598 long styp_flags = internal_s->s_flags;
602 if (styp_flags & STYP_BLOCK)
607 if (styp_flags & STYP_CLINK)
612 if (styp_flags & STYP_NOLOAD)
618 if (styp_flags & STYP_TEXT)
625 else if (styp_flags & STYP_DATA)
632 else if (styp_flags & STYP_BSS)
641 else if (styp_flags & STYP_INFO)
653 else if (styp_flags & STYP_PAD)
703 if ((styp_flags & STYP_LIT) == STYP_LIT)
708 if (styp_flags & STYP_OTHER_LOAD)
1008 long styp_flags = internal_s->s_flags;
1015 /* Process each flag bit in styp_flags in turn. */
1016 while (styp_flags)
1018 long flag = styp_flags & - styp_flags;
1021 styp_flags &= ~ flag;