Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for Reloc (0.1 sec)

  1. src/debug/pe/file_test.go

    				{0x0, 0x0},
    				{0x0, 0x0},
    				{0x0, 0x0},
    				{0x0, 0x0},
    				{0x0, 0x0},
    			}},
    		sections: []*SectionHeader{
    			{".setup", 0x41e0, 0x200, 0x41e0, 0x200, 0x0, 0x0, 0x0, 0x0, 0x60500020},
    			{".reloc", 0x20, 0x43e0, 0x20, 0x43e0, 0x0, 0x0, 0x0, 0x0, 0x42100040},
    			{".text", 0x7bc390, 0x4400, 0x7bc390, 0x4400, 0x0, 0x0, 0x0, 0x0, 0x60500020},
    			{".bss", 0x168f870, 0x7c0790, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc8000080},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadelf/ldelf.go

    					return errorf("malformed elf file: %v", err)
    				}
    				elfsym.sym = symbols[symIdx]
    				if elfsym.sym == 0 {
    					return errorf("malformed elf file: %s#%d: reloc of invalid sym #%d %s shndx=%d type=%d", l.SymName(sect.sym), j, int(symIdx), elfsym.name, elfsym.shndx, elfsym.type_)
    				}
    
    				rSym = elfsym.sym
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/cmd/link/link_test.go

    	scanner := bufio.NewScanner(bytes.NewReader(out))
    	for scanner.Scan() {
    		line := scanner.Text()
    		if strings.Contains(line, "R_TLS_LE") {
    			t.Errorf("objdump output contains unexpected R_TLS_LE reloc: %s", line)
    		}
    	}
    }
    
    const testStrictDupGoSrc = `
    package main
    func f()
    func main() { f() }
    `
    
    const testStrictDupAsmSrc1 = `
    #include "textflag.h"
    TEXT	·f(SB), NOSPLIT|DUPOK, $0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top