Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fini_array (0.12 sec)

  1. src/cmd/link/internal/ld/elf.go

    	switch ctxt.BuildMode {
    	case BuildModeCArchive, BuildModeCShared, BuildModeShared, BuildModePlugin:
    		hasinitarr = true
    	}
    
    	if hasinitarr {
    		shstrtabAddstring(".init_array")
    		shstrtabAddstring(elfRelType + ".init_array")
    	}
    
    	if !*FlagS {
    		shstrtabAddstring(".symtab")
    		shstrtabAddstring(".strtab")
    	}
    	if !*FlagW {
    		dwarfaddshstrings(ctxt, shstrtabAddstring)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	BYTE	$0x90	// NOP
    	CALL	runtime·goexit1(SB)	// does not return
    	// traceback from goexit1 must hit code range of goexit
    	BYTE	$0x90	// NOP
    
    // This is called from .init_array and follows the platform, not Go, ABI.
    TEXT runtime·addmoduledata(SB),NOSPLIT,$0-0
    	PUSHQ	R15 // The access to global variables below implicitly uses R15, which is callee-save
    	MOVQ	runtime·lastmoduledatap(SB), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top