Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SHF_COMPRESSED (0.22 sec)

  1. src/debug/elf/file_test.go

    			{".debug_info", SHT_PROGBITS, SHF_COMPRESSED, 0x0, 0x68, 0xba, 0x0, 0x0, 0x1, 0x0, 0x72},
    			{".rela.debug_info", SHT_RELA, SHF_INFO_LINK, 0x0, 0x4b8, 0x1c8, 0x13, 0x6, 0x8, 0x18, 0x1c8},
    			{".debug_abbrev", SHT_PROGBITS, 0x0, 0x0, 0xda, 0x5c, 0x0, 0x0, 0x1, 0x0, 0x5c},
    			{".debug_aranges", SHT_PROGBITS, SHF_COMPRESSED, 0x0, 0x136, 0x30, 0x0, 0x0, 0x1, 0x0, 0x2f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    		sh.Addr = sect.Vaddr
    	}
    
    	if strings.HasPrefix(sect.Name, ".debug") || strings.HasPrefix(sect.Name, ".zdebug") {
    		sh.Flags = 0
    		sh.Addr = 0
    		if sect.Compressed {
    			sh.Flags |= uint64(elf.SHF_COMPRESSED)
    		}
    	}
    
    	sh.Addralign = uint64(sect.Align)
    	sh.Size = sect.Length
    	if sect.Name != ".tbss" {
    		sh.Off = sect.Seg.Fileoff + sect.Vaddr - sect.Seg.Vaddr
    	}
    
    	return sh
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top