Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for elf_ (0.12 sec)

  1. src/debug/elf/elf.go

     * $FreeBSD: src/sys/i386/include/elf.h,v 1.16 2004/08/02 19:12:17 dfr Exp $
     * $FreeBSD: src/sys/powerpc/include/elf.h,v 1.7 2004/11/02 09:47:01 ssouhlal Exp $
     * $FreeBSD: src/sys/sparc64/include/elf.h,v 1.12 2003/09/25 01:10:26 peter Exp $
     * "System V ABI" (http://www.sco.com/developers/gabi/latest/ch4.eheader.html)
     * "ELF for the ARMĀ® 64-bit Architecture (AArch64)" (ARM IHI 0056B)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_AARCH64_CALL26),
    		objabi.ElfRelocOffset + objabi.RelocType(elf.R_AARCH64_JUMP26),
    		objabi.MachoRelocOffset + MACHO_ARM64_RELOC_BRANCH26*2 + pcrel:
    		return true
    
    	// ARM
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_ARM_CALL),
    		objabi.ElfRelocOffset + objabi.RelocType(elf.R_ARM_PC24),
    		objabi.ElfRelocOffset + objabi.RelocType(elf.R_ARM_JUMP24):
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"electric_plug":                        "\U0001f50c",
    	"elephant":                             "\U0001f418",
    	"elevator":                             "\U0001f6d7",
    	"elf":                                  "\U0001f9dd",
    	"elf_man":                              "\U0001f9dd\u200d\u2642\ufe0f",
    	"elf_woman":                            "\U0001f9dd\u200d\u2640\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// Assemble .s files.
    	if len(sfiles) > 0 {
    		ofiles, err := BuildToolchain.asm(b, a, sfiles)
    		if err != nil {
    			return err
    		}
    		objects = append(objects, ofiles...)
    	}
    
    	// For gccgo on ELF systems, we write the build ID as an assembler file.
    	// This lets us set the SHF_EXCLUDE flag.
    	// This is read by readGccgoArchive in cmd/internal/buildid/buildid.go.
    	if a.buildID != "" && cfg.BuildToolchainName == "gccgo" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    // sequence. It also encompasses several transformations which do not involve relocations, those could be
    // separated and applied to AIX and other non-ELF targets. Likewise, the prefixed forms do not have encoding
    // restrictions on the offset, so they are also used for static binary to allow better code generation. e.x
    //
    //	MOVD something-byte-aligned(Rx), Ry
    //	MOVD 3(Rx), Ry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    								r = obj.Addrel(cursym)
    								r.Off = int32(p.Pc + int64(ab.Len()))
    								r.Type = objabi.R_TLS_IE
    								r.Siz = 4
    								r.Add = 2
    								ab.PutInt32(0)
    							} else {
    								// ELF TLS base is 0(GS).
    								pp.From = p.From
    
    								pp.From.Type = obj.TYPE_MEM
    								pp.From.Reg = REG_GS
    								pp.From.Offset = 0
    								pp.From.Index = REG_NONE
    								pp.From.Scale = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	if ctxt.Retpoline {
    		ctxt.Diag("-spectre=ret not supported on s390x")
    		ctxt.Retpoline = false // don't keep printing
    	}
    
    	p := cursym.Func().Text
    	if p == nil || p.Link == nil { // handle external functions and ELF section symbols
    		return
    	}
    
    	if oprange[AORW&obj.AMask] == nil {
    		ctxt.Diag("s390x ops not initialized, call s390x.buildop first")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		ctxt.Diag("-spectre=ret not supported on arm64")
    		ctxt.Retpoline = false // don't keep printing
    	}
    
    	p := cursym.Func().Text
    	if p == nil || p.Link == nil { // handle external functions and ELF section symbols
    		return
    	}
    
    	if oprange[AAND&obj.AMask] == nil {
    		ctxt.Diag("arm64 ops not initialized, call arm64.buildop first")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top